123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- <?php
- namespace app\mall\controller;
- use app\common\model\GoodsSeason;
- use app\common\model\GoodsTerritory;
- use app\common\model\User;
- use library\Controller;
- use think\Db;
- use app\common\model\GoodsCate;
- use app\common\model\StoreGoodsItem;
- use library\tools\Data;
- /**
- * 商品管理
- * Class StoreGoods
- * @package app\mall\controller
- */
- class StoreGoods extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- protected $table = 'StoreGoods';
- /**
- * 商品列表
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- $this->title = '商品管理';
- $where = [];
- $where['is_deleted'] = 0;
- $query = $this->_query($this->table)->where($where)->like('name');
- $query->dateBetween('create_at')->order('sort desc , id asc')->page();
- }
- /**
- * 数据列表处理
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _index_page_filter(&$data)
- {
- $this->clist = GoodsCate::getCateTree();
- $list = Db::name('StoreGoodsItem')->where('status', '1')->whereIn('goods_id', array_unique(array_column($data, 'id')))->select();
- foreach ($data as &$vo) {
- list($vo['list'], $vo['cate']) = [[], []];
- foreach ($list as $goods){
- if ($goods['goods_id'] === $vo['id']) array_push($vo['list'], $goods);
- }
- }
- }
- /**
- * 添加商品
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function add()
- {
- $this->title = '添加商品';
- $this->isAddMode = '1';
- $this->_form($this->table, 'form');
- }
- /**
- * 编辑商品
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- function edit()
- {
- $this->title = '编辑商品';
- $this->isAddMode = '0';
- $this->_form($this->table, 'form');
- }
- /**
- * 表单数据处理
- * @param array $data
- */
- protected function _form_filter(&$data)
- {
- if($this->request->isGet()){
- $fields = 'goods_spec,goods_id,status,original_price,sell_price,virtual,goods_no sku,weight,spec_cover';
- $defaultValues = [];
- if(isset_full($data,'id')) $defaultValues = Db::name('StoreGoodsItem')->where(['goods_id' => $data['id']])->column($fields);
- $this->defaultValues = json_encode($defaultValues, JSON_UNESCAPED_UNICODE);
- $this->goods_cate = GoodsCate::getCateTree();
- $this->express= Db::name('freight_template')->select();
- }
- // 添加或编辑商品
- if($this->request->isPost() && in_array($this->request->action(),['add','edit'])){
- list($data) = [$this->request->post()];
- if((isset($data['release_time']) && !$data['release_time']) || !isset($data['release_time'])) $data['release_time'] = date("Y-m-d H:i:s");
- if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
- $check_price = true;
- $lists = json_decode($data['lists'], true);
- foreach ($lists as $ke=>&$vo){
- if( $vo[0]['sell_price'] <=0 )$check_price = false;
- if($data['spec_cover'][$ke]) $vo[0]['spec_cover'] = $data['spec_cover'][$ke];
- }
- if(!$check_price) $this->error('价格设置有误');
- if(!empty($data['phone'])) {
- $user_id = User::where('phone|email',$data['phone'])->value('id');
- if(!$user_id) $this->error('该账号未注册');
- $data['user_id'] = $user_id;
- }else{
- $data['user_id'] = '';
- }
- }
- }
- /**
- * 商品上架
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function up()
- {
- $id =input('id');
- \app\common\model\StoreGoods::where('id',$id)->update(['status'=>1,'is_edit'=>0]);
- \app\common\model\StoreGoods::esAdd($id);
- \app\common\model\TopSearch::saveData($id,'goods');
- $this->success('操作成功!');
- }
- /**
- * 商品下架
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function down()
- {
- $id =input('id');
- \app\common\model\StoreGoods::where('id',$id)->update(['status'=>0]);
- \app\common\model\StoreGoods::esAdd($id);
- \app\common\model\TopSearch::saveData($id,'goods');
- $this->success('操作成功!');
- }
- /**
- * 商品删除
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function remove()
- {
- $ids = input('id');
- foreach (explode(',',$ids) as $id) {
- \app\common\model\StoreGoods::where('id',$id)->update(['is_deleted'=>1]);
- \app\common\model\StoreGoods::esAdd($id);
- \app\common\model\TopSearch::saveData($id,'goods');
- }
- $this->success('已删除!');
- }
- /**
- * 商品库存入库
- * @auth true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function stock()
- {
- if ($this->request->isGet()) {
- $goods_id = $this->request->get('id');
- $goods_info = Db::name('StoreGoods')->where(['id' => $goods_id])->find();
- empty($goods_info) && $this->error('无效的商品信息,请稍候再试!');
- $goods_info['list'] = Db::name('StoreGoodsItem')->where(['goods_id' => $goods_id])->select();
- $this->fetch('', ['vo' => $goods_info]);
- } else {
- list($post, $data) = [$this->request->post(), []];
- if (isset($post['id']) && isset($post['goods_id']) && is_array($post['goods_id'])) {
- foreach (array_keys($post['goods_id']) as $key) {
- if ($post['goods_number'][$key] > 0) array_push($data, [
- 'goods_id' => $post['goods_id'][$key],
- 'goods_spec' => $post['goods_spec'][$key],
- 'number_stock' => $post['goods_number'][$key],
- ]);
- }
- if (!empty($data)) {
- Db::name('GoodsStock')->insertAll($data);
- foreach ($data as $dv) {
- Db::name('StoreGoodsItem')->where(['goods_id'=>$dv['goods_id'],'goods_spec'=>$dv['goods_spec']])->setInc('stock',$dv['number_stock']);
- Db::name('StoreGoodsItem')->where(['goods_id'=>$dv['goods_id'],'goods_spec'=>$dv['goods_spec']])->setInc('base_stock',$dv['number_stock']);
- }
- Db::name('StoreGoods')->where('id',$post['id'])->setInc('stock',array_sum(array_column($data,'number_stock')));
- Db::name('StoreGoods')->where('id',$post['id'])->setInc('base_stock',array_sum(array_column($data,'number_stock')));
- $this->success('商品信息入库成功!');
- }
- }
- $this->error('没有需要商品入库的数据!');
- }
- }
- /**
- * 商品参数设置
- * @auth true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function param()
- {
- if ($this->request->isGet()) {
- $goods_id = $this->request->get('id');
- $goods_info = Db::name('StoreGoods')->where(['id' => $goods_id])->find();
- empty($goods_info) && $this->error('无效的商品信息,请稍候再试!');
- $param = Db::name('goods_param')->where('goods_id',$goods_id)->find();
- $param_set = !$param ? [['title'=>'','value'=>'']]:json_decode($param['goods_param'],true);
- $this->fetch('', ['goods_info' => $goods_info,'param_set'=>$param_set]);
- }else{
- $goods_id = input('post.goods_id');
- $title_arr= input('post.title');
- $value_arr= input('post.value');
- if(empty($title_arr)) $this->error('请设置商品参数');
- $param_post = [];
- foreach ($title_arr as $k=>$t){
- $param_post[] = ['title'=>$t,'value'=>$value_arr[$k]];
- }
- Data::save('GoodsParam',['goods_id'=>$goods_id,'goods_param'=>json_encode($param_post)],'goods_id',['goods_id'=>$goods_id]);
- $this->success('保存成功!');
- }
- }
- /**
- * 添加完成商品之后逻辑处理
- * @param $result
- */
- protected function _form_result($result)
- {
- if ($result && $this->request->isPost() && in_array($this->request->action(),['add','edit'])) {
- list($data) = [$this->request->post()];
- $data['id'] = $result;
- $low_price = 0;
- foreach (json_decode($data['lists'], true) as $ko=>$vo){
- if($low_price == 0 || $vo[0]['sell_price'] < $low_price )$low_price = $vo[0]['sell_price'];
- Data::save('StoreGoodsItem', [
- 'goods_id' => $data['id'],
- 'spec_cover' => $data['spec_cover'][$ko] ? $data['spec_cover'][$ko] : $vo[0]['spec_cover'],
- 'goods_spec' => $vo[0]['key'],
- 'goods_no' => $vo[0]['sku'],
- 'original_price' => $vo[0]['original_price'],
- 'sell_price' => $vo[0]['sell_price'],
- 'virtual' => $vo[0]['virtual'],
- 'status' => $vo[0]['status'] ? 1 : 0,
- 'weight' => $vo[0]['weight'] ? $vo[0]['weight'] : 0,
- ], 'goods_spec', ['goods_id' => $data['id']]);
- }
- Db::name('StoreGoods')->where(['id'=>$data['id']])->update(['low_price'=>$low_price]);
- \app\common\model\StoreGoods::esAdd($result);
- \app\common\model\TopSearch::saveData($result,'goods');
- $this->success('商品编辑成功!', 'javascript:history.back()');
- }
- }
- }
|