I have a user field on the Purchase Order screen that I'd like to populate from the 'Production Nbr.' field during the 'Create Purchase Orders' process. The 'Production Nbr.' field shows up in the 'Create Purchase Orders' process screen as shown below:
The process screen:
I've located the method that I think is used to create the Purchase Orders:
public virtual PXRedirectRequiredException CreatePOOrders(List<POFixedDemand> list, DateTime? PurchDate, bool extSort, int? branchID = null)
But I'm afraid I don't know how to override this to get the job done. In a previous, similar situation, I've overridden the process method to add a RowInserting.AddHandler to set this field during the RowInserting event - but I'm not sure of the syntax in this situation...
Any help would be appreciated. Thanks.