Skip to content

Commit

Permalink
Vergessene department_id in ar_transaction wieder hinzugefügt
Browse files Browse the repository at this point in the history
Kam mit 2391833 aus Versehen rein
  • Loading branch information
kivijan committed Jan 17, 2025
1 parent 1c9861f commit 7c01022
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions SL/AR.pm
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,10 @@ sub ar_transactions {
$where .= " AND a.taxzone_id = ?";
push(@values, $form->{taxzone_id});
}
if ($form->{department_id}) {
$where .= " AND a.department_id = ?";
push(@values, $form->{department_id});
}
if ($form->{payment_id}) {
$where .= " AND a.payment_id = ?";
push(@values, $form->{payment_id});
Expand Down

0 comments on commit 7c01022

Please sign in to comment.