moonsflyer 5 달 전
부모
커밋
cb474f4aaf
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      app/adminapi/logic/after_sale/AfterSaleLogic.php

+ 4 - 0
app/adminapi/logic/after_sale/AfterSaleLogic.php

@@ -337,6 +337,10 @@ class AfterSaleLogic extends BaseLogic
             //更新订单状态
             RefundLogic::afterSaleRefundUpdate($afterSale->order_id);
 
+            Order::update([   'after_sale_status' => 6], [
+                [ 'id', '=', $order['id'] ],
+            ]);
+
             Db::commit();
             return true;
         } catch (\Exception $e) {