Jiwa Price Change Event
Jiwa version : 7.0.175
I need to apply price calculated from custom module when sales order is created. The sell prices / Price scheme price recorded in Jiwa needs to go through few more filters based on debtor custom field value. Currently I apply pricing when new inventory item is added to sales order.
But whenever Jiwa internally apply pricing from another module like Re-Apply Quantities price get reset .
Is there a better event that I can use to apply custom price calculated other than property change events(Cannot use property change events, since user should be able to manually override calculated price).
Thanks.
I need to apply price calculated from custom module when sales order is created. The sell prices / Price scheme price recorded in Jiwa needs to go through few more filters based on debtor custom field value. Currently I apply pricing when new inventory item is added to sales order.
- Code: Select all
private void SalesOrderLines_AddInventoryItemEnd(JiwaFinancials.Jiwa.JiwaSales.SalesOrder.SalesOrderLine item)
{
.......
item.SellPriceExGST = calculatedPrice;
}
But whenever Jiwa internally apply pricing from another module like Re-Apply Quantities price get reset .
Is there a better event that I can use to apply custom price calculated other than property change events(Cannot use property change events, since user should be able to manually override calculated price).
Thanks.