Update SalesOrderInfo component to change syncAmount from 'itemCost' to 'itemPrice' for accurate order processing

This commit is contained in:
Tom Butcher 2025-12-28 01:10:33 +00:00
parent 6b983ca873
commit 455c223ec0

View File

@ -355,7 +355,7 @@ const SalesOrderInfo = () => {
defaultValues={{ defaultValues={{
order: { _id: salesOrderId }, order: { _id: salesOrderId },
orderType: 'salesOrder', orderType: 'salesOrder',
syncAmount: 'itemCost' syncAmount: 'itemPrice'
}} }}
/> />
</Modal> </Modal>