From 68be8670b4157e16be369c89377dc4cac9583d1b Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Fri, 17 Oct 2025 15:06:58 -0700 Subject: [PATCH] IO-3407 Remove tax code ref for adjustment as well. --- server/accounting/qb-receivables-lines.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/server/accounting/qb-receivables-lines.js b/server/accounting/qb-receivables-lines.js index a4b5d607e..ff14936cd 100644 --- a/server/accounting/qb-receivables-lines.js +++ b/server/accounting/qb-receivables-lines.js @@ -921,14 +921,14 @@ exports.default = function ({ bodyshop, jobs_by_pk, qbo = false, items, taxCodes Desc: "Tax Adjustment", //Quantity: 1, Amount: Dinero(jobs_by_pk.job_totals.totals?.ttl_tax_adjustment).toFormat(DineroQbFormat), - SalesTaxCodeRef: InstanceManager({ - imex: { - FullName: "E" - }, - rome: { - FullName: bodyshop.md_responsibility_centers.taxes.itemexemptcode || "NON" - } - }) + // SalesTaxCodeRef: InstanceManager({ + // imex: { + // FullName: "E" + // }, + // rome: { + // FullName: bodyshop.md_responsibility_centers.taxes.itemexemptcode || "NON" + // } + // }) }); } }