Nieuwe plugin: grandtotal

Idee van hobbybob @ bitlair
This commit is contained in:
Juerd Waalboer 2015-07-05 21:15:24 +02:00
parent 607b14f8dc
commit 340bebf0d8
2 changed files with 27 additions and 0 deletions

26
plugins/grandtotal Normal file
View file

@ -0,0 +1,26 @@
#!perl
HELP "grandtotal" => "Summary of all accounts";
sub command :Tab(grandtotal) {
my ($self, $cart, $command) = @_;
return NEXT if $command ne 'grandtotal';
my $pos;
my $neg;
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: EUR %8.2f\n", $pos;
printf "Total negative: EUR \e[31;1m%8.2f\e[0m\n", $neg;
printf "GRAND TOTAL: EUR \e[1m%8.2f\e[0m\n", $pos + $neg;
return ACCEPT;
}

View file

@ -9,6 +9,7 @@ help
idle
undo
give
grandtotal
take
nyan # fun, but not compatible with dumb terminals
pfand # makes little sense in a self service environment