From 7465940d48aca718748c6a39a65533416d037b90 Mon Sep 17 00:00:00 2001 From: Bobbie Hodgetts Date: Tue, 4 Mar 2025 14:01:34 +0000 Subject: [PATCH] amazon settlement amounts now set to tax inclusive when exporting to invoice --- src/bnhtrade.Core/Model/Account/Invoice.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bnhtrade.Core/Model/Account/Invoice.cs b/src/bnhtrade.Core/Model/Account/Invoice.cs index c908775..aae6d67 100644 --- a/src/bnhtrade.Core/Model/Account/Invoice.cs +++ b/src/bnhtrade.Core/Model/Account/Invoice.cs @@ -42,7 +42,7 @@ namespace bnhtrade.Core.Model.Account public abstract class Invoice : InvoiceHeader, IInvoice { - private bool unitAmountIsTaxExclusive = true; + private bool unitAmountIsTaxExclusive = false; public decimal InvoiceNetAmount { get; }