Hi,
We have updated our DEV instance in v9. Almost all our plugins needed rework.
One of them simply does'nt work at all.
It's registered on the entity "salesorderdetail" / Create / Pre Operation
We need to catch the event of the conversion of a quote to a salesorder
if (context.ParentContext != null && context.ParentContext.MessageName == "ConvertQuoteToSalesOrder" ) {...}
This event isn't catched anymore. I can only catch the create event of a salesorder. Then, no more information on the quote which is being converted in the plugin context.
var DevisGuid = (Guid)context.ParentContext.InputParameters["QuoteId"];
How can i get the quote Guid ?
I need it to do an action on each quotedetail wich are beeing converted into salesorderdetail.
Thany you in advance.
*This post is locked for comments