StoreGoods.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <?php
  2. namespace app\mall\controller;
  3. use app\common\model\GoodsSeason;
  4. use app\common\model\GoodsTerritory;
  5. use app\common\model\User;
  6. use library\Controller;
  7. use think\Db;
  8. use app\common\model\GoodsCate;
  9. use app\common\model\StoreGoodsItem;
  10. use library\tools\Data;
  11. /**
  12. * 商品管理
  13. * Class StoreGoods
  14. * @package app\mall\controller
  15. */
  16. class StoreGoods extends Controller
  17. {
  18. /**
  19. * 绑定数据表
  20. * @var string
  21. */
  22. protected $table = 'StoreGoods';
  23. /**
  24. * 商品列表
  25. * @auth true
  26. * @menu true
  27. * @throws \think\Exception
  28. * @throws \think\db\exception\DataNotFoundException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @throws \think\exception\DbException
  31. * @throws \think\exception\PDOException
  32. */
  33. public function index()
  34. {
  35. $this->title = '商品管理';
  36. $where = [];
  37. $where['is_deleted'] = 0;
  38. $query = $this->_query($this->table)->where($where)->like('name');
  39. $query->dateBetween('create_at')->order('sort desc , id asc')->page();
  40. }
  41. /**
  42. * 数据列表处理
  43. * @auth true
  44. * @menu true
  45. * @param array $data
  46. * @throws \think\db\exception\DataNotFoundException
  47. * @throws \think\db\exception\ModelNotFoundException
  48. * @throws \think\exception\DbException
  49. */
  50. protected function _index_page_filter(&$data)
  51. {
  52. $this->clist = GoodsCate::getCateTree();
  53. $list = Db::name('StoreGoodsItem')->where('status', '1')->whereIn('goods_id', array_unique(array_column($data, 'id')))->select();
  54. foreach ($data as &$vo) {
  55. list($vo['list'], $vo['cate']) = [[], []];
  56. foreach ($list as $goods){
  57. if ($goods['goods_id'] === $vo['id']) array_push($vo['list'], $goods);
  58. }
  59. }
  60. }
  61. /**
  62. * 添加商品
  63. * @auth true
  64. * @menu true
  65. * @throws \think\Exception
  66. * @throws \think\db\exception\DataNotFoundException
  67. * @throws \think\db\exception\ModelNotFoundException
  68. * @throws \think\exception\DbException
  69. * @throws \think\exception\PDOException
  70. */
  71. public function add()
  72. {
  73. $this->title = '添加商品';
  74. $this->isAddMode = '1';
  75. $this->_form($this->table, 'form');
  76. }
  77. /**
  78. * 编辑商品
  79. * @auth true
  80. * @menu true
  81. * @throws \think\Exception
  82. * @throws \think\db\exception\DataNotFoundException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. * @throws \think\exception\DbException
  85. * @throws \think\exception\PDOException
  86. */
  87. function edit()
  88. {
  89. $this->title = '编辑商品';
  90. $this->isAddMode = '0';
  91. $this->_form($this->table, 'form');
  92. }
  93. /**
  94. * 表单数据处理
  95. * @param array $data
  96. */
  97. protected function _form_filter(&$data)
  98. {
  99. if($this->request->isGet()){
  100. $fields = 'goods_spec,goods_id,status,original_price,sell_price,virtual,goods_no sku,weight,spec_cover';
  101. $defaultValues = [];
  102. if(isset_full($data,'id')) $defaultValues = Db::name('StoreGoodsItem')->where(['goods_id' => $data['id']])->column($fields);
  103. $this->defaultValues = json_encode($defaultValues, JSON_UNESCAPED_UNICODE);
  104. $this->goods_cate = GoodsCate::getCateTree();
  105. $this->express= Db::name('freight_template')->select();
  106. }
  107. // 添加或编辑商品
  108. if($this->request->isPost() && in_array($this->request->action(),['add','edit'])){
  109. list($data) = [$this->request->post()];
  110. if((isset($data['release_time']) && !$data['release_time']) || !isset($data['release_time'])) $data['release_time'] = date("Y-m-d H:i:s");
  111. if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
  112. $check_price = true;
  113. $lists = json_decode($data['lists'], true);
  114. foreach ($lists as $ke=>&$vo){
  115. if( $vo[0]['sell_price'] <=0 )$check_price = false;
  116. if($data['spec_cover'][$ke]) $vo[0]['spec_cover'] = $data['spec_cover'][$ke];
  117. }
  118. if(!$check_price) $this->error('价格设置有误');
  119. if(!empty($data['phone'])) {
  120. $user_id = User::where('phone|email',$data['phone'])->value('id');
  121. if(!$user_id) $this->error('该账号未注册');
  122. $data['user_id'] = $user_id;
  123. }else{
  124. $data['user_id'] = '';
  125. }
  126. }
  127. }
  128. /**
  129. * 商品上架
  130. * @auth true
  131. * @menu true
  132. * @throws \think\Exception
  133. * @throws \think\db\exception\DataNotFoundException
  134. * @throws \think\db\exception\ModelNotFoundException
  135. * @throws \think\exception\DbException
  136. * @throws \think\exception\PDOException
  137. */
  138. public function up()
  139. {
  140. $id =input('id');
  141. \app\common\model\StoreGoods::where('id',$id)->update(['status'=>1,'is_edit'=>0]);
  142. \app\common\model\StoreGoods::esAdd($id);
  143. \app\common\model\TopSearch::saveData($id,'goods');
  144. $this->success('操作成功!');
  145. }
  146. /**
  147. * 商品下架
  148. * @auth true
  149. * @menu true
  150. * @throws \think\Exception
  151. * @throws \think\db\exception\DataNotFoundException
  152. * @throws \think\db\exception\ModelNotFoundException
  153. * @throws \think\exception\DbException
  154. * @throws \think\exception\PDOException
  155. */
  156. public function down()
  157. {
  158. $id =input('id');
  159. \app\common\model\StoreGoods::where('id',$id)->update(['status'=>0]);
  160. \app\common\model\StoreGoods::esAdd($id);
  161. \app\common\model\TopSearch::saveData($id,'goods');
  162. $this->success('操作成功!');
  163. }
  164. /**
  165. * 商品删除
  166. * @auth true
  167. * @menu true
  168. * @throws \think\Exception
  169. * @throws \think\db\exception\DataNotFoundException
  170. * @throws \think\db\exception\ModelNotFoundException
  171. * @throws \think\exception\DbException
  172. * @throws \think\exception\PDOException
  173. */
  174. public function remove()
  175. {
  176. $ids = input('id');
  177. foreach (explode(',',$ids) as $id) {
  178. \app\common\model\StoreGoods::where('id',$id)->update(['is_deleted'=>1]);
  179. \app\common\model\StoreGoods::esAdd($id);
  180. \app\common\model\TopSearch::saveData($id,'goods');
  181. }
  182. $this->success('已删除!');
  183. }
  184. /**
  185. * 商品库存入库
  186. * @auth true
  187. * @throws \think\Exception
  188. * @throws \think\db\exception\DataNotFoundException
  189. * @throws \think\db\exception\ModelNotFoundException
  190. * @throws \think\exception\DbException
  191. * @throws \think\exception\PDOException
  192. */
  193. public function stock()
  194. {
  195. if ($this->request->isGet()) {
  196. $goods_id = $this->request->get('id');
  197. $goods_info = Db::name('StoreGoods')->where(['id' => $goods_id])->find();
  198. empty($goods_info) && $this->error('无效的商品信息,请稍候再试!');
  199. $goods_info['list'] = Db::name('StoreGoodsItem')->where(['goods_id' => $goods_id])->select();
  200. $this->fetch('', ['vo' => $goods_info]);
  201. } else {
  202. list($post, $data) = [$this->request->post(), []];
  203. if (isset($post['id']) && isset($post['goods_id']) && is_array($post['goods_id'])) {
  204. foreach (array_keys($post['goods_id']) as $key) {
  205. if ($post['goods_number'][$key] > 0) array_push($data, [
  206. 'goods_id' => $post['goods_id'][$key],
  207. 'goods_spec' => $post['goods_spec'][$key],
  208. 'number_stock' => $post['goods_number'][$key],
  209. ]);
  210. }
  211. if (!empty($data)) {
  212. Db::name('GoodsStock')->insertAll($data);
  213. foreach ($data as $dv) {
  214. Db::name('StoreGoodsItem')->where(['goods_id'=>$dv['goods_id'],'goods_spec'=>$dv['goods_spec']])->setInc('stock',$dv['number_stock']);
  215. Db::name('StoreGoodsItem')->where(['goods_id'=>$dv['goods_id'],'goods_spec'=>$dv['goods_spec']])->setInc('base_stock',$dv['number_stock']);
  216. }
  217. Db::name('StoreGoods')->where('id',$post['id'])->setInc('stock',array_sum(array_column($data,'number_stock')));
  218. Db::name('StoreGoods')->where('id',$post['id'])->setInc('base_stock',array_sum(array_column($data,'number_stock')));
  219. $this->success('商品信息入库成功!');
  220. }
  221. }
  222. $this->error('没有需要商品入库的数据!');
  223. }
  224. }
  225. /**
  226. * 商品参数设置
  227. * @auth true
  228. * @throws \think\Exception
  229. * @throws \think\db\exception\DataNotFoundException
  230. * @throws \think\db\exception\ModelNotFoundException
  231. * @throws \think\exception\DbException
  232. * @throws \think\exception\PDOException
  233. */
  234. public function param()
  235. {
  236. if ($this->request->isGet()) {
  237. $goods_id = $this->request->get('id');
  238. $goods_info = Db::name('StoreGoods')->where(['id' => $goods_id])->find();
  239. empty($goods_info) && $this->error('无效的商品信息,请稍候再试!');
  240. $param = Db::name('goods_param')->where('goods_id',$goods_id)->find();
  241. $param_set = !$param ? [['title'=>'','value'=>'']]:json_decode($param['goods_param'],true);
  242. $this->fetch('', ['goods_info' => $goods_info,'param_set'=>$param_set]);
  243. }else{
  244. $goods_id = input('post.goods_id');
  245. $title_arr= input('post.title');
  246. $value_arr= input('post.value');
  247. if(empty($title_arr)) $this->error('请设置商品参数');
  248. $param_post = [];
  249. foreach ($title_arr as $k=>$t){
  250. $param_post[] = ['title'=>$t,'value'=>$value_arr[$k]];
  251. }
  252. Data::save('GoodsParam',['goods_id'=>$goods_id,'goods_param'=>json_encode($param_post)],'goods_id',['goods_id'=>$goods_id]);
  253. $this->success('保存成功!');
  254. }
  255. }
  256. /**
  257. * 添加完成商品之后逻辑处理
  258. * @param $result
  259. */
  260. protected function _form_result($result)
  261. {
  262. if ($result && $this->request->isPost() && in_array($this->request->action(),['add','edit'])) {
  263. list($data) = [$this->request->post()];
  264. $data['id'] = $result;
  265. $low_price = 0;
  266. foreach (json_decode($data['lists'], true) as $ko=>$vo){
  267. if($low_price == 0 || $vo[0]['sell_price'] < $low_price )$low_price = $vo[0]['sell_price'];
  268. Data::save('StoreGoodsItem', [
  269. 'goods_id' => $data['id'],
  270. 'spec_cover' => $data['spec_cover'][$ko] ? $data['spec_cover'][$ko] : $vo[0]['spec_cover'],
  271. 'goods_spec' => $vo[0]['key'],
  272. 'goods_no' => $vo[0]['sku'],
  273. 'original_price' => $vo[0]['original_price'],
  274. 'sell_price' => $vo[0]['sell_price'],
  275. 'virtual' => $vo[0]['virtual'],
  276. 'status' => $vo[0]['status'] ? 1 : 0,
  277. 'weight' => $vo[0]['weight'] ? $vo[0]['weight'] : 0,
  278. ], 'goods_spec', ['goods_id' => $data['id']]);
  279. }
  280. Db::name('StoreGoods')->where(['id'=>$data['id']])->update(['low_price'=>$low_price]);
  281. \app\common\model\StoreGoods::esAdd($result);
  282. \app\common\model\TopSearch::saveData($result,'goods');
  283. $this->success('商品编辑成功!', 'javascript:history.back()');
  284. }
  285. }
  286. }