Hello Everyone,
I have override the Convert To Order action in the Sales Quotes screen, and copying the line field value from the Sales Quote to Sales Order line with the below code.
Value are getting copied properly but caches are not updating as expected, when try to edit any other value and try to save it is giving me an error.
Here is the code, can anyone review and share your thoughts.
[PXOverride]
public IEnumerable createSalesOrder(PXAdapter adapter, Func<PXAdapter, IEnumerable> baseMethod)
{
SOOrderEntry SOGraph = PXGraph.CreateInstance<SOOrderEntry>();
PXGraph.InstanceCreated.AddHandler(delegate (SOOrderEntry graph)
{
graph.RowUpdated.AddHandler<SOLine>(delegate (PXCache sender, PXRowUpdatedEventArgs e)
{
SOLine objSOLine = e.Row as SOLine;
if (objSOLine != null)
{
foreach (CROpportunityProducts item in Base.Products.Select().FirstTableItems.ToList().Where(x => x.InventoryID == objSOLine.InventoryID))
{
if (item.POCreate == true)
{
sender.SetValueExt<SOLine.pOCreate>((object)objSOLine, true);
sender.SetValueExt<SOLine.pOSource>((object)objSOLine, "D");
}
}
}
});
});
return baseMethod(adapter);
}