|
@@ -228,4 +228,78 @@ class CommonLogic extends BaseLogic
|
|
|
|
|
|
}
|
|
|
|
|
|
+ //微信支付成功后的异步通知及订单处理
|
|
|
+ public static function Notify()
|
|
|
+ {
|
|
|
+
|
|
|
+ Db::startTrans();
|
|
|
+ try {
|
|
|
+
|
|
|
+ $notifyInfo = WechatLogic::Notify();
|
|
|
+
|
|
|
+ $pay_info = PayInfoModel::field('id,type,status')
|
|
|
+ ->where('code', $notifyInfo['out_trade_no'])
|
|
|
+ ->findOrEmpty();
|
|
|
+
|
|
|
+ if ($pay_info->isEmpty()) throw new Exception('该支付信息不存在');
|
|
|
+
|
|
|
+ //待处理
|
|
|
+ if ($pay_info->status == CommonModel::$order_status_wait_pay) {
|
|
|
+
|
|
|
+ $updatetime = date('Y-m-d H:i:s');
|
|
|
+
|
|
|
+ PayInfoModel::where(['code' => $notifyInfo['out_trade_no'], 'status' => CommonModel::$order_status_wait_pay])
|
|
|
+ ->save([
|
|
|
+ 'status' => CommonModel::$order_status_not_deliver,
|
|
|
+ 'updaterid' => '0',
|
|
|
+ 'updater' => '微信支付',
|
|
|
+ 'updatetime' => $updatetime,
|
|
|
+ 'transaction_id' => $notifyInfo['transaction_id'],
|
|
|
+ 'trade_type' => $notifyInfo['trade_type'],
|
|
|
+ 'notify_result' => json_encode($notifyInfo, JSON_UNESCAPED_UNICODE),
|
|
|
+ ]);
|
|
|
+
|
|
|
+ if ($pay_info->type == GoodModel::$type_exchange) {
|
|
|
+ //兑换商品订单
|
|
|
+ Db::name('order')
|
|
|
+ ->where(['is_del' => CommonModel::$del_normal, 'pay_info_id' => $pay_info->id, 'status' => CommonModel::$order_status_wait_pay])
|
|
|
+ ->update([
|
|
|
+ 'updaterid' => '0',
|
|
|
+ 'updater' => '微信支付',
|
|
|
+ 'updatetime' => $updatetime,
|
|
|
+ 'status' => CommonModel::$order_status_not_deliver
|
|
|
+ ]);
|
|
|
+
|
|
|
+
|
|
|
+ } else {
|
|
|
+ //服务订单
|
|
|
+ Db::name('order_service')
|
|
|
+ ->where(['is_del' => CommonModel::$del_normal, 'pay_info_id' => $pay_info->id, 'status' => CommonModel::$order_status_wait_pay])
|
|
|
+ ->update([
|
|
|
+ 'updaterid' => '0',
|
|
|
+ 'updater' => '微信支付',
|
|
|
+ 'updatetime' => $updatetime,
|
|
|
+ 'status' => CommonModel::$order_status_not_deliver
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ Db::commit();
|
|
|
+ return xml(['return_code' => 'SUCCESS', 'return_msg' => 'DEAL WITH SUCCESS']);
|
|
|
+ } catch (Exception $exception) {
|
|
|
+ Db::rollback();
|
|
|
+ return xml(['return_code' => 'FAIL', 'return_msg' => $exception->getMessage()]);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 返回XML状态,至于XML数据可以自己生成,成功状态是必须要返回的。
|
|
|
+ // <xml>
|
|
|
+ // return_code><![CDATA[SUCCESS]]></return_code>
|
|
|
+ // return_msg><![CDATA[OK]]></return_msg>
|
|
|
+ // </xml>
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|