Hello,
I’ve noticed an issue with negative line items when the VAT amounts are slightly dodgy (e.g. £2.25 can’t easily by split because £1.87+20%VAT = £2.24 and £1.88+20%VAT = £2.26):
{
"ItemID": 0,
"ItemName": "",
"ItemDescription": "Shipping Promotion",
"Tax1": {
"TaxName": "VAT",
"TaxPercentage": 20.0,
"TaxAmount": -0.38
},
"UnitCost": -1.87,
"Qty": 1
}
After upload this became -£1.87 with VAT of -£0.37. The positive version of this worked as expected (£1.87 with £0.38 VAT).
Any suggestions?