This event will be triggered after customer placing the order on the site.
public function onAfterStoreOrder($row)
{
// Put your code here
}
This event will be triggered after customer making the payment for their order.
public function onAfterCompleteOrder($row)
{
// Put your code here
}
You should use this events to make the plugin to integrate EShop extension with any other extensions that you want.