revbank/plugins/withdraw
Juerd Waalboer eed0db7897 Cleanup: use subroutine signatures, remove deprecated methods.
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.
2021-12-03 18:00:34 +01:00

13 lines
297 B
Perl

#!perl
HELP "<amount>" => "Withdraw or enter price manually";
sub command($self, $cart, $command, @) {
my $amount = parse_amount($command);
defined $amount or return NEXT;
$cart->add(-$amount, "Withdrawal or unlisted product",
{ is_withdrawal => 1 });
return ACCEPT;
}