RankingModel.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. use think\Db;
  5. class RankingModel extends Model
  6. {
  7. protected $name = 'ranking';
  8. protected $autoWriteTimestamp = false; // 开启自动写入时间戳
  9. /**
  10. * 设置记录表已回复
  11. */
  12. public function set_huifu($id)
  13. {
  14. $customer = CustomerModel::where('id',$id)->find(); // 查出用户信息
  15. $all_company = CustomerModel::where('company',$customer['company'])->select()->toArray();
  16. foreach ($all_company as $k=>$v) {
  17. // $rank = $this->where('c_id',$all_company[$k]['id'])->where('admin_id',$all_company[$k]['spread_id'])->find();
  18. $rank = $this->where('c_id',$all_company[$k]['id'])->find();
  19. if ($rank) {
  20. if ($rank['admin_id'] != $all_company[$k]['spread_id']) {
  21. Db::name('ranking')->where('id',$rank['id'])->update(['status' => 0]);
  22. Db::name('ranking')->insert(['c_id' => $v['id'], 'admin_id' => $v['spread_id'],'create_time'=>time(),'type' => 1]);
  23. }
  24. else{
  25. $this->where('id',$rank['id'])->update(['type' => 1,'create_time' => time()]);
  26. }
  27. } else {
  28. Db::name('ranking')->insert(['c_id' => $v['id'], 'admin_id' => $v['spread_id'],'create_time'=>time(),'type' => 1]);
  29. }
  30. }
  31. // 除此客户外查出相同邮箱的客户
  32. $email = CustomerModel::where('email',$customer['email'])->where('id','neq',$customer['id'])->where('status',0)->select();
  33. if ($email) {
  34. foreach ($email as &$v) {
  35. Db::name('customer')->where('id',$v['id'])->update(['status' => 3]);
  36. Db::name('admin')->where('id',$v['spread_id'])->setInc('lingzou_count',1);
  37. }
  38. }
  39. }
  40. /**
  41. * 设置记录表已成交
  42. */
  43. public function set_chengjiao($id)
  44. {
  45. $customer = CustomerModel::where('id',$id)->find(); // 查出用户信息
  46. $all_company = CustomerModel::where('company',$customer['company'])->select()->toArray();
  47. foreach ($all_company as $k=>$v) {
  48. $rank = $this->where('c_id',$all_company[$k]['id'])->find();
  49. if ($rank) {
  50. if ($rank['admin_id'] != $all_company[$k]['spread_id']) {
  51. Db::name('ranking')->where('id',$rank['id'])->update(['status' => 0]);
  52. Db::name('ranking')->insert(['c_id' => $v['id'], 'admin_id' => $v['spread_id'],'create_time'=>time(),'type' => 2]);
  53. }
  54. else{
  55. $this->where('id',$rank['id'])->update(['type' => 2,'create_time' => time()]);
  56. }
  57. } else {
  58. Db::name('ranking')->insert(['c_id' => $v['id'], 'admin_id' => $v['spread_id'],'create_time'=>time(),'type' => 2]);
  59. }
  60. // 除此客户外查出相同邮箱的客户
  61. $email = CustomerModel::where('email',$customer['email'])->where('id','neq',$customer['id'])->where('status',0)->select();
  62. if ($email) {
  63. foreach ($email as &$v) {
  64. // 设置被领走
  65. Db::name('customer')->where('id',$v['id'])->update(['status' => 3]);
  66. Db::name('admin')->where('id',$v['spread_id'])->setInc('lingzou_count',1);
  67. }
  68. }
  69. }
  70. }
  71. /**
  72. * 设置记录表已关联
  73. */
  74. public function setGuanlian($id)
  75. {
  76. $customer = CustomerModel::where('id',$id)->find(); // 查出用户信息
  77. $all_company = CustomerModel::where('company',$customer['company'])->select()->toArray();
  78. foreach ($all_company as $k=>$v) {
  79. $rank = $this->where('c_id',$all_company[$k]['id'])->find();
  80. if ($rank) {
  81. if ($rank['admin_id'] != $all_company[$k]['spread_id']) {
  82. Db::name('ranking')->where('id',$rank['id'])->update(['status' => 0]);
  83. Db::name('ranking')->insert(['c_id' => $v['id'], 'admin_id' => $v['spread_id'],'create_time'=>time(),'type' => 3]);
  84. }
  85. else{
  86. $this->where('id',$rank['id'])->update(['type' => 3,'create_time' => time()]);
  87. }
  88. } else {
  89. Db::name('ranking')->insert(['c_id' => $v['id'], 'admin_id' => $v['spread_id'],'create_time'=>time(),'type' => 3]);
  90. }
  91. // 除此客户外查出相同邮箱的客户
  92. $email = CustomerModel::where('email',$customer['email'])->where('id','neq',$customer['id'])->where('status',0)->select();
  93. if ($email) {
  94. foreach ($email as &$v) {
  95. // 设置被领走
  96. Db::name('customer')->where('id',$v['id'])->update(['status' => 3]);
  97. Db::name('admin')->where('id',$v['spread_id'])->setInc('lingzou_count',1);
  98. }
  99. }
  100. }
  101. }
  102. /**
  103. * 添加新建记录
  104. */
  105. public function new_customer($c_id,$admin_id)
  106. {
  107. $data = [
  108. 'c_id' => $c_id,
  109. 'admin_id' => $admin_id,
  110. 'create_time' => time(),
  111. 'type' => 0,
  112. ];
  113. $this->save($data);
  114. }
  115. /**
  116. * 放弃客户后设置记录为失效
  117. */
  118. public function giveup($ids,$admin_id)
  119. {
  120. $this->where('c_id','in',$ids)->where('admin_id',$admin_id)->update(['status'=>0]);
  121. }
  122. }