forked from ratepay/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.paymentChange.return.php
executable file
·70 lines (57 loc) · 2.38 KB
/
example.paymentChange.return.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
require __DIR__ . '/vendor/autoload.php';
require_once "ratepay_credentials.php";
require_once "helper.createTransaction.php"; // Opens new transaction to handle
require_once "helper.deliverTransaction.php"; // Delivers transaction to handle
/************************************************************
* The PaymentChange alters order details (shopping basket) *
* The subtype Return commits all canceled articles *
************************************************************/
$mbHead = new RatePAY\ModelBuilder('head');
$mbHead->setArray([
'SystemId' => "Example",
'Credential' => [
'ProfileId' => PROFILE_ID,
'Securitycode' => SECURITYCODE
],
'TransactionId' => $transactionId
]);
/*
* The PaymentChange Return (PCh) requires returned/refunded articles of an order.
* It has to be send after the ConfirmationDeliver
* In case of partial return, multiple PCh requests are possible.
*/
$shoppingBasket = [
'ShoppingBasket' => [
'Items' => [
[
'Item' => [
'Description' => "Test product 1",
'ArticleNumber' => "ArtNo1",
'Quantity' => 1,
'UnitPriceGross' => 300,
'TaxRate' => 19,
]
], [
'Item' => [
'Description' => "Test product 2",
'ArticleNumber' => "ArtNo2",
'Quantity' => 2,
'UnitPriceGross' => 100,
'TaxRate' => 19,
'Discount' => 10
]
]
]
]
];
$mbContent = new RatePAY\ModelBuilder('Content');
$mbContent->setArray($shoppingBasket);
// PaymentChange has to be specified by subtype
$pChReturn = $rb->callPaymentChange($mbHead, $mbContent)->subtype('return');
if (!$pChReturn->isSuccessful()) die("PaymentChange not successful");
var_dump("PaymentChange successful");
// PaymentChange response object provides no specific methods
/*********************************************************************************************************************************
* The library throws decidedly exceptions. It's recommended to surround model building and request calls with try-catch-blocks. *
*********************************************************************************************************************************/