截流自动化的商城平台
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 7.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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\admin\controller\goods;
  20. use app\common\basics\AdminBase;
  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\server\JsonServer;
  28. use app\admin\logic\goods\CategoryLogic as MallCategoryLogic;
  29. use app\admin\logic\goods\GoodsLogic;
  30. use app\admin\logic\goods\ColumnLogic;
  31. use app\shop\logic\goods\CategoryLogic as ShopCategoryLogic;
  32. use think\exception\ValidateException;
  33. use app\admin\validate\goods\GoodsValidate;
  34. /**
  35. * 商品管理
  36. * Class Goods
  37. */
  38. class Goods extends AdminBase
  39. {
  40. /**
  41. * Notes: 列表
  42. */
  43. public function lists()
  44. {
  45. if ($this->request->isAjax()) {
  46. $get = $this->request->get();
  47. return JsonServer::success('', GoodsLogic::lists($get));
  48. }
  49. $cate_list = MallCategoryLogic::categoryTreeeTree();
  50. $statistics = GoodsLogic::statistics();
  51. $column_list = ColumnLogic::getList();
  52. return view('', [
  53. 'statistics' => $statistics,
  54. 'cate_list' => $cate_list,
  55. 'column_list' => $column_list,
  56. 'goods_type' => GoodsEnum::getTypeDesc()
  57. ]);
  58. }
  59. /**
  60. * 查看
  61. */
  62. public function view()
  63. {
  64. $goods_id = $this->request->get('goods_id');
  65. $shop_id = GoodsModel::where('id', $goods_id)->value('shop_id');
  66. return view('goods/goods/add', [
  67. 'category_lists' => json_encode(MallCategoryLogic::getAllTree(), JSON_UNESCAPED_UNICODE),
  68. 'shop_category_lists' => json_encode(ShopCategoryLogic::listAll($shop_id), JSON_UNESCAPED_UNICODE),
  69. 'brand_lists' => json_encode(GoodsBrand::getNameColumn(), JSON_UNESCAPED_UNICODE),
  70. 'supplier_lists' => json_encode(Supplier::getNameColumn(), JSON_UNESCAPED_UNICODE),
  71. 'unit_lists' => json_encode(GoodsUnit::getNameColumn(), JSON_UNESCAPED_UNICODE),
  72. 'freight_lists' => json_encode(Freight::getNameColumn($shop_id), JSON_UNESCAPED_UNICODE),
  73. 'info' => json_encode(GoodsLogic::info($goods_id), JSON_UNESCAPED_UNICODE)
  74. ]);
  75. }
  76. /**
  77. * 违规重审
  78. */
  79. public function reAudit()
  80. {
  81. if ($this->request->isAjax()) {
  82. try {
  83. $params = $this->request->post();
  84. validate(GoodsValidate::class)->scene('re_audit')->check($params);
  85. } catch (ValidateException $e) {
  86. return JsonServer::error($e->getMessage());
  87. }
  88. $result = GoodsLogic::reAudit($params);
  89. if ($result) {
  90. return JsonServer::success('保存成功');
  91. }
  92. return JsonServer::error('保存失败');
  93. }
  94. $goods_id = $this->request->get('goods_id', '', 'intval');
  95. return view('re_audit', [
  96. 'goods_id' => $goods_id
  97. ]);
  98. }
  99. /**
  100. * 商品设置
  101. */
  102. public function setInfo()
  103. {
  104. if ($this->request->isAjax()) {
  105. try {
  106. $params = $this->request->post();
  107. validate(GoodsValidate::class)->scene('set_info')->check($params);
  108. } catch (ValidateException $e) {
  109. return JsonServer::error($e->getMessage());
  110. }
  111. $result = GoodsLogic::setInfo($params);
  112. if ($result) {
  113. return JsonServer::success('设置成功');
  114. }
  115. return JsonServer::error('设置失败');
  116. }
  117. $goods_id = $this->request->get('goods_id', '', 'intval');
  118. $goods_detail = GoodsModel::find($goods_id);
  119. $goods_detail['column_ids'] = $goods_detail['column_ids'] ? explode(',', $goods_detail['column_ids']) : [];
  120. $goods_detail['column_ids'] = json_encode($goods_detail['column_ids']);
  121. $column_list = ColumnLogic::getList();
  122. return view('set_info', [
  123. 'goods_id' => $goods_id,
  124. 'column_list' => json_encode($column_list),
  125. 'goods_detail' => $goods_detail
  126. ]);
  127. }
  128. /**
  129. * 审核
  130. */
  131. public function audit()
  132. {
  133. if ($this->request->isAjax()) {
  134. try {
  135. $params = $this->request->post();
  136. validate(GoodsValidate::class)->scene('audit')->check($params);
  137. } catch (ValidateException $e) {
  138. return JsonServer::error($e->getMessage());
  139. }
  140. $result = GoodsLogic::audit($params);
  141. if ($result) {
  142. return JsonServer::success('操作完成');
  143. }
  144. return JsonServer::error('操作失败');
  145. }
  146. $goods_id = $this->request->get('goods_id', '', 'intval');
  147. return view('audit', [
  148. 'goods_id' => $goods_id
  149. ]);
  150. }
  151. public function totalCount()
  152. {
  153. if ($this->request->isAjax()) {
  154. $get = $this->request->get();
  155. return JsonServer::success('获取成功', GoodsLogic::statistics($get));
  156. }
  157. }
  158. /**
  159. * @notes 批量下架
  160. * @return \think\response\Json|\think\response\View
  161. * @author ljj
  162. * @date 2022/9/20 6:21 下午
  163. */
  164. public function moreLower()
  165. {
  166. if ($this->request->isAjax()) {
  167. try {
  168. $params = $this->request->post();
  169. validate(GoodsValidate::class)->scene('moreLower')->check($params);
  170. } catch (ValidateException $e) {
  171. return JsonServer::error($e->getMessage());
  172. }
  173. $result = GoodsLogic::moreLower($params);
  174. if (false === $result) {
  175. return JsonServer::error(GoodsLogic::getError());
  176. }
  177. return JsonServer::success('操作成功');
  178. }
  179. $ids = $this->request->get('ids');
  180. return view('more_lower', [
  181. 'ids' => $ids
  182. ]);
  183. }
  184. /**
  185. * @notes 批量审核
  186. * @return \think\response\Json|\think\response\View
  187. * @author ljj
  188. * @date 2022/9/20 6:38 下午
  189. */
  190. public function moreAudit()
  191. {
  192. if ($this->request->isAjax()) {
  193. try {
  194. $params = $this->request->post();
  195. validate(GoodsValidate::class)->scene('moreAudit')->check($params);
  196. } catch (ValidateException $e) {
  197. return JsonServer::error($e->getMessage());
  198. }
  199. $result = GoodsLogic::moreAudit($params);
  200. if (false === $result) {
  201. return JsonServer::error(GoodsLogic::getError());
  202. }
  203. return JsonServer::success('操作成功');
  204. }
  205. $ids = $this->request->get('ids');
  206. return view('more_audit', [
  207. 'ids' => $ids
  208. ]);
  209. }
  210. }