1
This commit is contained in:
parent
a5283e79ef
commit
02dc79cf27
@ -47,15 +47,15 @@ class OutAppPurchase {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$accountId = getReqVal('account_id', '');
|
$accountId = getReqVal('account_id', '');
|
||||||
|
$orderId = getReqVal('order_id', '');
|
||||||
$status = getReqVal('status', '');
|
$status = getReqVal('status', '');
|
||||||
$id = getReqVal('id', '');
|
$id = getReqVal('id', '');
|
||||||
$txhash = getReqVal('txhash', '');
|
$txhash = getReqVal('txhash', '');
|
||||||
$sign = getReqVal('sign', '');
|
$sign = getReqVal('sign', '');
|
||||||
$orderId = getReqVal('order_id', '');
|
|
||||||
|
|
||||||
$orderDb = OutAppOrder::find($orderId);
|
$orderDb = OutAppOrder::find($orderId);
|
||||||
if (!$orderDb) {
|
if (!$orderDb) {
|
||||||
myself()->_rspErr(2, 'not found order');
|
myself()->_rspErr(0, 'not found order');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ($orderDb['status'] != OutAppOrder::FINISHED_STATE) {
|
if ($orderDb['status'] != OutAppOrder::FINISHED_STATE) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user