I need to do some actions in a shipment plugin when an order status change from Pending to Confirmed. Please help me.
look in administrator/components/com_virtuemart/models/orders.php
around line 623 in function updateStatusForOneOrder()
there the shipment plugins are triggered - calling plgVmOnUpdateOrderShipment
so you need a function plgVmOnUpdateOrderShipment() {
//do stuff
}
in your ship plug
Thanks you very much !! it work perfectly.
:)