-
Notifications
You must be signed in to change notification settings - Fork 86
/
OrderStatusUpdate.php
94 lines (85 loc) · 3.13 KB
/
OrderStatusUpdate.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
/**
* OpenPayU Examples
*
* @copyright Copyright (c) PayU
* http://www.payu.com
* http://developers.payu.com
*/
require_once realpath(dirname(__FILE__)) . '/../../../lib/openpayu.php';
require_once realpath(dirname(__FILE__)) . '/../../config.php';
?>
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Order Status Update - OpenPayU v2</title>
<link rel="stylesheet" href="../../layout/css/bootstrap.min.css">
<link rel="stylesheet" href="../../layout/css/style.css">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Order status update - OpenPayU v2</h1>
</div>
<div id="message"></div>
<div id="unregisteredCardData">
<?php
if (isset($_POST['orderId'])) {
try {
$status_update = array(
"orderId" => stripslashes($_POST['orderId']),
"orderStatus" => stripslashes($_POST['orderStatus'])
);
$response = OpenPayU_Order::statusUpdate($status_update);
$status_desc = OpenPayU_Util::statusDesc($response->getStatus());
if($response->getStatus() == 'SUCCESS'){
echo '<div class="alert alert-success">SUCCESS: '.$status_desc;
echo '</div>';
}else{
echo '<div class="alert alert-warning">'.$response->getStatus().': '.$status_desc;
echo '</div>';
}
echo '<pre>';
echo '<br>';
print_r($response->getResponse());
echo '</pre>';
} catch (OpenPayU_Exception $e) {
echo '<pre>';
echo 'Error code: '.$e->getCode();
echo '<br>';
echo 'Error message: '.$e->getMessage();
echo '<br>';
echo '</pre>';
}
} else {
?>
<form action="" method="post" class="form-horizontal">
<div class="control-group">
<label class="control-label" for="order">Order Id</label>
<div class="controls">
<input class="span3" name="orderId" id="order" type="text" value=""/>
</div>
</div>
<div class="control-group">
<label class="control-label" for="status">Status</label>
<div class="controls">
<select name="orderStatus" id="status">
<option value="COMPLETED">COMPLETED</option>
<option value="REJECTED">REJECTED</option>
</select>
</div>
</div>
<div class="control-group">
<label class="control-label" for="pay-button"></label>
<div class="controls">
<button class="btn btn-success" id="pay-button" type="submit">Update order status</button>
</div>
</div>
</form>
<?php
}
?>
</div>
</div>
</html>