shish 2 лет назад
Родитель
Сommit
e06c0c3a3d
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      biz-hd/purchase/services/PurchaseService.php

+ 2 - 0
biz-hd/purchase/services/PurchaseService.php

@@ -280,11 +280,13 @@ class PurchaseService extends BaseService
     {
         $info = self::getByCondition(['orderSn' => $orderSn], true);
         if (empty($info)) {
+            noticeUtil::push('花店采购,付款成功,支付回调,单号:' . $orderSn . ',没有找到订单', '15280215347');
             $msg = "没有找到订单 orderSn:{$orderSn}";
             Yii::info($msg);
             util::fail($msg);
         }
         if ($info->actPrice != $totalFee) {
+            noticeUtil::push("花店采购,付款成功,支付回调,单号:{$orderSn},订单金额与回调通知金额不一致{$info->actPrice} {$totalFee}", '15280215347');
             $msg = "订单金额与回调通知金额不一致 orderSn:{$orderSn} {$info->actPrice} {$totalFee}";
             Yii::info($msg);
             util::fail($msg);