Developer forum

Forum » Development » Nofiticationsubscripers in the backend?

Nofiticationsubscripers in the backend?


Reply

hey, we are currently exporting a list of orders , foreach order that goes threw paymentsucced'd we generate a new record in our external data sheet.
 
Works great, however when an order is set to cancled threw the backend we need to withdraw the record from our external data sheet. 

 

So when a editor or administrator is setting an order to cancled or similar and save the orders, is there a posibility to hit any event in the flow?


Replies

 
Nicolai Høeg Pedersen
Reply
Unfortunately not...

Only hack I can think of is going to Global.asax in the 

Application_OnPreRequestHandlerExecute event and

HttpContext.Current.Request.Url is /Admin/Module/eCommerc..../Somer.aspx?action=cancel or whatever it is called... from that you can find the orderid in the HttpContext.Current.Request and do your thing...

Quite quirkie - but it should work.

make a check for
 
Reply
Uf thats a nasty hack, but i much appricate it regardless :)

 

You must be logged in to post in the forum