123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\store\controller;
- use library\Controller;
- use library\tools\Data;
- use think\Db;
- /**
- * 服务管理
- * Class Goods
- * @package app\store\controller
- */
- class Serve 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 = '服务管理';
- $query = $this->_query($this->table)->equal('status,cate_id')->like('title');
- $query->where(['is_deleted' => '0'])->where('cate_id','>',0)->order('sort desc,id desc')->page();
- }
- /**
- * 数据列表处理
- * @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 = Db::name('StoreGoodsCate')->where(['is_deleted' => '0', 'status' => '1'])->select();
- $list = Db::name('StoreGoodsList')->where('status', '1')->whereIn('goods_id', array_unique(array_column($data, 'id')))->select();
- $cate_id_arr = Db::name('store_goods_cate')->column('title','id');
- foreach ($data as &$vo) {
- list($vo['list'], $vo['cate']) = [[], []];
- foreach ($list as $goods) if ($goods['goods_id'] === $vo['id']) array_push($vo['list'], $goods);
- foreach ($this->clist as $cate) if ($cate['id'] === $vo['cate_id']) $vo['cate'] = $cate;
- $vo['cate_name'] = $cate_id_arr[$vo['cate_id']];
- }
- }
- /**
- * 添加服务
- * @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 add()
- {
- $this->title = '添加服务';
- $this->isAddMode = '1';
- $this->_form($this->table, 'form');
- }
- /**
- * 编辑服务
- * @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 edit()
- {
- $this->title = '编辑服务';
- $this->isAddMode = '0';
- $this->_form($this->table, 'form');
- }
- /**
- * 表单数据处理
- * @param array $data
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- protected function _form_filter(&$data)
- {
- // 生成服务ID
- if(empty($data['id'])){
- $goods_id = Db::name('store_goods')->order('id desc')->value('id');
- $data['id'] = $goods_id + 1;
- }
- if ($this->request->isGet()) {
- $fields = 'goods_spec,goods_id,status,price_market market,price_selling selling,number_virtual `virtual`,number_express express';
- $defaultValues = Db::name('StoreGoodsList')->where(['goods_id' => $data['id']])->column($fields);
- $this->defaultValues = json_encode($defaultValues, JSON_UNESCAPED_UNICODE);
- $this->cates = Db::name('StoreGoodsCate')->where(['is_deleted' => '0', 'status' => '1'])->order('sort desc,id desc')->select();
- } elseif ($this->request->isPost()) {
- if (empty($data['logo'])) $this->error('服务LOGO不能为空,请上传图片');
- Db::name('StoreGoodsList')->where(['goods_id' => $data['id']])->update(['status' => '0']);
- //查询是否有规格信息
- $goods_type = Db::name('store_goods_type')->where('goods_id',$data['id'])->find();
- if(empty($goods_type)){
- $serve_type = array();
- foreach (json_decode($data['lists']) as $value){
- foreach ($value as $k=>$v){
- if($k == 0){
- if(!in_array($v->name,$serve_type)){
- $serve_type[] = $v->name;
- }
- }
- }
- }
- foreach ($serve_type as $v){
- Db::name('store_goods_type')->insert(array('goods_id'=>$data['id'],'spec_name'=>$v));
- }
- }
- foreach (json_decode($data['lists'], true) as $vo) Data::save('StoreGoodsList', [
- 'goods_id' => $data['id'],
- 'goods_spec' => $vo[0]['key'],
- 'price_market' => $vo[0]['market'],
- 'price_selling' => $vo[0]['selling'],
- 'number_virtual' => $vo[0]['virtual'],
- 'number_express' => $vo[0]['express'],
- 'status' => $vo[0]['status'] ? 1 : 0,
- ], 'goods_spec', ['goods_id' => $data['id']]);
- }
- }
- /**
- * 表单结果处理
- * @param boolean $result
- */
- protected function _form_result($result)
- {
- if ($result && $this->request->isPost()) {
- $this->success('服务编辑成功!', 'javascript:history.back()');
- }
- }
- /**
- * 禁用服务
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function forbid()
- {
- $this->_save($this->table, ['status' => '0']);
- }
- /**
- * 启用服务
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function resume()
- {
- $this->_save($this->table, ['status' => '1']);
- }
- /**
- * 删除服务
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function remove()
- {
- $this->_delete($this->table);
- }
- }
|