chenhao 4 years ago
parent
commit
7a224508ff

+ 2 - 0
application/admin/controller/Crontab.php

@@ -125,6 +125,8 @@ class Crontab extends Controller
         if (!empty($excel_array)) {
             foreach ($excel_array as $k => $v) {
                 $status = 1; // 为1标识此行正常
+                $v[2] = trim($v[2]);
+                $v[3] = trim($v[3]);
                 // 判断邮件
                 if (!empty($v[2])) {
                     $checkEmail = Db::name('customer')->where('email',$v[2])->where('spread_id',$uid)->find();

+ 3 - 2
application/admin/controller/Customer.php

@@ -213,7 +213,7 @@ class Customer extends Base
                             $query->whereOr('company',$company);
                         })
                         ->column('id');
-                    Db::name('customer')->where('id','in',implode(',',$res))->update(['spread_id' => $param['id'], 'status' => 2, 'follow_time' => time()]);
+//                    Db::name('customer')->where('id','in',implode(',',$res))->update(['spread_id' => $param['id'], 'status' => 2, 'follow_time' => time()]);
                 } else {
                     $res = CustomerModel::where(function ($query) use ($websiteArr) {
                         foreach ($websiteArr as $v) {
@@ -221,7 +221,8 @@ class Customer extends Base
                         }
                     })
                     ->column('id');
-                    Db::name('customer')->where('id', 'in', implode(',', $res))->update(['spread_id' => $param['id'], 'status' => 2, 'follow_time' => time()]);
+//                    var_dump($res);
+//                    Db::name('customer')->where('id', 'in', implode(',', $res))->update(['spread_id' => $param['id'], 'status' => 2, 'follow_time' => time()]);
                 }
                 unset($websiteArr);
                 $ranking = new RankingModel();

+ 2 - 0
application/admin/controller/Upload.php

@@ -445,6 +445,8 @@ class Upload extends Base
             foreach ($excel_array as $k => $v) {
                 $status = 1; // 为1标识此行正常
                 // 判断邮件
+                $v[2] = trim($v[2]);
+                $v[3] = trim($v[3]);
                 if (!empty($v[2])) {
                     $checkEmail = Db::name('customer')->where('email',$v[2])->where('spread_id',session('uid'))->find();
                     if ($checkEmail) {