Goods.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. use library\tools\Data;
  17. use think\Db;
  18. /**
  19. * 商品信息管理
  20. * Class Goods
  21. * @package app\store\controller
  22. */
  23. class Goods extends Controller
  24. {
  25. /**
  26. * 指定数据表
  27. * @var string
  28. */
  29. protected $table = 'StoreGoods';
  30. /**
  31. * 商品信息管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '商品信息管理';
  43. $query = $this->_query($this->table)->equal('status,cate_id')->like('title');
  44. $query->where(['is_deleted' => '0'])->order('sort desc,id desc')->page();
  45. }
  46. /**
  47. * 数据列表处理
  48. * @param array $data
  49. * @throws \think\db\exception\DataNotFoundException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. * @throws \think\exception\DbException
  52. */
  53. protected function _index_page_filter(&$data)
  54. {
  55. $this->clist = Db::name('StoreGoodsCate')->where(['is_deleted' => '0', 'status' => '1'])->select();
  56. $list = Db::name('StoreGoodsList')->where('status', '1')->whereIn('goods_id', array_unique(array_column($data, 'id')))->select();
  57. foreach ($data as &$vo) {
  58. list($vo['list'], $vo['cate']) = [[], []];
  59. foreach ($list as $goods) if ($goods['goods_id'] === $vo['id']) array_push($vo['list'], $goods);
  60. foreach ($this->clist as $cate) if ($cate['id'] === $vo['cate_id']) $vo['cate'] = $cate;
  61. }
  62. }
  63. /**
  64. * 商品库存入库
  65. * @auth true
  66. * @throws \think\Exception
  67. * @throws \think\db\exception\DataNotFoundException
  68. * @throws \think\db\exception\ModelNotFoundException
  69. * @throws \think\exception\DbException
  70. * @throws \think\exception\PDOException
  71. */
  72. public function stock()
  73. {
  74. if ($this->request->isGet()) {
  75. $GoodsId = $this->request->get('id');
  76. $goods = Db::name('StoreGoods')->where(['id' => $GoodsId])->find();
  77. empty($goods) && $this->error('无效的商品信息,请稍候再试!');
  78. $goods['list'] = Db::name('StoreGoodsList')->where(['goods_id' => $GoodsId])->select();
  79. $this->fetch('', ['vo' => $goods]);
  80. } else {
  81. list($post, $data) = [$this->request->post(), []];
  82. if (isset($post['id']) && isset($post['goods_id']) && is_array($post['goods_id'])) {
  83. foreach (array_keys($post['goods_id']) as $key) if ($post['goods_number'][$key] > 0) array_push($data, [
  84. 'goods_id' => $post['goods_id'][$key],
  85. 'goods_spec' => $post['goods_spec'][$key],
  86. 'number_stock' => $post['goods_number'][$key],
  87. ]);
  88. if (!empty($data)) {
  89. Db::name('StoreGoodsStock')->insertAll($data);
  90. \app\store\service\GoodsService::syncStock($post['id']);
  91. $this->success('商品信息入库成功!');
  92. }
  93. }
  94. $this->error('没有需要商品入库的数据!');
  95. }
  96. }
  97. /**
  98. * 添加商品信息
  99. * @auth true
  100. * @throws \think\Exception
  101. * @throws \think\db\exception\DataNotFoundException
  102. * @throws \think\db\exception\ModelNotFoundException
  103. * @throws \think\exception\DbException
  104. * @throws \think\exception\PDOException
  105. */
  106. public function add()
  107. {
  108. $this->title = '添加商品信息';
  109. $this->isAddMode = '1';
  110. $this->_form($this->table, 'form');
  111. }
  112. /**
  113. * 编辑商品信息
  114. * @auth true
  115. * @throws \think\Exception
  116. * @throws \think\db\exception\DataNotFoundException
  117. * @throws \think\db\exception\ModelNotFoundException
  118. * @throws \think\exception\DbException
  119. * @throws \think\exception\PDOException
  120. */
  121. public function edit()
  122. {
  123. $this->title = '编辑商品信息';
  124. $this->isAddMode = '0';
  125. $this->_form($this->table, 'form');
  126. }
  127. /**
  128. * 表单数据处理
  129. * @param array $data
  130. * @throws \think\Exception
  131. * @throws \think\db\exception\DataNotFoundException
  132. * @throws \think\db\exception\ModelNotFoundException
  133. * @throws \think\exception\DbException
  134. * @throws \think\exception\PDOException
  135. */
  136. protected function _form_filter(&$data)
  137. {
  138. // 生成商品ID
  139. if (empty($data['id'])) $data['id'] = Data::uniqidNumberCode(14);
  140. if ($this->request->isGet()) {
  141. $fields = 'goods_spec,goods_id,status,price_market market,price_selling selling,number_virtual `virtual`,number_express express';
  142. $defaultValues = Db::name('StoreGoodsList')->where(['goods_id' => $data['id']])->column($fields);
  143. $this->defaultValues = json_encode($defaultValues, JSON_UNESCAPED_UNICODE);
  144. $this->cates = Db::name('StoreGoodsCate')->where(['is_deleted' => '0', 'status' => '1'])->order('sort desc,id desc')->select();
  145. } elseif ($this->request->isPost()) {
  146. if (empty($data['logo'])) $this->error('商品LOGO不能为空,请上传图片');
  147. if (empty($data['image'])) $this->error('商品展示图片不能为空,请上传图片');
  148. Db::name('StoreGoodsList')->where(['goods_id' => $data['id']])->update(['status' => '0']);
  149. foreach (json_decode($data['lists'], true) as $vo) Data::save('StoreGoodsList', [
  150. 'goods_id' => $data['id'],
  151. 'goods_spec' => $vo[0]['key'],
  152. 'price_market' => $vo[0]['market'],
  153. 'price_selling' => $vo[0]['selling'],
  154. 'number_virtual' => $vo[0]['virtual'],
  155. 'number_express' => $vo[0]['express'],
  156. 'status' => $vo[0]['status'] ? 1 : 0,
  157. ], 'goods_spec', ['goods_id' => $data['id']]);
  158. }
  159. }
  160. /**
  161. * 表单结果处理
  162. * @param boolean $result
  163. */
  164. protected function _form_result($result)
  165. {
  166. if ($result && $this->request->isPost()) {
  167. $this->success('商品编辑成功!', 'javascript:history.back()');
  168. }
  169. }
  170. /**
  171. * 禁用商品信息
  172. * @auth true
  173. * @throws \think\Exception
  174. * @throws \think\exception\PDOException
  175. */
  176. public function forbid()
  177. {
  178. $this->_save($this->table, ['status' => '0']);
  179. }
  180. /**
  181. * 启用商品信息
  182. * @auth true
  183. * @throws \think\Exception
  184. * @throws \think\exception\PDOException
  185. */
  186. public function resume()
  187. {
  188. $this->_save($this->table, ['status' => '1']);
  189. }
  190. /**
  191. * 删除商品信息
  192. * @auth true
  193. * @throws \think\Exception
  194. * @throws \think\exception\PDOException
  195. */
  196. public function remove()
  197. {
  198. $this->_delete($this->table);
  199. }
  200. }