This commit is contained in:
luofei 2024-01-26 17:05:06 +08:00
commit 67131a8e5a

View File

@ -145,7 +145,7 @@ class StoreOrderBehalf extends BaseController
// $find = Db::name('store_order_other')->where('uid', $uid)->where('order_id', $id)->find();
// $find_two = Db::name('store_order')->where('order_sn', $find['order_sn'])->find();
if($res){
$order = StoreOrder::where('order_sn', $orderOther['order_sn'])->field('user_phone,order_type,logistics_code,logistics_phone')->find()->toArray();
$order = StoreOrder::where('order_sn', $orderOther['order_sn'])->find()->toArray();
if($status==3 && $order['order_type'] == 1){
SmsService::create()->send($order['user_phone'], 'RECEIVE_NOTICE', ['code' => $order['logistics_code'], 'name' => $merchant['mer_name']]);
} elseif($status==3 && $order['order_type'] != 1){