Revision a2777d1a
Von Sven Schöling vor etwa 15 Jahren hinzugefügt
bin/mozilla/is.pl | ||
---|---|---|
455 | 455 |
|
456 | 456 |
my ($recursive_call) = shift; |
457 | 457 |
|
458 |
map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining) unless $recursive_call; |
|
458 |
# map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining) unless $recursive_call;
|
|
459 | 459 |
|
460 | 460 |
$form->{print_and_post} = 0 if $form->{second_run}; |
461 | 461 |
my $taxincluded = "checked" if $form->{taxincluded}; |
... | ... | |
876 | 876 |
|
877 | 877 |
map { $form->{"select$_"} = "" } ($form->{vc}, 'currency'); |
878 | 878 |
|
879 |
map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } |
|
880 |
qw(creditlimit creditremaining); |
|
879 |
# map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
|
|
880 |
# qw(creditlimit creditremaining);
|
|
881 | 881 |
|
882 | 882 |
my $currency = $form->{currency}; |
883 | 883 |
&invoice_links; |
Auch abrufbar als: Unified diff
is.pl: unnötige parse_amounts
Sorgen dafür dass sich creditlimit etc. beim update multipliziert.