Introduce 'withdraw', remove "withdrawal or unlisted" feature.

This should have been done much earlier, but wasn't done for nostalgic reasons.
To new users, it didn't make sense that you could just enter an amount, and
revbank would just accept that as "withdrawal or unlisted product". It existed
for backwards compatibility with the very first revbank version, which didn't
have a product list, and which was not yet used with a barcode scanner. You
would simply enter the amount and your name, and there were no further
statistics.

Nowadays, there are statistics that are messed up if you don't use the product
codes. And some people were looking for a withdrawal command, and try 'take' as
that seems closest to it, but which instead transfers money to another account.

Additionally, some texts were changed for improved clarity. ("Enter username to
pay", when withdrawing, was confusing: one expects money back, not to pay more.)
This commit is contained in:
Juerd Waalboer 2022-06-04 02:30:16 +02:00
parent e71df9b092
commit a7a5f14e0c
5 changed files with 38 additions and 10 deletions

View file

@ -1,3 +1,18 @@
# (2022-06-04) RevBank 3.3
Raw amounts without a command are no longer supported. There was already an
explicit command for unlisted products, `unlisted`, and for withdrawals there
is now the new command `withdraw`. An explanatory message guides users who
use the old style towards the new commands.
This change makes it possible for treasurers to more accurately deduce the
intention of a revbank transaction.
When upgrading, make sure the `unlisted` plugin is installed in
`revbank.plugins`. Without it, the instruction text presented when someone
enters an amount is wrong and the functionality for paying for unlisted
products is lost.
# (2021-12-02) RevBank 3.2
## Update your custom plugins!

View file

@ -33,9 +33,10 @@ sub hook_cart_changed($class, $cart, @) {
if (not $cart->entries('refuse_checkout')) {
my $sum = $cart->sum;
my $what = $sum->cents > 0 ? "add" : "pay";
my $what = $sum->cents > 0 ? "add" : $cart->entries('is_withdrawal') ? "deduct" : "pay";
my $dir = $sum->cents > 0 ? "to" : "from";
my $abs = $sum->abs;
say "Enter username to $what $abs; type 'abort' to abort.";
say "Enter username to $what $abs $dir your account; type 'abort' to abort.";
}
}

View file

@ -6,7 +6,7 @@ sub command :Tab(unlisted,donate) ($self, $cart, $command, @) {
$command eq 'unlisted' or $command eq 'donate' or return NEXT;
$self->{command} = $command;
return "Amount to deduct from your account", \&amount;
return "Price", \&amount;
}
sub amount($self, $cart, $arg, @) {
@ -21,7 +21,7 @@ sub amount($self, $cart, $arg, @) {
}
sub description($self, $cart, $desc, @) {
$cart->add(-$self->{amount}, $desc);
$cart->add(-$self->{amount}, "Unlisted: $desc");
return ACCEPT;
}

View file

@ -1,12 +1,24 @@
#!perl
HELP "<amount>" => "Withdraw or enter price manually";
HELP "withdraw <amount>" => "Withdraw from your account";
sub command($self, $cart, $command, @) {
my $amount = parse_amount($command);
defined $amount or return NEXT;
sub command :Tab(withdraw) ($self, $cart, $command, @) {
if (defined parse_amount($command)) {
warn "Note: raw amounts for withdrawal or unlisted products are no longer supported.\n\n";
warn "Please use the 'withdraw' command to take money out of your revbank account, or\n";
warn "the 'unlisted' command to pay for an unlisted product.\n\n";
}
$cart->add(-$amount, "Withdrawal or unlisted product",
$command eq 'withdraw' or return NEXT;
return "Amount to withdraw from your account", \&amount;
}
sub amount($self, $cart, $arg, @) {
my $amount = parse_amount($arg);
defined $amount or return REJECT, "Invalid amount";
$cart->add(-$amount, "Withdrawal",
{ is_withdrawal => 1 });
return ACCEPT;

View file

@ -18,7 +18,7 @@ use RevBank::Global;
use RevBank::Messages;
use RevBank::Cart;
our $VERSION = "3.2";
our $VERSION = "3.3";
our %HELP = (
"abort" => "Abort the current transaction",
);