I use this code for get the new value for the product, but i want to see this one on the screen, i used:
”row.UnitPrice”, but the data is there, but no on the screen. So i need to call some another funtion for update it?
protected void SOLine_InventoryID_FieldUpdated(PXCache cache, PXFieldUpdatedEventArgs e)
{
var row = (SOLine)e.Row;
row.UnitPrice = null;
if (row.OrderType == "SO")
{
if (row.InventoryID != null)
{
InventoryItem oItem = PXSelect<InventoryItem,Where<InventoryItem.inventoryID,Equal<Required<InventoryItem.inventoryID>>>>.Select(new PXGraph(), row.InventoryID);
if (oItem != null)
{
decimal? qty = row.Qty;
row.UnitPrice = CalcLinePrice( oItem.RecPrice,qty);
Base.Transactions.Update(row);
}
}
}
}
protected decimal? CalcLinePrice(decimal? unitPrice, decimal? qty)
{
return unitPrice *2 * (qty);
}
Agree with Hybridzz: you should update CuryUnitPrice field instead of UnitPrice. Also it's necessary to use PXCache.SetValueExt method to raise all field-level handlers for the CuryUnitPrice field when assigning new value:
On a side note:
you should never invoke
Update
method for currently processed record in FieldUpdated handlers -Base.Transactions.Update(row);
must go awaystatic PXSelectorAttribute.Select method must be used to retrieve InventoryItem selected for SOLine record: