ShopGoods.php 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <?php
  2. namespace app\data\controller;
  3. use app\data\service\GoodsService;
  4. use think\admin\Controller;
  5. use think\admin\extend\CodeExtend;
  6. /**
  7. * 商品数据管理
  8. * Class ShopGoods
  9. * @package app\data\controller
  10. */
  11. class ShopGoods extends Controller
  12. {
  13. /**
  14. * 绑定数据表
  15. * @var string
  16. */
  17. private $table = 'ShopGoods';
  18. /**
  19. * 最大分类级别
  20. * @var integer
  21. */
  22. protected $cateLevel;
  23. /**
  24. * 控制器初始化
  25. */
  26. protected function initialize()
  27. {
  28. $this->cateLevel = GoodsService::instance()->getCateLevel();
  29. }
  30. /**
  31. * 商品数据管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public function index()
  39. {
  40. $this->title = '商品数据管理';
  41. $query = $this->_query($this->table);
  42. // 加载对应数据
  43. $this->type = $this->request->get('type', 'index');
  44. if ($this->type === 'index') $query->where(['deleted' => 0]);
  45. elseif ($this->type === 'recycle') $query->where(['deleted' => 1]);
  46. else $this->error("无法加载 {$this->type} 数据列表!");
  47. // 列表排序并显示
  48. $query->like('code,name,mark')->equal('status,cate');
  49. $query->order('sort desc,id desc')->page();
  50. }
  51. /**
  52. * 商品选择器
  53. * @login true
  54. * @throws \think\db\exception\DataNotFoundException
  55. * @throws \think\db\exception\DbException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. */
  58. public function select()
  59. {
  60. $query = $this->_query($this->table);
  61. $query->equal('status,cate')->like('code,name,mark');
  62. $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
  63. }
  64. /**
  65. * 数据列表处理
  66. * @param array $data
  67. * @throws \think\db\exception\DataNotFoundException
  68. * @throws \think\db\exception\DbException
  69. * @throws \think\db\exception\ModelNotFoundException
  70. */
  71. protected function _page_filter(array &$data)
  72. {
  73. $this->marks = GoodsService::instance()->getMarkList();
  74. $this->clist = GoodsService::instance()->getCateList('arr2table');
  75. $clist = $this->app->db->name('ShopGoodsCate')->whereIn('id', array_column($data, 'cate'))->column('pid,name,status', 'id');
  76. foreach ($data as &$vo) {
  77. $vo['cate'] = $clist[$vo['cate']] ?? $vo['cate'];
  78. $vo['mark'] = str2arr($vo['mark'] ?: '', ',', $this->marks);
  79. }
  80. }
  81. /**
  82. * 添加商品数据
  83. * @auth true
  84. * @throws \think\db\exception\DataNotFoundException
  85. * @throws \think\db\exception\DbException
  86. * @throws \think\db\exception\ModelNotFoundException
  87. */
  88. public function add()
  89. {
  90. $this->mode = 'add';
  91. $this->title = '添加商品数据';
  92. $this->_form($this->table, 'form', 'code');
  93. }
  94. /**
  95. * 编辑商品数据
  96. * @auth true
  97. * @throws \think\db\exception\DataNotFoundException
  98. * @throws \think\db\exception\DbException
  99. * @throws \think\db\exception\ModelNotFoundException
  100. */
  101. public function edit()
  102. {
  103. $this->mode = 'edit';
  104. $this->title = '编辑商品数据';
  105. $this->_form($this->table, 'form', 'code');
  106. }
  107. /**
  108. * 复制编辑商品
  109. * @auth true
  110. * @throws \think\db\exception\DataNotFoundException
  111. * @throws \think\db\exception\DbException
  112. * @throws \think\db\exception\ModelNotFoundException
  113. */
  114. public function copy()
  115. {
  116. $this->mode = 'copy';
  117. $this->title = '复制编辑商品';
  118. $this->_form($this->table, 'form', 'code');
  119. }
  120. /**
  121. * 表单数据处理
  122. * @param array $data
  123. */
  124. protected function _copy_form_filter(array &$data)
  125. {
  126. if ($this->request->isPost()) {
  127. $data['code'] = CodeExtend::uniqidNumber(14, 'G');
  128. }
  129. }
  130. /**
  131. * 表单数据处理
  132. * @param array $data
  133. * @throws \think\db\exception\DataNotFoundException
  134. * @throws \think\db\exception\DbException
  135. * @throws \think\db\exception\ModelNotFoundException
  136. */
  137. protected function _form_filter(array &$data)
  138. {
  139. if (empty($data['code'])) {
  140. $data['code'] = CodeExtend::uniqidNumber(14, 'G');
  141. }
  142. if ($this->request->isGet()) {
  143. $data['mark'] = str2arr($data['mark'] ?? '');
  144. $this->marks = GoodsService::instance()->getMarkList();
  145. $this->cates = GoodsService::instance()->getCateList('arr2table');
  146. $this->levels = $this->app->db->name('DataUserLevel')->where(['status' => 1])->order('number asc,id desc')->select()->toArray();
  147. $this->trucks = $this->app->db->name('ShopTruckTemplate')->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc')->column('code,name');
  148. $this->discounts = $this->app->db->name('DataUserDiscount')->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc')->select()->toArray();
  149. // 商品规格处理
  150. $fields = 'goods_sku `sku`,goods_code,goods_spec `key`,price_selling `selling`,price_market `market`,number_virtual `virtual`,number_express `express`,reward_balance `balance`,reward_integral `integral`,status';
  151. $data['data_items'] = json_encode($this->app->db->name('ShopGoodsItem')->where(['goods_code' => $data['code']])->column($fields, 'goods_spec'), JSON_UNESCAPED_UNICODE);
  152. } elseif ($this->request->isPost()) {
  153. if (empty($data['cover'])) $this->error('商品图片不能为空!');
  154. if (empty($data['slider'])) $this->error('轮播图不能为空!');
  155. // 商品规格保存
  156. [$count, $items] = [0, array_column(json_decode($data['data_items'], true), 0)];
  157. foreach ($items as $item) $count += intval($item['status']);
  158. if (empty($count)) $this->error('无效的的商品价格信息!');
  159. $data['mark'] = arr2str($data['mark'] ?? []);
  160. if (empty($data['price_market'])) $data['price_market'] = min(array_column($items, 'market'));
  161. if (empty($data['price_selling'])) $data['price_selling'] = min(array_column($items, 'selling'));
  162. $this->app->db->name('ShopGoodsItem')->where(['goods_code' => $data['code']])->update(['status' => 0]);
  163. foreach ($items as $item) data_save('ShopGoodsItem', [
  164. 'goods_sku' => $item['sku'],
  165. 'goods_spec' => $item['key'],
  166. 'goods_code' => $data['code'],
  167. 'price_market' => $item['market'],
  168. 'price_selling' => $item['selling'],
  169. 'number_virtual' => $item['virtual'],
  170. 'number_express' => $item['express'],
  171. 'reward_balance' => $item['balance'],
  172. 'reward_integral' => $item['integral'],
  173. 'status' => $item['status'] ? 1 : 0,
  174. ], 'goods_spec', [
  175. 'goods_code' => $data['code'],
  176. ]);
  177. }
  178. }
  179. /**
  180. * 表单结果处理
  181. * @param boolean $result
  182. * @throws \think\db\exception\DataNotFoundException
  183. * @throws \think\db\exception\DbException
  184. * @throws \think\db\exception\ModelNotFoundException
  185. */
  186. protected function _form_result(bool $result)
  187. {
  188. if ($result && $this->request->isPost()) {
  189. GoodsService::instance()->syncStock(input('code'));
  190. $this->success('商品编辑成功!', 'javascript:history.back()');
  191. }
  192. }
  193. /**
  194. * 商品库存入库
  195. * @auth true
  196. * @throws \think\db\exception\DataNotFoundException
  197. * @throws \think\db\exception\DbException
  198. * @throws \think\db\exception\ModelNotFoundException
  199. */
  200. public function stock()
  201. {
  202. $map = $this->_vali(['code.require' => '商品编号不能为空哦!']);
  203. if ($this->request->isGet()) {
  204. $list = $this->app->db->name('ShopGoods')->where($map)->select()->toArray();
  205. if (empty($list)) $this->error('无效的商品数据,请稍候再试!');
  206. [$this->vo] = GoodsService::instance()->buildItemData($list);
  207. $this->fetch();
  208. } else {
  209. [$data, $post, $batch] = [[], $this->request->post(), CodeExtend::uniqidDate(12, 'B')];
  210. if (isset($post['goods_code']) && is_array($post['goods_code'])) {
  211. foreach (array_keys($post['goods_code']) as $key) {
  212. if ($post['goods_stock'][$key] > 0) $data[] = [
  213. 'batch_no' => $batch,
  214. 'goods_code' => $post['goods_code'][$key],
  215. 'goods_spec' => $post['goods_spec'][$key],
  216. 'goods_stock' => $post['goods_stock'][$key],
  217. ];
  218. }
  219. if (!empty($data)) {
  220. $this->app->db->name('ShopGoodsStock')->insertAll($data);
  221. GoodsService::instance()->syncStock($map['code']);
  222. $this->success('商品数据入库成功!');
  223. }
  224. }
  225. $this->error('没有需要商品入库的数据!');
  226. }
  227. }
  228. /**
  229. * 商品上下架
  230. * @auth true
  231. * @throws \think\db\exception\DbException
  232. */
  233. public function state()
  234. {
  235. $this->_save($this->table, $this->_vali([
  236. 'status.in:0,1' => '状态值范围异常!',
  237. 'status.require' => '状态值不能为空!',
  238. ]), 'code');
  239. }
  240. /**
  241. * 删除商品数据
  242. * @auth true
  243. * @throws \think\db\exception\DbException
  244. */
  245. public function remove()
  246. {
  247. $this->_save($this->table, $this->_vali([
  248. 'deleted.in:0,1' => '状态值范围异常!',
  249. 'deleted.require' => '状态值不能为空!',
  250. ]), 'code');
  251. }
  252. }