- Print
- DarkLight
A: Partial cancellations
Structure the order as follows:
1 x Article A
1 x Article B
Shipping costs
Voucher for discount (e.g. 10% or 5,00 €)
Execute a partial cancellation for Article A.
Cancel Article B, Shipping costs and the voucher.
use Stegback\Ratepay\Services\RatepayReturn;
$product = [
'total_amount' => '189.00',
'item' => [
[
'product_id' => 12731,
'product_quantity' => 6,
'product_price' => '31.5',
'product_name' => 'Articale 1',
],
],
];
$ratepay = new RatepayReturn;
$ratepay = $ratepay->cancellation('part',$product,$transaction);
return $ratepay;
B: Full cancellation
Structure the order as follows:
1 x Article A
1 x Article B
Shipping costs
Cancel the full order.
$product = [
'total_amount' => '0',
];
$ratepay = new RatepayReturn;
$ratepay = $ratepay->cancellation('full',$product,$transaction);
return $ratepay;
C: Partial deliveries
Structure the order as follows:
2 x Article A
1 x Article B
Shipping costs
Voucher for discount (e.g. -10% or -5,00 €)
Execute a partial delivery for the following items:
1 x Article A
Shipping costs
Voucher for discount
Execute a second delivery for the remaining articles.
use Stegback\Ratepay\Services\RatepayShippmentApi;
$product = [
"id" => '12731',
"quantity" => 6,
"cost_per_item" => '31.5',
"product_name" => "10m Anschlusskabel mit Schuko Steckverbinder und HMS Feldstecker",
];
$data = [
'transactionId' => $transaction,
'order_id' => '14065',
'shipping_provider' => 'DSV',
'tracking_number' => '123',
'invoice_id' => '1213',
'totalAmount' => '189.00',
'products' => $product,
'discountAmount' => '0',
'shippingAmount' => '0'
];
$ratepay = new RatepayShippmentApi;
$ratepay = $ratepay->deliveryConfirm($data);
return $ratepay;
D: Partial cancellation & remaining delivery
The order should be structured as follows:
1 x Article A
1 x Article B
Shipping costs
Voucher for discount (e.g. -5,00 €)
Perform a partial cancellation for article A.
Execute a delivery for the remaining articles.
$product = [
'total_amount' => '3398',
'item' => [
[
'product_id' => 33045136,
'product_quantity' => 2,
'product_price' => '1699',
'product_name' => '10 x 310W Easy Peak Power Solarmodule',
],
],
'discount' => 0,
'shipping' => 0,
];
$ratepay = new RatepayReturn;
$ratepay = $ratepay->cancellation('partial',$product,$transaction);
$product = [
[
"id" => '33061501',
"quantity" => 1,
"cost_per_item" => '1099',
"product_name" => "10 x 410w Bifazial Glas-Glas Full-Black Ht54-18x(Pd)-F Pv Modul",
],
[
"id" => '33064616',
"quantity" => 1,
"cost_per_item" => '105.75',
"product_name" => "100 Watt Solar Komplettsystem für Wohnmobile, Wohnwagen und Boote, Silber Rahmen Solarmodul- 46cm",
]
];
$data = [
'transactionId' => $transaction,
'order_id' => '14065',
'shipping_provider' => 'DSV',
'tracking_number' => '123',
'invoice_id' => '1213',
'totalAmount' => '1204.75',
'products' => $product,
'discountAmount' => '0',
'shippingAmount' => '0'
];
$ratepay = new RatepayShippmentApi;
$ratepay = $ratepay->deliveryConfirm($data);
return $ratepay;
E: Partial returns
The order should be structured as follows:
2 x Article A
1 x Article B
Shipping costs
Voucher for discount (e. g. -10%)
Perform a delivery for all articles.
Execute a partial return with the following articles:
1 x Article A
Finally return the remaining articles:
1 x Article A
1 x Article B
Shipping costs
Voucher for discount (e. g. -10%)
$ratepay = new RatepayShippmentApi;
$ratepay = $ratepay->deliveryConfirm($data);
$ratepay = new RatepayReturn;
$ratepay = $ratepay->return('part',$product,$transaction);
return $ratepay;
F: Full return
The order should be structured as follows:
2 x Article A
Shipping costs
Voucher for discount (e.g. -10% or -5,00 €)
Perform a full delivery.
Finally return all articles.
$ratepay = new RatepayReturn;
$ratepay = $ratepay->return('full',$product,$transaction);
return $ratepay;
G: Discount before delivery
The order should be structured as follows:
1 x Article A
Add a discount with a negative value, after placing the order.
Execute a full delivery.
$data = [
'transactionId' => $transaction,
'order_id' => '14065',
'shipping_provider' => 'DSV',
'tracking_number' => '123',
'invoice_id' => '1213',
'totalAmount' => '1204.75',
'products' => $product,
'discountAmount' => '10', // add discount at the time of shipping
'shippingAmount' => '0'
];
$ratepay = new RatepayShippmentApi;
$ratepay = $ratepay->deliveryConfirm($data);
return $ratepay;
H: Add article (if contractually agreed)
The order should be structured as follows:
1 x Article A
1 x Article B
Shipping costs
Voucher for discount (e.g. -10% or -5,00 €)
Add another item in addition.
Execute a full delivery.
$ratepay = new RatepayReturn;
$ratepay = $ratepay->changeOrder($transaction,$newProduct);
$ratepay = new RatepayShippmentApi;
$ratepay = $ratepay->deliveryConfirm($data);
return $ratepay;
I: Exchange article
The order should be structured as follows:
1 x Article A
1 x Article B
Shipping costs
Voucher for discount (e. g. -10% or -5,00 €)
Perform a full delivery
Return Article A
Add another item
1 x Article C
Perfom a delivery for Article C
$ratepay = new RatepayShippmentApi;
$ratepay = $ratepay->deliveryConfirm($data);
$ratepay = new RatepayReturn;
$ratepay = $ratepay->return('part',$product,$transaction);
$ratepay = new RatepayReturn;
$ratepay = $ratepay->changeOrder($transaction,$newProduct);
return $ratepay;
K: Discount & additional charge (if contractually agreed)
The order should be structured as follows:
3 x Article A
3 x Article B
Shipping costs
Add a discount, after placing the order.
Perfom a partial delivery for the following articles:
1 x Article A
1 x Article B
Discount
Add an additional debit / charge (e.g. fee)
Perform a partial delivery for the remaining articles:
2 x Article A
2 x Article B
Finally, add another discount.
L: Partial cancellation & partial return
The order should be structured as follows:
2 x Article A
2 x Article B
2 x Article C
Shipping costs
Perform a partial delivery for 3 articles + shipping costs:
2 x Article A
1 x Article B
Shipping costs
Perform a partial cancellation for Article C.
Execute a partial return for the following articles:
1 x Article A
1 x Article B
Make a partial delivery for the remaining articles:
1 x Article B
1 x Article C
Complete a full return for the remaining three articles.
// part delivery
$ratepay = new RatepayShippmentApi;
$ratepay = $ratepay->deliveryConfirm($data); // add discount 1 qty from 2
$ratepay = new RatepayReturn;
$ratepay = $ratepay->cancellation('part',$product,$transaction);
$ratepay = new RatepayReturn;
$ratepay = $ratepay->return('part',$product,$transaction);
$ratepay = new RatepayShippmentApi;
$ratepay = $ratepay->deliveryConfirm($data); // add discount
$ratepay = new RatepayReturn;
$ratepay = $ratepay->return('full',$product,$transaction);