Cherry il y a 2 ans
Parent
commit
c1f8334a4b

+ 8 - 0
application/admin/controller/Cannelorder.php

@@ -4,6 +4,7 @@ namespace app\admin\controller;
 
 use app\admin\model\User;
 use app\admin\model\UserRelations;
+use app\api\controller\Chuyutimedtask;
 use app\common\controller\Backend;
 use app\common\library\Token;
 use fast\Random;
@@ -176,6 +177,13 @@ class Cannelorder extends Backend
                 // 删除会员指定的所有Token
                 Token::clear($c_user_id);
 
+                // 发送短信
+                $sms_model = new Chuyutimedtask();
+                $user_model = new User();
+                $c_user_info = $user_model->field('id,mobile')->where('id',$c_user_id)->find();
+                $TemplateParam = json_encode([]);
+                $sms_model->SmsTemplate('SMS_263560039',$c_user_info->mobile,$TemplateParam);
+
                 Db::commit();
                 $this->success("成功", null, ['id' => $ids]);
                 return;

+ 8 - 6
application/api/controller/Chuyutimedtask.php

@@ -32,7 +32,7 @@ class Chuyutimedtask extends Api
     // 如果$noNeedRight为空表示所有接口都需要验证权限才能请求无需鉴权的接口,*表示全部
     protected $noNeedRight = ['*'];
 
-    private function SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam)
+    public function SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam)
     {
 //        循环发送
         $sendBatchSmsRequest = [
@@ -157,8 +157,8 @@ class Chuyutimedtask extends Api
         // 回收月结账单
         $recovery_bill_model = new RecoveryBill();
         $recovery_bill = $recovery_bill_model->alias('b')
-            ->join('user u', 'b.b_user_id = u.id')
-            ->field('b.id,b.b_user_id,u.mobile')
+            ->join('user u', 'b.c_user_id = u.id')
+            ->field('b.id,b.c_user_id,u.mobile')
             ->where('b.status', '=', 1)
             ->where('b.pay_timeout', '=', 0)
             ->where('b.createtime', '<=', $overtime)
@@ -201,8 +201,8 @@ class Chuyutimedtask extends Api
         //餐具月结账单
         $tableware_bill_model = new TablewareBill();
         $tableware_bill = $tableware_bill_model->alias('b')
-            ->join('user u', 'b.b_user_id = u.id')
-            ->field('b.id,b.b_user_id,u.mobile')
+            ->join('user u', 'b.c_user_id = u.id')
+            ->field('b.id,b.c_user_id,u.mobile')
             ->where('b.status', '=', 1)
             ->where('b.pay_timeout', '=', 0)
             ->where('b.createtime', '<=', $overtime)
@@ -325,7 +325,9 @@ class Chuyutimedtask extends Api
         }
 
         $user_model = new User();
-        $users = $user_model->field('id,score,mobile')->where('score', '>', 0)->select();
+        $users = $user_model->field('id,score,mobile')
+            ->where(['status' => 'normal','cancel_shop'=>0])
+            ->where('score', '>', 0)->select(); // 账户未注销的
 
         if (count($users) == 0) {
             $this->success('无操作数据');