Order processing

1. Create a new order
2. Order completed
3. Change order status
1. Create a new order
As soon as a new order is created, all the information of the order object is sent to the event.
You can customize this event.
To edit events:
SCart-folder/

├── app
│     ├── Listeners
│            ├── ProcessOrderCreated.php
└──...

2. Order completed

After the order is completed (customer successfully placed an order), the event will be sent before displaying the successful purchase screen.
To edit events:

SCart-folder/
├── app
│     ├── Listeners
│            ├── ProcessOrderSuccess.php
└──...


3. Change order status
The following order is updated with a new status, the event will be sent.
To edit events:

SCart-folder/
├── app
│     ├── Listeners
│            ├── ProcessOrderUpdateStatus.php
└──...

Related topics

Latest Document