Hi,
According the the ERP documentation: Manual Price:
"A check box that indicates (if selected) that the unit price in this line has been corrected or specified manually.
The system automatically selects this check box for the line when you change the price in the Unit price column. If the check box is selected, when you change the unit of measure or quantity in the line, the unit price is not automatically refreshed with the price from the price list.
If you clear this check box, the system updates the unit price in the document line with the current price (if one is specified)."
In our local test we are not able to reproduce this:
{ "customerNumber": { "value": 10000 }, "invoiceLines": [{ "operation": "Insert", "lineNumber": { "value": 1 }, "inventoryNumber": { "value": "nonstocktest" }, "quantity": { "value": 1.00 }, "unitPriceInCurrency": { "value": 2.00 } } ] }
Results in the "Manual Price" being ticked:
Whereas sending the same JSON without the price on the item results in it not being ticked:
Does the price on the created invoice differ from your JSON from the start? Or only if you change the date?
When the date is updated, what are the prices set to? 0, since you don't have any data?
... View more