BLST#72178 -- totaalbedrag word nu goed berekent.

svn path=/Customer/trunk/; revision=55615
This commit is contained in:
Norbert Wassink
2022-04-19 11:14:39 +00:00
parent 09348da947
commit 56986be959

View File

@@ -2793,7 +2793,7 @@ BEGIN
blst.add_xml_element (v_bestand, 'Groep', rec_art.cpv_code); -- CPV code per artikel, komt per artikel
blst.add_xml_element (v_bestand, 'StartDatum', rec.leverdatum); -- alternatieve startdatum
blst.add_xml_element (v_bestand, 'EindDatum', rec.leverdatum); -- alternatieve einddatum
v_totalPrice := v_totalPrice + v_prijs*rec_art.aantal;
v_totalPrice := v_totalPrice + rec_art.prijs*rec_art.aantal;
blst.add_xml_row (v_bestand, '</Item>');
v_artCounter := v_artCounter + 1;
END LOOP;