CustomerModel.php 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. <?php
  2. namespace app\admin\model;
  3. use think\Db;
  4. use think\Model;
  5. class CustomerModel extends Model
  6. {
  7. protected $name = 'customer';
  8. /**
  9. * 销售总后台 获取 客户信息
  10. */
  11. public function getCustomersByWhere($map,$od, $Nowpage, $limits,$whereOr = [])
  12. {
  13. $res = $this->alias ('a')
  14. ->join('admin ad', 'ad.id = a.spread_id','left')
  15. ->join('type t','t.id = a.type','left')
  16. ->field('a.*, ad.username username,ad.nickname nickname,t.name type_name')
  17. ->where($map)
  18. ->where(function ($query) use($whereOr) {
  19. foreach ($whereOr as $k => $v) {
  20. $query->whereOr($whereOr[$k][0],$whereOr[$k][1],$whereOr[$k][2]);
  21. }
  22. })
  23. ->page($Nowpage, $limits)
  24. ->order($od)
  25. ->select();
  26. return $res;
  27. }
  28. /**
  29. * 客户总后台 获取 客户信息
  30. */
  31. public function getCustomerssByWhere($map,$od, $Nowpage, $limits,$whereOr = [])
  32. {
  33. $res = $this->alias ('a')
  34. ->where($map)
  35. ->where(function ($query) use($whereOr) {
  36. foreach ($whereOr as $k => $v) {
  37. $query->whereOr($whereOr[$k][0],$whereOr[$k][1],$whereOr[$k][2]);
  38. }
  39. })
  40. ->page($Nowpage, $limits)
  41. ->order($od)
  42. ->select();
  43. return $res;
  44. }
  45. /*
  46. * 销售后台总页面数
  47. */
  48. public function getCustomerCount($map,$wherOr=[]){
  49. // return $this->alias('a')
  50. //// ->join('auth_group ag', 'a.groupid = ag.id','left')
  51. // ->where($map)
  52. // ->count();
  53. $count = $this->alias('a')
  54. ->where($map)
  55. ->where(function ($query) use ($wherOr){
  56. foreach ($wherOr as $k => $v) {
  57. $query->whereOr($wherOr[$k][0],$wherOr[$k][1],$wherOr[$k][2]);
  58. }
  59. })
  60. ->select();
  61. return count($count);
  62. }
  63. /*
  64. * 销售后台总页面数
  65. */
  66. public function getCustomerCounts($map,$wherOr = []){
  67. $count = $this->alias('a')
  68. ->where($map)
  69. ->where(function ($query) use ($wherOr){
  70. foreach ($wherOr as $k => $v) {
  71. $query->whereOr($wherOr[$k][0],$wherOr[$k][1],$wherOr[$k][2]);
  72. }
  73. })
  74. ->select();
  75. return count($count);
  76. }
  77. /**
  78. * 未建交添加
  79. */
  80. public function add_customer($data)
  81. {
  82. // 检测用户是否存在
  83. $where = [
  84. // 'name' => $data['name'],
  85. 'email' => $data['email'],
  86. 'company' => $data['company'],
  87. // 'country' => $data['country'],
  88. 'website' => $data['website'],
  89. 'phone' => $data['phone'],
  90. ];
  91. $checkEmail = $this->where('email',$data['email'])->where('spread_id',session('uid'))->find();
  92. if ($checkEmail) return json(['cdoe' => 100, 'msg' => '你已创建过此邮箱的客户了']);
  93. $isset = $this->where($where)->find();
  94. if ($isset) return json(['cdoe' => 100, 'msg' => '此客户已存在']);
  95. $data['type'] = ','.$data['type'].',';
  96. $data['product'] = ','.$data['product'].',';
  97. $add = $this->save($data);
  98. if ($add) {
  99. $rankingmodel = new RankingModel();
  100. $rankingmodel->new_customer($this->id,$data['spread_id']);
  101. self::people_set($data['name'],$data['email']);
  102. return json(['code' => 200,'msg' => '添加成功']);
  103. } else {
  104. return json(['code' => 100,'msg' => '添加失败']);
  105. }
  106. }
  107. /**
  108. * 检测邮箱
  109. */
  110. public function checkEmail($email)
  111. {
  112. $res = $this->where('email',$email)->where('status','in','1,2,3')->find();
  113. if ($res) {
  114. return json(['code' => 100, 'msg' => '此邮箱客户被领走']);
  115. } else {
  116. return json(['code' => 200,'msg' => '']);
  117. }
  118. }
  119. /**
  120. * 批量导入检测邮箱
  121. */
  122. public function checkEmails($email)
  123. {
  124. return $this->where('email',$email)->where('status','in','1,2,3')->find();
  125. }
  126. /**
  127. * 建档人数检测
  128. */
  129. public function people_set($username , $eamil)
  130. {
  131. $peoples = $this->where('email',$eamil)->column('id');
  132. if ($peoples) {
  133. $time = time();
  134. $num = count($peoples);
  135. // foreach ($peoples as &$v) {
  136. $this->save(['other_follow_time' => $time, 'people' => $num],['id' => ['in',$peoples]]);
  137. // }
  138. }
  139. }
  140. /**
  141. * 查看客户信息
  142. */
  143. public function see($id)
  144. {
  145. $data = $this->alias('c')
  146. ->join('countries t','t.id=c.country','left')
  147. ->where('c.id',$id)
  148. ->field('c.*,t.country c_name')
  149. ->find()
  150. ->toArray();
  151. return $data;
  152. }
  153. /**
  154. * 批量导入储存所有数据并且处理建档人数
  155. */
  156. public function add_all($data)
  157. {
  158. foreach ($data as &$v)
  159. {
  160. Db::name('customer')->insert($v);
  161. $v['type'] = ','.$v['type'].',';
  162. $v['product'] = ','.$v['product'].',';
  163. $id = $this->getLastInsID();
  164. $ranhdata[] = [
  165. 'c_id' => $id,
  166. 'admin_id' => session('uid'),
  167. 'create_time' => time(),
  168. 'type' => 0,
  169. ];
  170. // 查出所有对此用户建档的id
  171. $jiandang = Db::name('customer')->where('email',$v['email'])->column('id');
  172. $num = count($jiandang);
  173. $ids = implode(',',$jiandang);
  174. $this->where('id','in',$ids)->update([
  175. 'other_follow_time' => time(),
  176. 'other_follow_num' => $num,
  177. ]);
  178. // 建档人数id
  179. $ids = Db::name('customer')->whereOr('name',$v['name'])->whereOr('email',$v['email'])->column('id');
  180. $count = count($ids);
  181. // 更新建档人数
  182. $ids_str = implode(',',$ids);
  183. Db::name('customer')->where('id','in',$ids)->update(['people' => $count]);
  184. }
  185. Db::name('ranking')->insertAll($ranhdata);
  186. }
  187. /***
  188. * 操作员修改数据写入日志
  189. */
  190. public function caozuo_update($param)
  191. {
  192. $status = 100;
  193. $msg = '修改失败!';
  194. $customer = $this->where('id',$param['id'])->find()->toArray();
  195. if (isset($param['name'])){
  196. $upd_name = $this->where('id',$param['id'])->update(['name' => $param['name']]);
  197. if ($upd_name) {
  198. writelog('操作员'.session('nickname').'修改客户'.$customer['name'].'的用户名为'.$param['name'],200);
  199. $status = 200;
  200. $msg = '修改成功!';
  201. }
  202. }
  203. if (isset($param['email'])){
  204. $upd_email = $this->where('id',$param['id'])->update(['email' => $param['email']]);
  205. if ($upd_email) {
  206. writelog('操作员'.session('nickname').'修改客户'.$customer['name'].'的邮箱为'.$param['email'],200);
  207. $status = 200;
  208. $msg = '修改成功!';
  209. }
  210. }
  211. if (isset($param['company'])){
  212. $upd_company = $this->where('id',$param['id'])->update(['company' => $param['company']]);
  213. if ($upd_company) {
  214. writelog('操作员'.session('nickname').'修改客户'.$customer['name'].'的公司为'.$param['company'],200);
  215. $status = 200;
  216. $msg = '修改成功!';
  217. }
  218. }
  219. if (isset($param['website'])){
  220. $upd_website = $this->where('id',$param['id'])->update(['website' => $param['website']]);
  221. if ($upd_website) {
  222. writelog('操作员'.session('nickname').'修改客户'.$customer['name'].'的网站为'.$param['website'],200);
  223. $status = 200;
  224. $msg = '修改成功!';
  225. }
  226. }
  227. if (isset($param['phone'])){
  228. $upd_phone = $this->where('id',$param['id'])->update(['phone' => $param['phone']]);
  229. if ($upd_phone) {
  230. writelog('操作员'.session('nickname').'修改客户'.$customer['name'].'的电话为'.$param['phone'],200);
  231. $status = 200;
  232. $msg = '修改成功!';
  233. }
  234. }
  235. return json(['code' => $status,'msg'=>$msg]);
  236. }
  237. /**
  238. * 邮件发送成功更新各种跟进状态
  239. */
  240. public function upd_follow($email,$id)
  241. {
  242. $customer = $this->where('id',$id)->find();
  243. $customerEmail = $this->where('email',$email)->where('id','neq',$id)->select()->toArray();
  244. if ($customer) {
  245. $this->where('id',$id)->update(['shang_follow_time' => $customer['follow_time'] , 'follow_time' => time()]);
  246. Db::name('customer')->where('id',$id)->setInc('follow_num',1);
  247. }
  248. if ($customerEmail) {
  249. foreach ($customerEmail as &$v) {
  250. Db::name('customer')->where('id',$v['id'])->update(['shang_other_follow_time' => $customer['other_follow_time'] , 'other_follow_time' => time()]);
  251. Db::name('customer')->where('id',$v['id'])->setInc('other_follow_num',1);
  252. }
  253. }
  254. }
  255. /**
  256. * 状态获取器
  257. */
  258. public function getStatusAttr($value)
  259. {
  260. $arr = ['0'=>'未联系',1=>'已联系',2=>'已成交',3=>'关联中'];
  261. return $arr[$value];
  262. }
  263. /**
  264. * @param $value
  265. * @return false|string
  266. * 时间获取器
  267. */
  268. public function getFollowTimeAttr($value)
  269. {
  270. return $value = date('Y-m-d H:i',$value);
  271. }
  272. /**
  273. * @param $value
  274. * @return false|string
  275. * 时间获取器
  276. */
  277. public function getOtherFollowTimeAttr($value)
  278. {
  279. return $value = date('Y-m-d H:i',$value);
  280. }
  281. }