Browse Source

修正订单状态字段

邹景立 3 years ago
parent
commit
f76f0ebb5c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/data/service/PaymentService.php

+ 1 - 1
app/data/service/PaymentService.php

@@ -356,7 +356,7 @@ abstract class PaymentService
             $status = 4; # 实物订单需要发货
         }
         // 更新订单支付状态
-        $order['stauts'] = $status;
+        $order['status'] = $status;
         $order['payment_code'] = $this->code;
         $order['payment_type'] = $this->type;
         $order['payment_trade'] = $payTrade;