diff --git a/app/common/model/store/order/StoreOrderOther.php b/app/common/model/store/order/StoreOrderOther.php index 14a4d96d..adfd44b3 100644 --- a/app/common/model/store/order/StoreOrderOther.php +++ b/app/common/model/store/order/StoreOrderOther.php @@ -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() diff --git a/app/common/repositories/store/order/StoreOrderCreateRepository.php b/app/common/repositories/store/order/StoreOrderCreateRepository.php index 327baea7..52b2ba5b 100644 --- a/app/common/repositories/store/order/StoreOrderCreateRepository.php +++ b/app/common/repositories/store/order/StoreOrderCreateRepository.php @@ -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; } } diff --git a/app/common/repositories/store/order/StoreOrderRepository.php b/app/common/repositories/store/order/StoreOrderRepository.php index 96682a73..598d2002 100644 --- a/app/common/repositories/store/order/StoreOrderRepository.php +++ b/app/common/repositories/store/order/StoreOrderRepository.php @@ -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]); diff --git a/app/common/repositories/store/order/StoreOtherOrderRepository.php b/app/common/repositories/store/order/StoreOtherOrderRepository.php index 8cac4675..dd50a557 100644 --- a/app/common/repositories/store/order/StoreOtherOrderRepository.php +++ b/app/common/repositories/store/order/StoreOtherOrderRepository.php @@ -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'); } diff --git a/crmeb/jobs/SendSmsJob.php b/crmeb/jobs/SendSmsJob.php index 37482466..e0664674 100644 --- a/crmeb/jobs/SendSmsJob.php +++ b/crmeb/jobs/SendSmsJob.php @@ -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) { diff --git a/crmeb/services/SmsService.php b/crmeb/services/SmsService.php index b2c421ff..edd26381 100644 --- a/crmeb/services/SmsService.php +++ b/crmeb/services/SmsService.php @@ -55,7 +55,7 @@ class SmsService */ public function checkSmsCode($phone, $code, $type) { - if (!env('DEVELOPMENT',false)) { + if (!env('DEVELOPMENT', false)) { $sms_key = $this->sendSmsKey($phone, $type); if (!$cache_code = Cache::get($sms_key)) return false; if ($code != $cache_code) return false; @@ -233,7 +233,7 @@ class SmsService //到货提醒通知 2.1 case 'PRODUCT_INCREASE': $product = app()->make(ProductRepository::class)->getWhere(['product_id' => $id], '*', ['attrValue']); - if (!$product) return ; + if (!$product) return; $unique[] = 1; foreach ($product['attrValue'] as $item) { if ($item['stock'] > 0) $unique[] = $item['unique']; @@ -241,7 +241,7 @@ class SmsService $make = app()->make(ProductTakeRepository::class); $query = $make->getSearch(['product_id' => $id, 'status' => 0, 'type' => 1])->where('unique', 'in', $unique); $ret = $query->select(); - if (!$ret) return ; + if (!$ret) return; foreach ($ret as $item) { if ($item->user->phone) { self::create()->send($item->user->phone, $tempId, [ @@ -280,11 +280,14 @@ class SmsService break; //付费会员支付成功 case 'SVIP_PAY_SUCCESS': - self::create()->send($id['phone'], $tempId, ['store_name' => systemConfig('site_name'),'date' => $id['date']]); + self::create()->send($id['phone'], $tempId, ['store_name' => systemConfig('site_name'), 'date' => $id['date']]); break; 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)); } } - - }