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:
parent
63f81e3711
commit
89885a29c1
2 changed files with 4 additions and 4 deletions
|
@ -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 });
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue