Skip to content

Commit

Permalink
fix(visma-invoice): use PLH VAT type with VAT is present
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianAndersen committed Oct 15, 2024
1 parent 5c1df4a commit 566cc44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/invoice/invoice-visma/invoice-visma.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ export class InvoiceVismaService {
lineNumber, // 2 'Line number':
invoiceNumber, // 3 'Invoice number':
"V", // 4 'Line type': (M)
customerItemPayment["payment"]["vat"] <= 0 ? "FRI" : "", // 5 'VAT type': (M)
customerItemPayment["payment"]["vat"] <= 0 ? "FRI" : "PLH", // 5 'VAT type': (M)
customerItemPayment["item"]
? this.getMongoIdCounter(customerItemPayment["item"]).toString()
: customerItemPayment["productNumber"], // 6 'Article number':
Expand Down

0 comments on commit 566cc44

Please sign in to comment.