Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 39d31037

Von Jan Büren vor mehr als 1 Jahr hinzugefügt

  • ID 39d310373d8afb8378ca2f9ccf67a2250fcd08e1
  • Vorgänger 418de3d2
  • Nachfolger 83dcaf92

SelfTest: Preisfaktor beim Abgleich VK-Bericht berücksichtigen

Unterschiede anzeigen:

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