Sales Price Updating Every Other Time
问题 I have extended the SOOrderEntry graph and added the following code in order to update another line on the same sales order that is related to the current line that is being updated: protected virtual void SOLine_RowUpdating(PXCache cache, PXRowUpdatingEventArgs e) { if (e.NewRow == null) { return; } SOLine soLine = (SOLine)e.NewRow; SOLine relatedLine = Base.Transactions.Search<SOLine.inventoryID> (456); if (relatedLine != null) { relatedLine.Qty = soLine.Qty; relatedLine.CuryUnitPrice = 24