更新
This commit is contained in:
parent
7d4a6cd990
commit
8554595cfa
@ -154,7 +154,7 @@ class StoreOrderOther extends BaseModel
|
||||
|
||||
public function getOrderExtendAttr($val)
|
||||
{
|
||||
return $val ? json_decode($val, true) : null;
|
||||
return $val ? json_decode($val, true) : [];
|
||||
}
|
||||
|
||||
public function getRefundExtensionOneAttr()
|
||||
|
@ -1084,7 +1084,8 @@ class StoreOrderCreateRepository extends StoreOrderRepository
|
||||
}
|
||||
}
|
||||
}
|
||||
Queue::push(SendSmsJob::class, ['tempId' => 'ORDER_CREATE', 'id' => $group->group_order_id]);
|
||||
// Queue::push(SendSmsJob::class, ['tempId' => 'ORDER_CREATE', 'id' => $group->group_order_id,
|
||||
// 'activity_type'=>$group->activity_type,'order_id'=>$group->order_id]);
|
||||
return $group;
|
||||
}
|
||||
}
|
||||
|
@ -462,6 +462,23 @@ class StoreOrderRepository extends BaseRepository
|
||||
if (count($groupOrder['give_coupon_ids']) > 0)
|
||||
$groupOrder['give_coupon_ids'] = app()->make(StoreCouponRepository::class)->getGiveCoupon($groupOrder['give_coupon_ids'])->column('coupon_id');
|
||||
$groupOrder->save();
|
||||
$group_id=0;
|
||||
if($order->activity_type==98){
|
||||
$group_id=Db::name('system_group')->where('group_key','city_operations')->value('group_id');
|
||||
}else{
|
||||
$group_id=Db::name('system_group')->where('group_key','town_operation')->value('group_id');
|
||||
}
|
||||
if($group_id){
|
||||
$group_value=Db::name('system_group_data')->where('group_id',$group_id)->column('value');
|
||||
if($group_value){
|
||||
foreach($group_value as $k=>$v){
|
||||
$phone=json_decode($v,true);
|
||||
Queue::push(SendSmsJob::class, ['tempId' => 'ORDER_CREATE', 'phone' => $phone['phone'],'orderId'=>$order->order_id]);//短信通知
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
if (count($groupOrder['give_coupon_ids']) > 0) {
|
||||
@ -470,7 +487,6 @@ class StoreOrderRepository extends BaseRepository
|
||||
} catch (Exception $e) {
|
||||
}
|
||||
}
|
||||
|
||||
Queue::push(SendSmsJob::class, ['tempId' => 'ORDER_PAY_SUCCESS', 'id' => $groupOrder->group_order_id]);
|
||||
Queue::push(SendSmsJob::class, ['tempId' => 'ADMIN_PAY_SUCCESS_CODE', 'id' => $groupOrder->group_order_id]);
|
||||
Queue::push(UserBrokerageLevelJob::class, ['uid' => $groupOrder->uid, 'type' => 'pay_money', 'inc' => $groupOrder->pay_price]);
|
||||
|
@ -1259,7 +1259,7 @@ class StoreOtherOrderRepository extends BaseRepository
|
||||
},
|
||||
]);
|
||||
$count = $query->count();
|
||||
$list = $query->page($page, $limit)->select()->append(['refund_extension_one', 'refund_extension_two']);
|
||||
$list = $query->page($page, $limit)->select();
|
||||
return compact('count', 'list');
|
||||
}
|
||||
|
||||
|
@ -27,8 +27,6 @@ class SendSmsJob implements JobInterface
|
||||
|
||||
public function fire($job, $data)
|
||||
{
|
||||
$backtrace = debug_backtrace();
|
||||
Log::info("函数SendSmsJob被". $backtrace[1]['function'] . "调用\n");
|
||||
$status = app()->make(SystemNoticeConfigRepository::class)->getNoticeStatusByConstKey($data['tempId']);
|
||||
if (!$status) {
|
||||
$job->delete();
|
||||
@ -40,7 +38,7 @@ class SendSmsJob implements JobInterface
|
||||
$client->send($data['tempId'], $data);
|
||||
} catch (\Exception $e) {
|
||||
Log::info('JgPush推送消息发送失败' . json_encode($data) . ' - ' . $e->getMessage());
|
||||
DingTalk::exception($e, 'JgPush推送消息发送失败' . var_export($data, 1));
|
||||
// DingTalk::exception($e, 'JgPush推送消息发送失败' . var_export($data, 1));
|
||||
}
|
||||
}
|
||||
if ($status['notice_sms'] == 1) {
|
||||
|
@ -285,6 +285,9 @@ class SmsService
|
||||
case 'MERCHANT_CREDIT_BUY_NOTICE':
|
||||
self::sendMerMessage($id, $tempId, ['order_id' => $data['orderId']]);
|
||||
break;
|
||||
case 'ORDER_CREATE':
|
||||
self::create()->send($data['phone'], $tempId, ['name' => $data['orderId']]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -297,6 +300,4 @@ class SmsService
|
||||
$yunxinSmsService->send($service['phone'], $tempId, array_merge(['admin_name' => $service['nickname']], $data));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user