Page 1 of 1

Equivalent event for sales order batch Process Completed

PostPosted: Mon Dec 14, 2015 4:18 pm
by indikad
I am trying to correctly identify the equivalent event in Jiwa7 for "Process Completed" (that is in 6513)
event ( as in Sales Order - processing - Process Orders )

Re: Equivalent event for sales order batch Process Complete  Topic is solved

PostPosted: Mon Dec 14, 2015 4:27 pm
by Mike.Sheen
If you want to get notification of when a batch of sales orders is processed, then you need to look at the ProcessEnd event from the JiwaSales.BatchProcessing.BatchProcess class.

If you want to get notification of when a single sales order is processed (including when part of a batch), then you have a choice - you can either look at the ProcessedCandidate event from the JiwaSales.BatchProcessing.BatchProcess class, or the Processed event of the JiwaSales.SalesOrder.SalesOrder class.

Re: Equivalent event for sales order batch Process Complete

PostPosted: Tue Dec 15, 2015 11:16 am
by indikad
Thanks Mike - I will test these out today.