X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FAP.pm;h=3c29ca85d89731f7f5dfcaeb9b0c6dee2df58ebf;hb=72be9c763f3b7f7df1fae4fe10011e45f9e2ad1d;hp=08ec7a3532a498a9fe41ccdf906907a9709ca02f;hpb=1f42dfbeed9326866f67a63e52ac1eabec20bbcc;p=kivitendo-erp.git diff --git a/SL/AP.pm b/SL/AP.pm index 08ec7a353..3c29ca85d 100644 --- a/SL/AP.pm +++ b/SL/AP.pm @@ -591,7 +591,7 @@ sub post_payment { # Set up the content of $form in the way that AR::post_transaction() expects. - $self->setup_form($form); + $self->setup_form($form, 1); $form->{exchangerate} = $form->format_amount($myconfig, $form->{exchangerate}); $form->{defaultcurrency} = $form->get_default_currency($myconfig); @@ -625,7 +625,7 @@ sub post_payment { sub setup_form { $main::lxdebug->enter_sub(); - my ($self, $form) = @_; + my ($self, $form, $for_post_payments) = @_; my ($exchangerate, $i, $j, $k, $key, $akey, $ref, $index, $taxamount, $totalamount, $totaltax, $totalwithholding, $withholdingrate, $taxincluded, $tax, $diff); @@ -645,11 +645,16 @@ sub setup_form { $form->{$key} = $form->{"select$key"}; - # if there is a value we have an old entry $j = 0; $k = 0; + # if there is a value we have an old entry next unless $form->{acc_trans}{$key}; + + # do not use old entries for payments. They come from the form + # even if they are not changeable (then they are in hiddens) + next if $for_post_payments && $key eq "AP_paid"; + for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) { if ($key eq "AP_paid") {