ksef update
This commit is contained in:
parent
a3df1a0a77
commit
1086466822
1 changed files with 6 additions and 1 deletions
|
|
@ -156,7 +156,12 @@ public class KSeFInvoiceLineBuilder {
|
||||||
BigDecimal grossAmount = netAmount.add(vatAmount);
|
BigDecimal grossAmount = netAmount.add(vatAmount);
|
||||||
|
|
||||||
// Write the FaWiersz block
|
// Write the FaWiersz block
|
||||||
writeFaWiersz(model, elementFa, invoiceItem, pos, taxCode, netAmount, vatAmount, grossAmount);
|
// writeFaWiersz(model, elementFa, invoiceItem, pos, taxCode, netAmount,
|
||||||
|
// vatAmount, grossAmount);
|
||||||
|
// Changes 06.Juli 2026
|
||||||
|
// As agreed with Justyna and Maciej we send only absolute values here!!!!!!
|
||||||
|
writeFaWiersz(model, elementFa, invoiceItem, pos, taxCode, netAmount.abs(), vatAmount.abs(),
|
||||||
|
grossAmount.abs());
|
||||||
|
|
||||||
// Aggregate per TaxCode
|
// Aggregate per TaxCode
|
||||||
aggregates.merge(taxCode,
|
aggregates.merge(taxCode,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue