|
@@ -8,6 +8,8 @@ use app\admin\model\RankingModel;
|
|
|
use app\admin\model\Types;
|
|
|
use app\admin\model\UserModel;
|
|
|
use think\Db;
|
|
|
+use think\Exception;
|
|
|
+use think\exception\ErrorException;
|
|
|
use think\Request;
|
|
|
|
|
|
class Customer extends Base
|
|
@@ -213,7 +215,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) {
|
|
@@ -222,7 +224,7 @@ class Customer extends Base
|
|
|
})
|
|
|
->column('id');
|
|
|
// var_dump($res);
|
|
|
-// 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()]);
|
|
|
}
|
|
|
unset($websiteArr);
|
|
|
$ranking = new RankingModel();
|
|
@@ -427,6 +429,8 @@ class Customer extends Base
|
|
|
->whereOr('a.groupid','5')
|
|
|
->field('d.id,d.name')
|
|
|
->select();
|
|
|
+ $country = Db::name('countries')->select();
|
|
|
+ $this->assign('countrires',$country);
|
|
|
$this->assign('type', $typrData);
|
|
|
return $this->fetch('customer/admin/see');
|
|
|
}
|
|
@@ -1946,4 +1950,21 @@ class Customer extends Base
|
|
|
$res = $costomer->caozuo_update($param);
|
|
|
return $res;
|
|
|
}
|
|
|
+
|
|
|
+ public function customerDel()
|
|
|
+ {
|
|
|
+ $data = $this->request->param();
|
|
|
+ if(!isset($data['id']) || empty($data['id'])) return json(['code' => 100, 'msg' =>'服务错误']);
|
|
|
+ try {
|
|
|
+ Db::startTrans();
|
|
|
+ Db::name('customer')->where('id',$data['id'])->delete();
|
|
|
+ Db::name('ranking')->where('c_id',$data['id'])->delete();
|
|
|
+ Db::commit();
|
|
|
+ } catch (Exception $e) {
|
|
|
+ Db::rollback();
|
|
|
+ $this->error($e);
|
|
|
+ return json(['code' =>100 ,'msg' => '删除失败']);
|
|
|
+ }
|
|
|
+ return json(['code' => 200, 'msg' => '删除成功']);
|
|
|
+ }
|
|
|
}
|