Goods.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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. */
  101. public function add()
  102. {
  103. $this->title = '添加商品信息';
  104. $this->isAddMode = '1';
  105. $this->_form($this->table, 'form');
  106. }
  107. /**
  108. * 编辑商品信息
  109. * @auth true
  110. */
  111. public function edit()
  112. {
  113. $this->title = '编辑商品信息';
  114. $this->isAddMode = '0';
  115. $this->_form($this->table, 'form');
  116. }
  117. /**
  118. * 表单数据处理
  119. * @param array $data
  120. * @throws \think\Exception
  121. * @throws \think\db\exception\DataNotFoundException
  122. * @throws \think\db\exception\ModelNotFoundException
  123. * @throws \think\exception\DbException
  124. * @throws \think\exception\PDOException
  125. */
  126. protected function _form_filter(&$data)
  127. {
  128. // 生成商品ID
  129. if (empty($data['id'])) $data['id'] = Data::uniqidNumberCode(10);
  130. if ($this->request->isGet()) {
  131. $fields = 'goods_spec,goods_id,status,price_market market,price_selling selling,number_virtual `virtual`,number_express express';
  132. $defaultValues = Db::name('StoreGoodsList')->where(['goods_id' => $data['id']])->column($fields);
  133. $this->defaultValues = json_encode($defaultValues, JSON_UNESCAPED_UNICODE);
  134. $this->cates = Db::name('StoreGoodsCate')->where(['is_deleted' => '0', 'status' => '1'])->order('sort desc,id desc')->select();
  135. } elseif ($this->request->isPost()) {
  136. Db::name('StoreGoodsList')->where(['goods_id' => $data['id']])->update(['status' => '0']);
  137. foreach (json_decode($data['lists'], true) as $vo) Data::save('StoreGoodsList', [
  138. 'goods_id' => $data['id'],
  139. 'goods_spec' => $vo[0]['key'],
  140. 'price_market' => $vo[0]['market'],
  141. 'price_selling' => $vo[0]['selling'],
  142. 'number_virtual' => $vo[0]['virtual'],
  143. 'number_express' => $vo[0]['express'],
  144. 'status' => $vo[0]['status'] ? 1 : 0,
  145. ], 'goods_spec', ['goods_id' => $data['id']]);
  146. }
  147. }
  148. /**
  149. * 表单结果处理
  150. * @param boolean $result
  151. */
  152. protected function _form_result($result)
  153. {
  154. if ($result && $this->request->isPost()) {
  155. $this->success('商品编辑成功!', 'javascript:history.back()');
  156. }
  157. }
  158. /**
  159. * 禁用商品信息
  160. * @auth true
  161. */
  162. public function forbid()
  163. {
  164. $this->_save($this->table, ['status' => '0']);
  165. }
  166. /**
  167. * 启用商品信息
  168. * @auth true
  169. */
  170. public function resume()
  171. {
  172. $this->_save($this->table, ['status' => '1']);
  173. }
  174. /**
  175. * 删除商品信息
  176. * @auth true
  177. */
  178. public function remove()
  179. {
  180. $this->_delete($this->table);
  181. }
  182. }