截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Goods.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\controller\goods;
  20. use app\common\basics\ShopBase;
  21. use app\common\enum\GoodsEnum;
  22. use app\common\model\goods\GoodsBrand;
  23. use app\common\model\goods\GoodsUnit;
  24. use app\common\model\Freight;
  25. use app\common\model\goods\Supplier;
  26. use app\common\model\goods\Goods as GoodsModel;
  27. use app\common\logic\CommonLogic;
  28. use app\common\server\ArrayServer;
  29. use app\common\server\JsonServer;
  30. use app\shop\logic\goods\GoodsLogic;
  31. use app\shop\validate\goods\GoodsMoreSpec;
  32. use app\shop\validate\goods\GoodsMoreSpecLists;
  33. use app\shop\validate\goods\GoodsOneSpec;
  34. use app\shop\validate\goods\GoodsStatusValidate;
  35. use app\shop\validate\goods\GoodsValidate;
  36. use app\admin\logic\goods\CategoryLogic as MallCategoryLogic;
  37. use app\shop\logic\goods\CategoryLogic as ShopCategoryLogic;
  38. /**
  39. * 商品管理
  40. * Class Goods
  41. * @package app\shop\controller\goods
  42. */
  43. class Goods extends ShopBase
  44. {
  45. /**
  46. * Notes: 列表
  47. * @author 段誉(2021/4/15 10:49)
  48. */
  49. public function lists()
  50. {
  51. if ($this->request->isAjax()) {
  52. $get = $this->request->get();
  53. $get['shop_id'] = $this->shop_id;
  54. return JsonServer::success('', GoodsLogic::lists($get));
  55. }
  56. $cate_list = MallCategoryLogic::categoryTreeeTree();
  57. $shop_cate_list = ShopCategoryLogic::listAll($this->shop_id);
  58. $statistics = GoodsLogic::statistics($this->shop_id);
  59. return view('', [
  60. 'statistics' => $statistics,
  61. 'cate_list' => $cate_list, //平台分类
  62. 'shop_cate_list' => $shop_cate_list, //商家分类
  63. 'goods_type' => GoodsEnum::getTypeDesc()
  64. ]);
  65. }
  66. /**
  67. * Notes: 添加
  68. * @author 段誉(2021/4/15 10:49)
  69. */
  70. public function add()
  71. {
  72. if ($this->request->isAjax()) {
  73. $post = $this->request->post();
  74. $post['shop_id'] = $this->shop_id;
  75. //主表验证
  76. (new GoodsValidate())->goCheck('add', ['shop_id' => $this->shop_id]);
  77. //单规格验证
  78. if ($post['spec_type'] == 1) {
  79. (new GoodsOneSpec())->goCheck();
  80. }
  81. //多规格验证
  82. $spec_lists = [];
  83. if ($post['spec_type'] == 2) {
  84. $spec_lists = $post;
  85. unset($spec_lists['goods_image']);
  86. unset($spec_lists['spec_id']);
  87. unset($spec_lists['spec_name']);
  88. unset($spec_lists['spec_values']);
  89. unset($spec_lists['spec_value_ids']);
  90. unset($spec_lists['delivery_type']);
  91. $spec_lists = ArrayServer::form_to_linear($spec_lists);
  92. //规格验证
  93. if (empty($spec_lists)) {
  94. return JsonServer::error('至少添加一个规格');
  95. }
  96. // 规格项及规格值是否重复验证
  97. (new GoodsMoreSpec())->goCheck();
  98. //规格商品列表验证
  99. foreach ($spec_lists as $v) {
  100. (new GoodsMoreSpecLists())->goCheck('', $v);
  101. }
  102. // 校验规格
  103. $total_stock = array_sum(array_column($spec_lists, 'stock'));
  104. if ($total_stock <= 0) {
  105. return JsonServer::error('至少有一个规格的库存大于0');
  106. }
  107. }
  108. // 添加商品
  109. $result = GoodsLogic::add($this->shop_id, $post, $spec_lists);
  110. if (true !== $result) {
  111. return JsonServer::error(GoodsLogic::getError() ?: '操作失败');
  112. }
  113. return JsonServer::success('添加成功');
  114. }
  115. return view('', [
  116. 'category_lists' => json_encode(MallCategoryLogic::getAllTree(), JSON_UNESCAPED_UNICODE),
  117. 'shop_category_lists' => json_encode(ShopCategoryLogic::listAll($this->shop_id), JSON_UNESCAPED_UNICODE),
  118. 'brand_lists' => json_encode(GoodsBrand::getNameColumn(), JSON_UNESCAPED_UNICODE),
  119. 'supplier_lists' => json_encode(Supplier::getNameColumn($this->shop_id), JSON_UNESCAPED_UNICODE),
  120. 'unit_lists' => json_encode(GoodsUnit::getNameColumn(), JSON_UNESCAPED_UNICODE),
  121. 'freight_lists' => json_encode(Freight::getNameColumn($this->shop_id), JSON_UNESCAPED_UNICODE),
  122. ]);
  123. }
  124. /**
  125. * @notes 编辑
  126. * @return \think\response\Json|\think\response\View
  127. * @author 段誉
  128. * @date 2021/4/15 10:49
  129. */
  130. public function edit()
  131. {
  132. if ($this->request->isAjax()) {
  133. $post = $this->request->post();
  134. $post['del'] = 0;
  135. $post['id'] = $post['goods_id'];
  136. //主表验证
  137. (new GoodsValidate())->goCheck(null, ['shop_id' => $this->shop_id]);
  138. //单规格验证
  139. if ($post['spec_type'] == 1) {
  140. (new GoodsOneSpec())->goCheck();
  141. }
  142. //多规格验证
  143. $spec_lists = [];
  144. if ($post['spec_type'] == 2) {
  145. $spec_lists = $post;
  146. unset($spec_lists['goods_image']);
  147. unset($spec_lists['spec_name']);
  148. unset($spec_lists['spec_values']);
  149. unset($spec_lists['spec_id']);
  150. unset($spec_lists['spec_value_ids']);
  151. unset($spec_lists['delivery_type']);
  152. $spec_lists = ArrayServer::form_to_linear($spec_lists);
  153. //规格验证
  154. if (empty($spec_lists)) {
  155. return JsonServer::error('至少添加一个规格');
  156. }
  157. // 规格项验证
  158. (new GoodsMoreSpec())->goCheck();
  159. //规格商品列表验证
  160. foreach ($spec_lists as $v) {
  161. (new GoodsMoreSpecLists())->goCheck('', $v);
  162. }
  163. // 校验规格
  164. $total_stock = array_sum(array_column($spec_lists, 'stock'));
  165. if ($total_stock <= 0) {
  166. return JsonServer::error('至少有一个规格的库存大于0');
  167. }
  168. }
  169. $result = GoodsLogic::edit($post, $spec_lists);
  170. if (true !== $result) {
  171. return JsonServer::error(GoodsLogic::getError() ?: '操作失败');
  172. }
  173. return JsonServer::success(GoodsLogic::getError() ? : '编辑成功');
  174. }
  175. $goods_id = $this->request->get('goods_id');
  176. return view('goods/goods/add', [
  177. 'category_lists' => json_encode(MallCategoryLogic::getAllTree(), JSON_UNESCAPED_UNICODE),
  178. 'shop_category_lists' => json_encode(ShopCategoryLogic::listAll($this->shop_id), JSON_UNESCAPED_UNICODE),
  179. 'brand_lists' => json_encode(GoodsBrand::getNameColumn(), JSON_UNESCAPED_UNICODE),
  180. 'supplier_lists' => json_encode(Supplier::getNameColumn($this->shop_id), JSON_UNESCAPED_UNICODE),
  181. 'unit_lists' => json_encode(GoodsUnit::getNameColumn(), JSON_UNESCAPED_UNICODE),
  182. 'freight_lists' => json_encode(Freight::getNameColumn($this->shop_id), JSON_UNESCAPED_UNICODE),
  183. 'info' => json_encode(GoodsLogic::info($goods_id),JSON_UNESCAPED_UNICODE)
  184. ]);
  185. }
  186. /**
  187. * Notes: 删除
  188. * @author 段誉(2021/4/15 10:49)
  189. * @return \think\response\Json
  190. */
  191. public function del()
  192. {
  193. if ($this->request->isAjax()) {
  194. $id = $this->request->post('id');
  195. (new GoodsValidate())->goCheck('del', ['goods_id' => $id, 'shop_id' => $this->shop_id]);
  196. $result = GoodsLogic::del($this->shop_id, $id);
  197. if($result) {
  198. return JsonServer::success('删除成功');
  199. }
  200. return JsonServer::error(GoodsLogic::getError());
  201. }
  202. }
  203. /**
  204. * Notes:修改商品字段(上下架、新品推荐、好物优选、猜你喜欢)
  205. * @throws \think\Exception
  206. * @throws \think\exception\PDOException
  207. */
  208. public function changeFields(){
  209. $table = 'goods';
  210. $pk_name = 'id';
  211. $pk_value = $this->request->post('id');
  212. $field = $this->request->post('field');
  213. $field_value = $this->request->post('value');
  214. // 库存校验
  215. $stock = GoodsModel::where('id', $pk_value)->value('stock');
  216. if($field_value == 1 && $stock <= 0) {
  217. return JsonServer::error('库存为0的商品不允许上架');
  218. }
  219. $result = CommonLogic::changeTableValue($table,$pk_name,$pk_value,$field,$field_value);
  220. if($result){
  221. event('UpdateCollect', ['goods_id' => $pk_value]);
  222. return JsonServer::success('操作成功');
  223. }
  224. return JsonServer::error('操作失败');
  225. }
  226. /**
  227. * 放回仓库
  228. */
  229. public function backToWarehouse(){
  230. $id = $this->request->post('id', '', 'intval');
  231. if(empty($id)) {
  232. return JsonServer::error('id不存在');
  233. }
  234. $result = GoodsLogic::backToWarehouse($id);
  235. if($result) {
  236. return JsonServer::success('操作成功');
  237. }
  238. return JsonServer::error('操作失败');
  239. }
  240. /**
  241. * @notes 获取统计数据
  242. * @author Tab
  243. * @date 2021/7/13 18:03
  244. */
  245. public function totalCount()
  246. {
  247. if ($this->request->isAjax()) {
  248. return JsonServer::success('获取成功', GoodsLogic::statistics($this->shop_id));
  249. }
  250. }
  251. /**
  252. * @notes 批量更新上下架状态
  253. * @return \think\response\Json|void
  254. * @author 段誉
  255. * @date 2022/3/17 11:53
  256. */
  257. public function setStatus()
  258. {
  259. if ($this->request->isAjax()) {
  260. $params = (new GoodsStatusValidate())->goCheck(null, ['shop_id' => $this->shop_id]);
  261. $result = GoodsLogic::setStatus($params['ids'], $params['status']);
  262. if($result) {
  263. return JsonServer::success('操作成功');
  264. }
  265. return JsonServer::error(GoodsLogic::getError());
  266. }
  267. }
  268. }