Revision ac517355
Von Philip Reetz vor mehr als 17 Jahren hinzugefügt
bin/mozilla/is.pl | ||
---|---|---|
sub update {
|
||
$lxdebug->enter_sub();
|
||
|
||
map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining);
|
||
my ($recursive_call) = shift;
|
||
|
||
map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining) unless $recursive_call;
|
||
|
||
$form->{print_and_post} = 0 if $form->{second_run};
|
||
$taxincluded = "checked" if $form->{taxincluded};
|
bin/mozilla/oe.pl | ||
---|---|---|
|
||
sub update {
|
||
$lxdebug->enter_sub();
|
||
|
||
my ($recursive_call) = shift;
|
||
|
||
set_headings($form->{"id"} ? "edit" : "add");
|
||
|
||
map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining);
|
||
map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining) unless $recursive_call;
|
||
$form->{update} = 1;
|
||
|
||
$payment_id = $form->{payment_id} if $form->{payment_id};
|
Auch abrufbar als: Unified diff
Kreditlimit wurde doppelt geparsed, wenn Kundenauswahl nicht eindeutig