From eadecf3fcf9d45d0e10df34b3ea22c444e54017c Mon Sep 17 00:00:00 2001 From: Hagernesh Date: Fri, 7 Aug 2026 13:30:24 +0000 Subject: [PATCH] chore(eims): default the EIMS tax treatment to 0 Set EIMS_TAX_CODE=0 and EIMS_TAX_RATE_PERCENT=0 in .env.example as instructed. Every line is emitted with TaxAmount 0 and TotalLineAmount equal to PreTaxValue. The collection's only observed TaxCode is "VAT15", so "0" is unverified against the gateway and may draw a 406 rule-validation error. Both values are env-only, so correcting them needs no code change. Co-Authored-By: Claude Opus 5 --- apps/edr-freight-api/.env.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/edr-freight-api/.env.example b/apps/edr-freight-api/.env.example index a11b98520..0df076f57 100644 --- a/apps/edr-freight-api/.env.example +++ b/apps/edr-freight-api/.env.example @@ -164,8 +164,8 @@ EIMS_SELLER_LOCALITY= # Tax treatment — REQUIRES FINANCE SIGN-OFF. The application models no tax at all # (invoice.taxAmount is always 0), so nothing here is defaulted: registration fails # locally, naming the missing variables, until these are set. -EIMS_TAX_CODE= -EIMS_TAX_RATE_PERCENT= +EIMS_TAX_CODE=0 +EIMS_TAX_RATE_PERCENT=0 EIMS_EXCISE_TAX_VALUE=0 EIMS_INCOME_WITHHOLD_VALUE=0 EIMS_TRANSACTION_WITHHOLD_VALUE=0