SupplierGoods.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <?php
  2. namespace app\operate\controller;
  3. use app\common\model\DatumIntro;
  4. use app\common\model\PlatformSwitch;
  5. use app\common\model\User;
  6. use library\Controller;
  7. use think\Db;
  8. /**
  9. * 供货商产品
  10. * Class SupplierGoods
  11. * @package app\mall\controller
  12. */
  13. class SupplierGoods extends Controller
  14. {
  15. /**
  16. * 绑定数据表
  17. * @var string
  18. */
  19. protected $table = 'SupplierGoods';
  20. /**
  21. * 供货商产品列表
  22. * @auth true
  23. * @menu true
  24. * @throws \think\Exception
  25. * @throws \think\db\exception\DataNotFoundException
  26. * @throws \think\db\exception\ModelNotFoundException
  27. * @throws \think\exception\DbException
  28. * @throws \think\exception\PDOException
  29. */
  30. public function index()
  31. {
  32. $this->title = '供货商产品列表';
  33. $supplier_id = input('get.supplier_id');
  34. $name = input('get.name');
  35. $company_id = input('get.company_id');
  36. $first_classify = input('get.first_classify');
  37. $second_classify = input('get.second_classify');
  38. $third_classify = input('get.third_classify');
  39. $this->supplier_id = $supplier_id;
  40. $this->supplier_list = \app\common\model\Supplier::getSupplierName(0);
  41. //$this->company_list = \app\common\model\Company::getCompanyName();
  42. $where = [];
  43. $where[] = ['a.is_deleted','=',0];
  44. if($supplier_id)$where[] = ['a.supplier_id','=',$supplier_id];
  45. if($company_id)$where[] = ['a.company_id','=',$company_id];
  46. if($third_classify)$where[] = ['a.third_classify','=',$third_classify];
  47. if($second_classify)$where[] = ['a.second_classify','=',$second_classify];
  48. if($first_classify)$where[] = ['a.first_classify','=',$first_classify];
  49. if($name)$where[] = ['a.name','like','%'.$name.'%'];
  50. $query = $this->_query($this->table)->where($where)->like('a.name')->alias('a')->field('a.*,b.title supplier_name ,c.title company_name');
  51. $query->leftJoin('Supplier b','b.id = a.supplier_id')->leftJoin('Company c','c.id = a.company_id');
  52. $query->order(' a.sort desc , a.id desc')->page();
  53. }
  54. /**
  55. * 数据列表处理
  56. * @auth true
  57. * @menu true
  58. * @param array $data
  59. * @throws \think\db\exception\DataNotFoundException
  60. * @throws \think\db\exception\ModelNotFoundException
  61. * @throws \think\exception\DbException
  62. */
  63. protected function _index_page_filter(&$data)
  64. {
  65. }
  66. /**
  67. * 添加供货商产品
  68. * @auth true
  69. * @menu true
  70. * @throws \think\Exception
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\ModelNotFoundException
  73. * @throws \think\exception\DbException
  74. * @throws \think\exception\PDOException
  75. */
  76. public function add()
  77. {
  78. $this->title = '添加供货商产品';
  79. $this->supplier_id = input('supplier_id');
  80. $this->_form($this->table, 'form');
  81. }
  82. /**
  83. * 编辑供货商产品
  84. * @auth true
  85. * @menu true
  86. * @throws \think\Exception
  87. * @throws \think\db\exception\DataNotFoundException
  88. * @throws \think\db\exception\ModelNotFoundException
  89. * @throws \think\exception\DbException
  90. * @throws \think\exception\PDOException
  91. */
  92. public function edit()
  93. {
  94. $this->title = '编辑供货商产品';
  95. $this->supplier_id = input('supplier_id');
  96. $this->_form($this->table, 'form');
  97. }
  98. /**
  99. * 启用
  100. * @auth true
  101. * @menu true
  102. * @throws \think\Exception
  103. * @throws \think\exception\PDOException
  104. */
  105. public function enable()
  106. {
  107. \app\common\model\SupplierGoods::where('id',input('id'))->update(['status'=>1]);
  108. \app\common\model\SupplierGoods::esAdd(input('id'));
  109. \app\common\model\TopSearch::saveData(input('id'),'supplier_goods');
  110. $this->success('已上架!');
  111. }
  112. /**
  113. * 禁用
  114. * @auth true
  115. * @menu true
  116. * @throws \think\Exception
  117. * @throws \think\db\exception\DataNotFoundException
  118. * @throws \think\db\exception\ModelNotFoundException
  119. * @throws \think\exception\DbException
  120. * @throws \think\exception\PDOException
  121. */
  122. public function forbidden()
  123. {
  124. \app\common\model\SupplierGoods::where('id',input('id'))->update(['status'=>0]);
  125. \app\common\model\SupplierGoods::esAdd(input('id'));
  126. \app\common\model\TopSearch::saveData(input('id'),'supplier_goods');
  127. $this->success('已下架!');
  128. }
  129. /**
  130. * 删除
  131. * @auth true
  132. * @menu true
  133. * @throws \think\Exception
  134. * @throws \think\exception\PDOException
  135. */
  136. public function del()
  137. {
  138. \app\common\model\SupplierGoods::where('id',input('id'))->update(['is_deleted'=>1]);
  139. \app\common\model\SupplierGoods::esAdd(input('id'));
  140. \app\common\model\TopSearch::saveData(input('id'),'supplier_goods');
  141. $this->success('已删除!');
  142. }
  143. /**
  144. * 删除
  145. * @auth true
  146. * @throws \think\Exception
  147. * @throws \think\exception\PDOException
  148. */
  149. public function remove()
  150. {
  151. $ids = input('id');
  152. foreach (explode(',',$ids) as $id) {
  153. \app\common\model\SupplierGoods::where('id',$id)->update(['is_deleted'=>1]);
  154. \app\common\model\SupplierGoods::esAdd($id);
  155. \app\common\model\TopSearch::saveData($id,'supplier_goods');
  156. }
  157. $this->success('已删除!');
  158. }
  159. /**
  160. * 表单数据处理
  161. * @auth true
  162. * @menu true
  163. * @param array $data
  164. */
  165. protected function _form_filter(&$data)
  166. {
  167. if($this->request->isGet())
  168. {
  169. $third_classify = input('third_classify');
  170. if($third_classify) {
  171. if($third_classify) $data['third_classify'] = $third_classify;
  172. $third_info = \app\common\model\SupplierCate::where('id',$third_classify)->find()->toArray();
  173. if($third_classify) $data['second_classify'] = $third_info['pid'];
  174. $data['first_classify'] = \app\common\model\SupplierCate::where('id',$data['second_classify'])->value('pid');
  175. }
  176. $supplier_id = input('supplier_id');
  177. if($supplier_id) $data['supplier_id'] = $supplier_id;
  178. }
  179. // 视频
  180. $this->video_list = \app\common\model\VideoIntro::with('videoArr')
  181. ->where(['is_deleted'=>0])->order('id desc')
  182. ->select()->toArray();
  183. // 文章列表
  184. $this->article_list = \app\common\model\ArticleIntro::with('itemChildren')
  185. ->field('id,title')
  186. ->where(['is_deleted'=>0])->order('id desc')
  187. ->select()->toArray();
  188. // 资料
  189. $this->datum_list = DatumIntro::with('urlArr')
  190. ->where(['is_deleted'=>0])->order('id desc')
  191. ->select()->toArray();
  192. $data['create_at'] = date('Y-m-d H:i:s');
  193. $this->supplier_list = \app\common\model\Supplier::getSupplierName(0);
  194. // $this->company_list = \app\common\model\Company::getCompanyName();
  195. $all_cate = \app\common\model\SupplierCate::where(['is_deleted'=>0])->order('sort desc ,id desc')->select();
  196. $this->goods_cate = make_tree($all_cate);
  197. if($this->request->isPost()) {
  198. list($post) = [$this->request->post()];
  199. if(!$data['release_time']) $data['release_time'] = date("Y-m-d H:i:s");
  200. if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
  201. if(!empty($post['phone'])) {
  202. $user_id = User::where('phone|email',$post['phone'])->value('id');
  203. if(!$user_id) $this->error('账号未注册');
  204. $data['user_id'] = $user_id;
  205. }else{
  206. $data['user_id'] = '';
  207. }
  208. }
  209. }
  210. protected function _form_result($id)
  211. {
  212. if($this->request->action() == 'add'){
  213. $supplier_name = \app\common\model\Supplier::where('id',$this->request->post('supplier_id'))->value('title');
  214. if($supplier_name)PlatformSwitch::followMsg(5,$this->request->post('supplier_id'),$supplier_name,$this->request->post('title'),$id);
  215. }
  216. \app\common\model\SupplierGoods::esAdd($id);
  217. \app\common\model\TopSearch::saveData($id,'supplier_goods');
  218. $this->success('操作成功', 'javascript:history.back()');
  219. }
  220. }