Keep track of cash

First attempt at keeping track of where cash goes using the new hidden
'-cash' account.
This commit is contained in:
Juerd Waalboer 2022-06-11 17:18:31 +02:00
parent f84a69372a
commit e3a04a0e36

View file

@ -18,8 +18,9 @@ sub amount($self, $cart, $arg, @) {
my $amount = parse_amount($arg);
defined $amount or return REJECT, "Invalid amount";
$cart->add(-$amount, "Withdrawal",
{ is_withdrawal => 1 });
$cart
->add(-$amount, "Withdrawal", { is_withdrawal => 1 })
->add_contra("-cash", +$amount, "Withdrawn by \$you");
return ACCEPT;
}