Notice: You are browsing the documentation for PrestaShop 9, which is currently in development.
You might want to read the documentation for the current version, PrestaShop 8. Read the current version of this page
Hook | actionOrderSlipAdd |
---|---|
Locations | FO |
Type | action |
Origin | core |
Aliases | [orderSlip] |
Origin | File |
---|---|
core | src/Adapter/Order/Refund/OrderSlipCreator.php |
<?php
array(
'order' => Order,
'productList' => array(
(int) product ID 1,
(int) product ID 2,
...,
(int) product ID n
),
'qtyList' => array(
(int) quantity 1,
(int) quantity 2,
...,
(int) quantity n
)
);
The order of IDs and quantities is important!
Hook::exec('actionOrderSlipAdd', [
'order' => $order,
'productList' => $orderRefundSummary->getProductRefunds(),
'qtyList' => $fullQuantityList,
], null, false, true, false, $order->id_shop)