Remove last references to "EUR"

Except the one in the EPC QR code, because the specification says
that EUR is mandatory.
This commit is contained in:
Juerd Waalboer 2019-11-05 01:33:31 +01:00
parent 63f81e3711
commit 89885a29c1
2 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@ sub amount :Tab(13.37,42) {
call_hooks("deposit_methods", \my $message, $self->{deposit_methods} = {});
return $message . "How are we receiving this EUR $amount?", \&how
return $message . "How are we receiving this $amount?", \&how
if keys %{ $self->{deposit_methods} };
$cart->add(+$self->{amount}, "Deposit", { is_deposit => 1 });

View file

@ -17,9 +17,9 @@ sub command :Tab(grandtotal) {
$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;
printf "Total positive: %8.2f\n", $pos;
printf "Total negative: \e[31;1m%8.2f\e[0m\n", $neg;
printf "GRAND TOTAL: \e[1m%8.2f\e[0m\n", $pos + $neg;
return ACCEPT;
}