Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision f27cac24

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

  • ID f27cac241c24c34d1265ef324195630b27af55a6
  • Vorgänger fa96560d
  • Nachfolger bce0c798

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