X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FSEPA.pm;h=d2eb13fffe6806508fb989b5cbf9b3b2ca56f276;hb=ee932f3f74983a16977a6d89314a3ab09df20faa;hp=32e763cdba0edfc64fb226aebb674447e5862bc7;hpb=dd0ba7b9a6f931ce13ced906d9cc6cb3e7c3ea3a;p=kivitendo-erp.git diff --git a/SL/SEPA.pm b/SL/SEPA.pm index 32e763cdb..d2eb13fff 100644 --- a/SL/SEPA.pm +++ b/SL/SEPA.pm @@ -305,7 +305,7 @@ sub list_exports { push @where, 'se.vc = ?'; push @values, $vc; - my $where = ' WHERE ' . join(' AND ', map { "(${_})" } @where) if (@where); + my $where = @where ? ' WHERE ' . join(' AND ', map { "(${_})" } @where) : ''; my $query = qq|SELECT se.id, se.employee_id, se.executed, se.closed, itime::date AS export_date, @@ -403,6 +403,12 @@ sub post_payment { # Update the invoice to reflect the new paid amount. do_statement($form, @{ $handles{update_arap} }, $orig_item->{amount}, $orig_item->{"${arap}_id"}); + # Update datepaid of invoice. set_datepaid (which has some extra logic) + # finds the date from acc_trans, where the payment has already been + # recorded above, so we don't need to explicitly pass + # $item->{execution_date} + IO->set_datepaid(table => "$arap", id => $orig_item->{"${arap}_id"}, dbh => $dbh); + # Update the item to reflect that it has been posted. do_statement($form, @{ $handles{finish_item} }, $item->{execution_date}, $item_id);