
The signatures feature has been "experimental" since Perl 5.20 (May 2014), but expected to stay. After 8 years I'm ready to take the risk :) Have added Perl v5.28 (June 2018) as the minimum requirement, even though the current revbank should work with 5.20, to see if this bothers any users. Perl v5.28 is in Debian "buster", which is now oldstable.
24 lines
602 B
Perl
24 lines
602 B
Perl
#!perl
|
|
|
|
HELP "grandtotal" => "Summary of all accounts";
|
|
|
|
sub command :Tab(grandtotal) ($self, $cart, $command, @) {
|
|
return NEXT if $command ne 'grandtotal';
|
|
|
|
my $pos = 0;
|
|
my $neg = 0;
|
|
|
|
open my $fh, "<", "revbank.accounts";
|
|
while (defined(my $line = readline $fh)) {
|
|
my $credit = (split " ", $line)[1];
|
|
$neg += $credit if $credit < 0;
|
|
$pos += $credit if $credit > 0;
|
|
}
|
|
|
|
printf "Total positive: %8.2f\n", $pos;
|
|
printf "Total negative: \e[31;1m%8.2f\e[0m\n", $neg;
|
|
printf "GRAND TOTAL: \e[1m%8.2f\e[0m\n", $pos + $neg;
|
|
|
|
return ACCEPT;
|
|
}
|
|
|