New command: skim, for adjusting the amount in the cashbox

Generally intended for board members only, so not listed in "help".
This commit is contained in:
Juerd Waalboer 2022-06-11 20:02:42 +02:00
parent 9b302372f3
commit 681db369e7
4 changed files with 39 additions and 1 deletions

View file

@ -38,6 +38,8 @@ sub add_contra($self, $user, $amount, $description) {
};
$self->attribute('changed', 1);
return $self; # for method chaining
}
sub has_attribute($self, $key) {

View file

@ -24,7 +24,7 @@ sub names() {
}
sub balance($username) {
return _read()->{ lc $username }->[1];
return RevBank::Amount->new_from_float( _read()->{ lc $username }->[1] );
}
sub since($username) {

35
plugins/skim Normal file
View file

@ -0,0 +1,35 @@
#!perl
# Note: this plugin only makes sense if you have proper cashbox tracking,
# which requires the "deposit_methods" plugin for differentiating between
# bank transfers and cash deposits.
#
# If you ONLY allow cash deposits, and are not using the "deposit_methods"
# plugin, you could alternatively hack the "deposit" plugin to use the "-cash"
# contra instead of the "-deposits/other" contra.
sub command :Tab(skim,unskim) ($self, $cart, $command, @) {
$command eq 'skim' or $command eq 'unskim' or return NEXT;
$self->{command} = $command;
printf "There should be (at least) %s in the cashbox.\n",
-RevBank::Users::balance("-cash");
return "Amount to $command", \&amount;
}
sub amount($self, $cart, $arg, @) {
warn "Use 'unskim' to return (part of) a previously skimmed amount.\n"
if $arg =~ /^-/;
my $amount = parse_amount($arg) or return REJECT, "Invalid amount";
$amount = -$amount if $self->{command} eq 'unskim';
my $entry = $cart
->add(0, "Skimmed $amount", { is_withdrawal => 1 })
->add_contra("-cash", +$amount, "Skimmed by \$you")
->add_contra("-cash/skimmed", -$amount, "Skimmed by \$you");
return ACCEPT;
}

View file

@ -30,4 +30,5 @@ withdraw # matches amounts
users # matches usernames
deposit # wants to be after 'users'
#deposit_methods # Extra options for 'deposit'. Edit/configure first!
#skim # only makes sense if you also use deposit_methods
#deposit_iban_qr # QR code display, edit/configure first! (needs qrencode(1))