Triggered when a product stock reaches the out of stock threshold (goes out of stock).
Example:
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onProductOutOfStock', $this, 'process_out_of_stock');
}
public function process_out_of_stock($product, $om_record)
{
// Do something
//
}