Store.php 15.9 KB
<?php

namespace app\admin\controller\store;

use app\admin\model\Admin;
use app\admin\model\AuthGroupAccess;
use app\common\controller\Backend;
use fast\Random;
use think\Db;
use think\Exception;
use think\exception\PDOException;
use think\exception\ValidateException;

/**
 * 商家入驻订单管理
 *
 * @icon fa fa-circle-o
 */
class Store extends Backend
{
    
    /**
     * Store模型对象
     * @var \app\admin\model\store\Store
     */
    protected $model = null;

    public function _initialize()
    {
        parent::_initialize();
        $this->model = new \app\admin\model\store\Store;
        $this->view->assign("statusList", $this->model->getStatusList());
    }
    
    /**
     * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
     * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
     * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
     */
    

    /**
     * 查看
     */
    public function index()
    {
        //当前是否为关联查询
        $this->relationSearch = true;
        //设置过滤方法
        $this->request->filter(['strip_tags', 'trim']);
        if ($this->request->isAjax())
        {
            //如果发送的来源是Selectpage,则转发到Selectpage
            if ($this->request->request('keyField'))
            {
                return $this->selectpage();
            }
            list($where, $sort, $order, $offset, $limit) = $this->buildparams();

            // 城市或区县代理
            $where1 = [];
            $group_id_arr = array_column($this->auth->getGroups(), 'group_id');
            if(!in_array(1,$group_id_arr) && array_intersect([6,7],$group_id_arr)){
                $area_arr = \app\admin\model\AdminArea::where('admin_id',$this->auth->id)->column('area');
                // 城市管理员
                if(in_array(6,$group_id_arr)){
                    foreach ($area_arr as $v) {
                        $area = explode('/', $v);
                        $province = strpos($area[0], '省') === false && strpos($area[0], '市') === false ? $area[0].'市' : $area[0];
                        $where1[] = "(province = '{$province}' and city = '{$area[1]}')";
                    }
                }else{
                // 区县级管理员
                    foreach ($area_arr as $v) {
                        $area = explode('/', $v);
                        $province = strpos($area[0], '') === false && strpos($area[0], '') === false ? $area[0].'' : $area[0];
                        $where1[] = "(province = '{$province}' and city = '{$area[1]}' and region = '{$area[2]}')";
                    }
                }
                $where1 = $where1 ? implode(' or ',$where1) : 'store.id = 0';
            }

            $total = $this->model
                    ->with(['admin','user'])
                    ->where($where)
                    ->where($where1)
                    ->order($sort, $order)
                    ->count();

            $list = $this->model
                    ->with(['admin','user'])
                    ->where($where)
                    ->where($where1)
                    ->order($sort, $order)
                    ->limit($offset, $limit)
                    ->select();

            foreach ($list as $row) {
                
                $row->getRelation('admin')->visible(['nickname']);
				$row->getRelation('user')->visible(['nickname']);
            }
            $list = collection($list)->toArray();
            foreach ($list as &$v) {
                $v['house_name'] = Db::name('house')->whereIn('id',$v['house_ids'])->column('name');
            }
            $result = array("total" => $total, "rows" => $list);

            return json($result);
        }
        // 城市或区县代理
        $have_store_num = 0;
        $group_id_arr = array_column($this->auth->getGroups(), 'group_id');
        if(!in_array(1,$group_id_arr) && array_intersect([6,7],$group_id_arr)){
            $have_store_num = 1;
        }
        $store_num = Admin::where('id',$this->auth->id)->value('store_num');
        $this->view->assign('have_store_num',$have_store_num);
        $this->view->assign('store_num',$store_num);
        return $this->view->fetch();
    }

    /**
     * 审核
     */
    public function examine($ids = null)
    {
        $row = $this->model->get($ids);
        if (!$row) {
            $this->error(__('No Results were found'));
        }
        $adminIds = $this->getDataLimitAdminIds();
        if (is_array($adminIds)) {
            if (!in_array($row[$this->dataLimitField], $adminIds)) {
                $this->error(__('You have no permission'));
            }
        }
        if ($this->request->isPost()) {
            $params = $this->request->post("row/a");
            if ($params) {
                $params = $this->preExcludeFields($params);
                $admin_model = new Admin();
                $auth_group_model = new AuthGroupAccess();
                if($params['status'] == 3) {
                    if(empty($params['username'])) {
                        $this->error('请填写账号');
                    }
                    if(empty($params['nickname'])) {
                        $this->error('请填写昵称');
                    }
                    if(empty($params['password'])) {
                        $this->error('请填写密码');
                    }
                    $salt = Random::alnum();
                    $password = md5(md5($params['password']) . $salt);
                    $admin_data = [
                        'username' => $params['username'],
                        'nickname' => $params['nickname'],
                        'salt' => $salt,
                        'password' => $password
                    ];
                    $auth_group_data = [
                        'group_id' => 4,
                    ];
                }
                $result = false;
                $result_admin = $result_auth_group = true;
                Db::startTrans();
                try {
                    $result = $row->allowField(true)->save($params);
                    // 判断审核状态
                    if($params['status'] == 3) {
                        // 审核通过,新增商家管理员
                        $result_admin = $admin_model->isUpdate(false)->save($admin_data);
                        $auth_group_data['uid'] = $admin_model->id;
                        $result_auth_group = $auth_group_model->isUpdate(false)->save($auth_group_data);
                        $row->allowField(true)->isUpdate(true)->save(['admin_id'=>$admin_model->id]);
                        // 新增社区有效期
                        $time = time();
                        foreach (explode(',',$row->house_ids) as $v) {
                            if($v) {
                                $insert = [
                                    'user_id' => $row->user_id,
                                    'store_id' => $row->id,
                                    'house_id' => $v,
                                    'start_time' => $time,
                                    'end_time' => $time + config('site.house_valid') * 86400,
                                    'createtime' => $time,
                                    'updatetime' => $time
                                ];
                                $result_store_house = Db::name('store_house')->insertGetId($insert);
                                if(!$result_store_house) {
                                    Db::rollback();
                                }
                            }
                        }
                        // 发送模板消息
                        $send_data = array(
                            "first"  => '恭喜您,商户申请审核通过!',
                            "keyword1" => $row->store_name,
                            "keyword2"  => date('Y-m-d',time()),
                            "remark" => ['点击进入商户后台','#FF0000'],
                        );
                        $openid = Db::name('third')->where('user_id',$row->user_id)->value('openid');
                        $url = $this->request->root(true).'/admininfo.php/index/login';
                        $this->wxsendmessage($openid,$send_data,config('option.template')['store_pass'],$url);
                        // 城市或区县代理,可审核商铺数量减一
                        $group_id_arr = array_column($this->auth->getGroups(), 'group_id');
                        $admin = Admin::get($this->auth->id);
                        if(!in_array(1,$group_id_arr) && array_intersect([6,7],$group_id_arr) && $admin['store_num'] > 0){
                            $admin->setDec('store_num');
                        }
                    }
                    if($params['status'] == 4) {
                        // 审核不通过,执行退款操作
                        $time = time();
                        $refund = [
                            'order_id' => $row->id,
                            'user_id' => $row->user_id,
                            'order_sn' => $row->order_sn,
                            'transaction_id' => $row->transaction_id,
                            'out_refund_no' => date('Ymd').substr($row->order_sn,-8),
                            'price' => 0.01, // $row->money
                            'createtime' => $time,
                            'updatetime' => $time
                        ];
                        $refund_result = $this->refund($refund);
                        if($refund_result['return_code'] != 'SUCCESS' || $refund_result['result_code'] != 'SUCCESS') {
                            Db::rollback();
                        }
                        Db::name('refund')->insert($refund);
                    }
                    Db::commit();
                } catch (ValidateException $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                } catch (PDOException $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                } catch (Exception $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                }
                if ($result !== false && $result_admin !== false && $result_auth_group !== false) {
                    $this->success();
                } else {
                    $this->error(__('No rows were updated'));
                }
            }
            $this->error(__('Parameter %s can not be empty', ''));
        }
        $this->view->assign('row',$row);
        return $this->view->fetch();
    }

    /**
     * 调整金币
     */
    public function score_edit($ids = null)
    {
        $row = $this->model->get($ids);
        if (!$row) {
            $this->error(__('No Results were found'));
        }
        $adminIds = $this->getDataLimitAdminIds();
        if (is_array($adminIds)) {
            if (!in_array($row[$this->dataLimitField], $adminIds)) {
                $this->error(__('You have no permission'));
            }
        }
        $user = Db::name('user')->where('id',$row->user_id)->find();
        if ($this->request->isPost()) {
            $params = $this->request->post("row/a");
            if ($params) {
                $params = $this->preExcludeFields($params);
                if($params['type'] == 1) {
                } else {
                    if($user['score'] < $params['score']) {
                        $this->error('该商家金币余额不足');
                    }
                }
                $result = $res_log = false;
                Db::startTrans();
                try {
                    if($params['type'] == 1) {
                        $result = Db::name('user')->where('id',$user['id'])->setInc('score',$params['score']);
                        $after = bcadd($user['score'],$params['score'],0);
                        $memo = '平台代充金币';
                    } else {
                        $result = Db::name('user')->where('id',$user['id'])->setDec('score',$params['score']);
                        $after = bcsub($user['score'],$params['score'],0);
                        $memo = '平台扣除金币';
                    }
                    $score_log = [
                        'user_id' => $user['id'],
                        'score' => $params['score'],
                        'before' => $user['score'],
                        'after' => $after,
                        'status' => 2,
                        'memo' => $memo,
                        'createtime' => time()
                    ];
                    $res_log = Db::name('user_score_log')->insertGetId($score_log);
//                    $result = $row->allowField(true)->save($params);
                    Db::commit();
                } catch (ValidateException $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                } catch (PDOException $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                } catch (\Exception $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                }
                if ($result !== false || $res_log !== false) {
                    $this->success();
                } else {
                    $this->error(__('No rows were updated'));
                }
            }
            $this->error(__('Parameter %s can not be empty', ''));
        }
        $row->score = $user['score'];
        $this->view->assign("row", $row);
        return $this->view->fetch();
    }

    /**
     * 删除
     */
    public function del($ids = "")
    {
        if ($ids) {
            $pk = $this->model->getPk();
            $adminIds = $this->getDataLimitAdminIds();
            if (is_array($adminIds)) {
                $this->model->where($this->dataLimitField, 'in', $adminIds);
            }
            $list = $this->model->where($pk, 'in', $ids)->select();

            $count = 0;
            Db::startTrans();
            try {
                foreach ($list as $k => $v) {
                    // 删除商家留言
                    Db::name('store_comment')->where('store_id',$v['id'])->delete();
                    Db::name('message')->where('object_id',$v['id'])->where('type',2)->delete();
                    // 删除社区有效期
                    Db::name('store_house')->where('store_id',$v['id'])->delete();
                    // 删除商家发布信息
                    $inform_list = Db::name('store_inform')->where('store_id',$v['id'])->select();
                    foreach($inform_list as $val){
                        // 删除商家发布信息点赞
                        Db::name('store_inform_good')->where('object_id',$val['id'])->delete();
                        // 删除红包领取记录
                        Db::name('store_inform_log')->where('inform_id',$val['id'])->delete();
                        // 删除商圈浏览量记录
                        Db::name('store_inform_view')->where('object_id',$val['id'])->delete();
                        Db::name('store_inform')->where('id',$val['id'])->delete();
                    }
                    // 删除开通新社区订单
                    Db::name('store_order')->where('store_id',$v['id'])->delete();
                    $count += $v->delete();
                }
                Db::commit();
            } catch (PDOException $e) {
                Db::rollback();
                $this->error($e->getMessage());
            } catch (Exception $e) {
                Db::rollback();
                $this->error($e->getMessage());
            }
            if ($count) {
                $this->success();
            } else {
                $this->error(__('No rows were deleted'));
            }
        }
        $this->error(__('Parameter %s can not be empty', 'ids'));
    }
}