Goods.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. <?php
  2. namespace app\data\controller\shop;
  3. use app\data\controller\user\Admin;
  4. use app\data\model\BaseUserDiscount;
  5. use app\data\model\BaseUserPayment;
  6. use app\data\model\BaseUserUpgrade;
  7. use app\data\model\ShopGoods;
  8. use app\data\model\ShopGoodsCate;
  9. use app\data\model\ShopGoodsItem;
  10. use app\data\model\ShopGoodsMark;
  11. use app\data\model\ShopGoodsStock;
  12. use app\data\model\SystemUser;
  13. use app\data\service\ExpressService;
  14. use app\data\service\GoodsService;
  15. use think\admin\Controller;
  16. use think\admin\extend\CodeExtend;
  17. use think\admin\service\AdminService;
  18. /**
  19. * 商品数据管理
  20. * Class Goods
  21. * @package app\data\controller\shop
  22. */
  23. class Goods extends Controller
  24. {
  25. /**
  26. * 商品数据管理
  27. * @auth true
  28. * @menu true
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\DbException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. */
  33. public function index()
  34. {
  35. $this->title = '商品数据管理';
  36. if(AdminService::getUserId()==10000){
  37. $admin_id = [];
  38. }
  39. else{
  40. $admin_id['admin_id']=AdminService::getUserId();
  41. }
  42. $query = ShopGoods::mQuery();
  43. // 加载对应数据
  44. $this->type = $this->request->get('type', 'index');
  45. if ($this->type === 'index') $query->where($admin_id)->where(['deleted' => 0,'examine'=>1]);
  46. elseif ($this->type === 'recycle') $query->where(['deleted' => 1]);
  47. else $this->error("无法加载 {$this->type} 数据列表!");
  48. //echo $this->request->get('cateids');
  49. $cateids = $this->request->get('cateids');
  50. // 代理搜索查询
  51. $db = SystemUser::mQuery()->like('nickname#nickname')->db();
  52. if ($db->getOptions('where')) $query->whereRaw("admin_id = {$db->field('id')->buildSql()}");
  53. // 列表排序并显示
  54. $query->like('code|name#name')
  55. ->like('marks', ',')
  56. ->when($cateids,function ($qu) use ($cateids){
  57. $qu->whereRaw("find_in_set(".$cateids.",cateids)");
  58. });
  59. $query->equal('status,vip_entry,truck_type,rebate_type,examine')->order('sort desc,id desc')->page();
  60. }
  61. public function reject(){
  62. if(AdminService::getUserId()==10000){
  63. $admin_id = [];
  64. }
  65. else{
  66. $admin_id['admin_id']=AdminService::getUserId();
  67. }
  68. $this->title = '商品数据审核';
  69. $query = ShopGoods::mQuery();
  70. // 加载对应数据
  71. $query->where(['deleted' => 0])->where($admin_id);
  72. // 列表排序并显示
  73. $query->where('examine','in','2')->like('code|name#name')->like('marks,cateids', ',');
  74. $list = $query->equal('status,vip_entry,truck_type,rebate_type')->order('sort desc,id desc')->select();
  75. $list->page();
  76. }
  77. protected function _reject_page_filter(&$data)
  78. {
  79. foreach ($data as &$v){
  80. $arr = explode("|", $v['cover']);
  81. $v['cover'] = $arr[0];
  82. $users = SystemUser::mk()->whereIn('id', $v['admin_id'])->column('contact_phone,nickname', 'id');
  83. $v['user'] = $users[$v['admin_id']];
  84. }
  85. }
  86. protected function _index_page_filter(&$data)
  87. {
  88. foreach ($data as &$v){
  89. $arr = explode("|", $v['cover']);
  90. $v['cover'] = $arr[0];
  91. $users = SystemUser::mk()->whereIn('id', $v['admin_id'])->column('contact_phone,nickname', 'id');
  92. $v['user'] = $users[$v['admin_id']];
  93. }
  94. }
  95. /**
  96. * 商品选择器
  97. * @login true
  98. * @throws \think\db\exception\DataNotFoundException
  99. * @throws \think\db\exception\DbException
  100. * @throws \think\db\exception\ModelNotFoundException
  101. */
  102. public function select()
  103. {
  104. $query = ShopGoods::mQuery();
  105. $query->equal('status')->like('code,name,marks')->in('cateids');
  106. $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
  107. }
  108. /**
  109. * 数据列表处理
  110. * @param array $data
  111. * @throws \think\db\exception\DataNotFoundException
  112. * @throws \think\db\exception\DbException
  113. * @throws \think\db\exception\ModelNotFoundException
  114. */
  115. protected function _page_filter(array &$data)
  116. {
  117. $admin_id=AdminService::getUserId();
  118. $this->marks = ShopGoodsMark::items();
  119. $this->cates = ShopGoodsCate::treeTable();
  120. $this->assign('admin_id',$admin_id);
  121. GoodsService::bindData($data, false);
  122. }
  123. /**
  124. * 添加商品数据
  125. * @auth true
  126. */
  127. public function add()
  128. {
  129. $this->mode = 'add';
  130. $data['type'] = 'add';
  131. $this->type = $data['type'];
  132. $this->title = '添加商品数据';
  133. ShopGoods::mForm('form', 'code');
  134. }
  135. /**
  136. * 编辑商品数据
  137. * @auth true
  138. */
  139. public function edit()
  140. {
  141. $data = input();
  142. if(!isset($data['type'])){
  143. $data['type'] = 'edit';
  144. }
  145. $this->type = $data['type'];
  146. $this->mode = 'edit';
  147. $this->title = '编辑商品数据';
  148. ShopGoods::mForm('form', 'code');
  149. }
  150. protected function _edit_form_filter(&$data)
  151. {
  152. // var_dump($data);die;
  153. $arr = explode("|", $data['cover']);
  154. $data['cover_url'] = $arr[0];
  155. // var_dump($data);die;
  156. // foreach ($data['inde3x'] as &$v){
  157. // $arr = explode("|", $v['show_image']);
  158. // $v['show_image'] = $arr[0];
  159. // }
  160. }
  161. /**
  162. * 复制编辑商品
  163. * @auth true
  164. */
  165. public function copy()
  166. {
  167. $this->mode = 'copy';
  168. $this->title = '复制编辑商品';
  169. ShopGoods::mForm('form', 'code');
  170. }
  171. /**
  172. * 表单数据处理
  173. * @param array $data
  174. */
  175. protected function _copy_form_filter(array &$data)
  176. {
  177. if ($this->request->isPost()) {
  178. $data['code'] = CodeExtend::uniqidNumber(20, 'G');
  179. }
  180. }
  181. /**
  182. * 表单数据处理
  183. * @param array $data
  184. * @throws \think\db\exception\DataNotFoundException
  185. * @throws \think\db\exception\DbException
  186. * @throws \think\db\exception\ModelNotFoundException
  187. */
  188. protected function _form_filter(array &$data)
  189. {
  190. if (empty($data['code'])) {
  191. $data['code'] = CodeExtend::uniqidNumber(20, 'G');
  192. }
  193. if ($this->request->isGet()) {
  194. $data['marks'] = str2arr($data['marks'] ?? '');
  195. $data['payment'] = str2arr($data['payment'] ?? '');
  196. $data['cateids'] = str2arr($data['cateids'] ?? '');
  197. // 其他表单数据
  198. $this->marks = ShopGoodsMark::items();
  199. // $this->cates = ShopGoodsCate::treeTable(true);
  200. $cates = ShopGoodsCate::treeTable(true);
  201. foreach ($cates as $k => $v){
  202. if($v['id'] == $v['ids'][0]){
  203. unset($cates[$k]);
  204. }
  205. }
  206. $this->cates = $cates;
  207. $this->trucks = ExpressService::templates();
  208. $this->upgrades = BaseUserUpgrade::items();
  209. $this->payments = BaseUserPayment::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc')->column('type,code,name', 'code');
  210. $this->discounts = BaseUserDiscount::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc')->column('id,name,items', 'id');
  211. // 商品规格处理
  212. $fields = 'goods_sku `sku`,goods_code,goods_spec `key`,stock_total `stock`,price_selling `selling`,price_market `market`,number_virtual `virtual`,number_express `express`,reward_balance `balance`,reward_integral `integral`,status,show_image';
  213. $data['data_items'] = json_encode(ShopGoodsItem::mk()->where(['goods_code' => $data['code']])->column($fields, 'goods_spec'), JSON_UNESCAPED_UNICODE);
  214. } elseif ($this->request->isPost()) {
  215. //
  216. // dump(json_encode($data,JSON_UNESCAPED_UNICODE));
  217. //
  218. // die;
  219. //审核拒绝的情况
  220. if (!empty($data['examine_cause'])){
  221. $updata = [
  222. 'examine_cause'=>$data['examine_cause'],
  223. 'examine'=>2,
  224. 'examine_time'=>date('Y-m-d H:i:s'),
  225. 'examine_adminid'=>AdminService::getUserName()
  226. ];
  227. ShopGoods::update($updata,['id'=>$data['id']]);
  228. $this->success('操作成功1', 'javascript:history.back()');
  229. //$this->success('操作成功');
  230. }
  231. $data['admin_id']=AdminService::getUserId();
  232. if($data['admin_id'] != 10000){
  233. $data['examine']=0;
  234. }
  235. // $data['examine']=0;
  236. $good = ShopGoodsItem::mk()->where(['goods_code' => $data['code']])->find();
  237. if($good){
  238. $data['admin_id'] = $good['admin_id'];
  239. }
  240. if (empty($data['cover'])) $this->error('商品图片不能为空!');
  241. // if (empty($data['slider'])) $this->error('轮播图片不能为空!');
  242. // if (empty($data['payment'])) $this->error('支付方式不能为空!');
  243. [$data['price_market'], $data['price_selling']] = [0, 0];
  244. $data['stock_total']=0;
  245. [$count, $items] = [0, array_column(json_decode($data['data_items'], true), 0)];
  246. foreach ($items as $item) if ($item['status'] > 0) {
  247. if ($data['price_market'] === 0 || $data['price_market'] > $item['market']) $data['price_market'] = $item['market'];
  248. if ($data['price_selling'] === 0 || $data['price_selling'] > $item['selling']) $data['price_selling'] = $item['selling'];
  249. $data['stock_total']+=$item['stock'];
  250. $count++;
  251. }
  252. // var_dump($count);die;
  253. if (empty($count)) $this->error('无效的的商品价格信息!');
  254. $data['marks'] = arr2str($data['marks'] ?? []);
  255. // $data['payment'] = arr2str($data['payment'] ?? []);
  256. ShopGoodsItem::mk()->where(['goods_code' => $data['code']])->update(['status' => 0]);
  257. ShopGoodsItem::mk()->where(['goods_code' => $data['code']])->delete();
  258. foreach ($items as $item) data_save(ShopGoodsItem::class, [
  259. 'goods_sku' => $item['sku'],
  260. 'goods_spec' => $item['key'],
  261. 'goods_code' => $data['code'],
  262. 'stock_total' => $item['stock'],
  263. 'price_market' => $item['market'],
  264. 'price_selling' => $item['selling'],
  265. 'status' => $item['status'] ? 1 : 0,
  266. 'admin_id' => $data['admin_id'],
  267. 'show_image' => $item['show_image']
  268. ], 'goods_spec', [
  269. 'goods_code' => $data['code'],
  270. ]);
  271. }
  272. }
  273. /**
  274. * 表单结果处理
  275. * @param boolean $result
  276. * @throws \think\db\exception\DataNotFoundException
  277. * @throws \think\db\exception\DbException
  278. * @throws \think\db\exception\ModelNotFoundException
  279. */
  280. protected function _form_result(bool $result)
  281. {
  282. if ($result && $this->request->isPost()) {
  283. // GoodsService::stock(input('code'));
  284. $this->success('商品编辑成功!', 'javascript:history.back()');
  285. }
  286. }
  287. /**
  288. * 商品库存入库
  289. * @auth true
  290. * @throws \think\db\exception\DataNotFoundException
  291. * @throws \think\db\exception\DbException
  292. * @throws \think\db\exception\ModelNotFoundException
  293. */
  294. public function stock()
  295. {
  296. $map = $this->_vali(['code.require' => '商品编号不能为空哦!']);
  297. if ($this->request->isGet()) {
  298. $list = ShopGoods::mk()->where($map)->select()->toArray();
  299. if (empty($list)) $this->error('无效的商品数据,请稍候再试!');
  300. [$this->vo] = GoodsService::bindData($list);
  301. $this->fetch();
  302. } else {
  303. [$data, $post, $batch] = [[], $this->request->post(), CodeExtend::uniqidDate(12, 'B')];
  304. if (isset($post['goods_code']) && is_array($post['goods_code'])) {
  305. foreach (array_keys($post['goods_code']) as $key) {
  306. if ($post['goods_stock'][$key] > 0) $data[] = [
  307. 'batch_no' => $batch,
  308. 'goods_code' => $post['goods_code'][$key],
  309. 'goods_spec' => $post['goods_spec'][$key],
  310. 'goods_stock' => $post['goods_stock'][$key],
  311. ];
  312. }
  313. if (!empty($data)) {
  314. ShopGoodsStock::mk()->insertAll($data);
  315. GoodsService::stock($map['code']);
  316. $this->success('商品数据入库成功!');
  317. }
  318. }
  319. $this->error('没有需要商品入库的数据!');
  320. }
  321. }
  322. /**
  323. * 商品上下架
  324. * @auth true
  325. */
  326. public function state()
  327. {
  328. ShopGoods::mSave($this->_vali([
  329. 'status.in:0,1' => '状态值范围异常!',
  330. 'status.require' => '状态值不能为空!',
  331. ]), 'code');
  332. }
  333. /**
  334. * 删除商品数据
  335. * @auth true
  336. */
  337. public function remove()
  338. {
  339. ShopGoods::mSave($this->_vali([
  340. 'deleted.in:0,1' => '状态值范围异常!',
  341. 'deleted.require' => '状态值不能为空!',
  342. ]), 'code');
  343. }
  344. /**
  345. * 商品数据审核
  346. * @auth true
  347. * @menu true
  348. * @throws \think\db\exception\DataNotFoundException
  349. * @throws \think\db\exception\DbException
  350. * @throws \think\db\exception\ModelNotFoundException
  351. */
  352. public function examine()
  353. {
  354. if(AdminService::getUserId()==10000){
  355. $admin_id = [];
  356. }
  357. else{
  358. $admin_id['admin_id']=AdminService::getUserId();
  359. }
  360. $this->title = '商品数据审核';
  361. $query = ShopGoods::mQuery();
  362. // 加载对应数据
  363. $query->where(['deleted' => 0])->where($admin_id);
  364. // 列表排序并显示
  365. $query->where('examine','in','0')->like('code|name#name')->like('marks,cateids', ',');
  366. $list = $query->equal('status,vip_entry,truck_type,rebate_type')->order('sort desc,id desc')->select();
  367. $list->page();
  368. }
  369. protected function _examine_page_filter(&$data)
  370. {
  371. foreach ($data as &$v){
  372. $arr = explode("|", $v['cover']);
  373. $v['cover'] = $arr[0];
  374. $users = SystemUser::mk()->whereIn('id', $v['admin_id'])->column('contact_phone,nickname', 'id');
  375. $v['user'] = $users[$v['admin_id']];
  376. }
  377. }
  378. /**
  379. * 商品审核
  380. * @auth true
  381. * @menu true
  382. * @throws \think\db\exception\DataNotFoundException
  383. * @throws \think\db\exception\DbException
  384. * @throws \think\db\exception\ModelNotFoundException
  385. */
  386. public function examinex()
  387. {
  388. // if ($this->request->isGet()) {
  389. // $query = BasePostageCompany::mk()->where(['deleted' => 0, 'status' => 1]);
  390. // $this->items = $query->order('sort desc,id desc')->select()->toArray();
  391. // }
  392. if(input('examine')==1){
  393. ShopGoods::mSave($this->_vali([
  394. 'examine.in:0,1,2' => '状态值范围异常!',
  395. 'examine.require' => '状态值不能为空!',
  396. 'examine_time' => date('Y-m-d H:i:s'),
  397. 'examine_adminid' => AdminService::getUserName()
  398. ]), 'code');
  399. }else{
  400. ShopGoods::mForm('examinex_form', 'id');
  401. }
  402. }
  403. /**
  404. * 商品审核1
  405. * @auth true
  406. * @menu true
  407. * @throws \think\db\exception\DataNotFoundException
  408. * @throws \think\db\exception\DbException
  409. * @throws \think\db\exception\ModelNotFoundException
  410. */
  411. public function examines()
  412. {
  413. // if ($this->request->isGet()) {
  414. // $query = BasePostageCompany::mk()->where(['deleted' => 0, 'status' => 1]);
  415. // $this->items = $query->order('sort desc,id desc')->select()->toArray();
  416. // }
  417. if(input('examine')==1){
  418. $code = input('code');
  419. ShopGoods::where('code',$code)->update(['examine'=>1]);
  420. $this->success('商品编辑成功!', 'javascript:history.back()');
  421. }else{
  422. ShopGoods::mForm('examinex_form', 'id');
  423. }
  424. }
  425. /**
  426. * 商品编辑
  427. * @param array $data
  428. * @return void
  429. */
  430. public function examinex_edit(){
  431. if (empty($data['code'])) {
  432. $data['code'] = CodeExtend::uniqidNumber(20, 'G');
  433. }
  434. if ($this->request->isGet()) {
  435. $data['marks'] = str2arr($data['marks'] ?? '');
  436. $data['payment'] = str2arr($data['payment'] ?? '');
  437. $data['cateids'] = str2arr($data['cateids'] ?? '');
  438. // 其他表单数据
  439. $this->marks = ShopGoodsMark::items();
  440. $this->cates = ShopGoodsCate::treeTable(true);
  441. $this->trucks = ExpressService::templates();
  442. $this->upgrades = BaseUserUpgrade::items();
  443. $this->payments = BaseUserPayment::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc')->column('type,code,name', 'code');
  444. $this->discounts = BaseUserDiscount::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc')->column('id,name,items', 'id');
  445. // 商品规格处理
  446. $fields = 'goods_sku `sku`,goods_code,goods_spec `key`,stock_total `stock`,price_selling `selling`,price_market `market`,number_virtual `virtual`,number_express `express`,reward_balance `balance`,reward_integral `integral`,status,show_image';
  447. $data['data_items'] = json_encode(ShopGoodsItem::mk()->where(['goods_code' => $data['code']])->column($fields, 'goods_spec'), JSON_UNESCAPED_UNICODE);
  448. } elseif ($this->request->isPost()) {
  449. $data['admin_id']=AdminService::getUserId();
  450. $data['examine']=0;
  451. if (empty($data['cover'])) $this->error('商品图片不能为空!');
  452. // if (empty($data['slider'])) $this->error('轮播图片不能为空!');
  453. // if (empty($data['payment'])) $this->error('支付方式不能为空!');
  454. [$data['price_market'], $data['price_selling']] = [0, 0];
  455. $data['stock_total']=0;
  456. [$count, $items] = [0, array_column(json_decode($data['data_items'], true), 0)];
  457. foreach ($items as $item) if ($item['status'] > 0) {
  458. if ($data['price_market'] === 0 || $data['price_market'] > $item['market']) $data['price_market'] = $item['market'];
  459. if ($data['price_selling'] === 0 || $data['price_selling'] > $item['selling']) $data['price_selling'] = $item['selling'];
  460. $data['stock_total']+=$item['stock'];
  461. $count++;
  462. }
  463. if (empty($count)) $this->error('无效的的商品价格信息!');
  464. $data['marks'] = arr2str($data['marks'] ?? []);
  465. // $data['payment'] = arr2str($data['payment'] ?? []);
  466. ShopGoodsItem::mk()->where(['goods_code' => $data['code']])->update(['status' => 0]);
  467. foreach ($items as $item) data_save(ShopGoodsItem::class, [
  468. 'goods_sku' => $item['sku'],
  469. 'goods_spec' => $item['key'],
  470. 'goods_code' => $data['code'],
  471. 'stock_total' => $item['stock'],
  472. 'price_market' => $item['market'],
  473. 'price_selling' => $item['selling'],
  474. 'status' => $item['status'] ? 1 : 0,
  475. 'admin_id' => $data['admin_id'],
  476. 'show_image' => $data['cover']
  477. ], 'goods_spec', [
  478. 'goods_code' => $data['code'],
  479. ]);
  480. }
  481. }
  482. public function _examinex_form_filter(array &$data)
  483. {
  484. if ($this->request->isPost()) {
  485. if (empty($data['examine_cause'])) $this->error('不能为空!');
  486. $updata = [
  487. 'examine_cause'=>$data['examine_cause'],
  488. 'examine'=>2,
  489. 'examine_time'=>date('Y-m-d H:i:s'),
  490. 'examine_adminid'=>AdminService::getUserName()
  491. ];
  492. ShopGoods::update($updata,['id'=>$data['id']]);
  493. //$this->success('操作成功1', 'javascript:history.back()');
  494. $this->success('操作成功');
  495. }
  496. }
  497. }