Revision 39d31037
Von Jan Büren vor mehr als 1 Jahr hinzugefügt
SL/BackgroundJob/SelfTest/Transactions.pm | ||
---|---|---|
165 | 165 |
sub check_netamount_laut_invoice_ar { |
166 | 166 |
my ($self) = @_; |
167 | 167 |
my $query = qq| |
168 |
select sum(round(cast(i.qty*(i.fxsellprice * (1-i.discount)) as numeric), 2)) |
|
168 |
select sum(round(cast(i.qty*(i.fxsellprice * (1-i.discount)) / COALESCE(price_factor, 1) as numeric), 2))
|
|
169 | 169 |
from invoice i |
170 | 170 |
left join ar a on (a.id = i.trans_id) |
171 | 171 |
where a.transdate >= ? and a.transdate <= ?;|; |
Auch abrufbar als: Unified diff
SelfTest: Preisfaktor beim Abgleich VK-Bericht berücksichtigen