@@ -135,7 +135,9 @@ class AfterSaleLogic extends BaseLogic
'after_sale_sn' => $afterSale->sn
]
]);
-
+ Order::update([ 'after_sale_status' => 3 ], [
+ [ 'id', '=', $afterSale['order_id'] ],
+ ]);
Db::commit();
return true;
} catch(\Exception $e) {