This commit is contained in:
aozhiwei 2023-08-02 17:20:42 +08:00
parent a5283e79ef
commit 02dc79cf27

View File

@ -47,15 +47,15 @@ class OutAppPurchase {
return;
}
$accountId = getReqVal('account_id', '');
$orderId = getReqVal('order_id', '');
$status = getReqVal('status', '');
$id = getReqVal('id', '');
$txhash = getReqVal('txhash', '');
$sign = getReqVal('sign', '');
$orderId = getReqVal('order_id', '');
$orderDb = OutAppOrder::find($orderId);
if (!$orderDb) {
myself()->_rspErr(2, 'not found order');
myself()->_rspErr(0, 'not found order');
return;
}
if ($orderDb['status'] != OutAppOrder::FINISHED_STATE) {