| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <?php
- namespace app\admin\controller\product;
- use app\common\controller\Backend;
- use Exception;
- use think\Db;
- use app\common\model\ProductArea;
- use think\exception\DbException;
- use think\exception\PDOException;
- use think\exception\ValidateException;
- /**
- * 商品列管理
- *
- * @icon fa fa-circle-o
- */
- class Lists extends Backend
- {
- /**
- * Lists模型对象
- * @var \app\admin\model\product\Lists
- */
- protected $model = null;
- protected $productArea = null;
- protected $areaCode = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->productArea = new ProductArea;
- $this->model = new \app\common\model\ProductLists;
-
- }
- /**
- * 查看
- *
- * @return string|Json
- * @throws \think\Exception
- * @throws DbException
- */
- public function index()
- {
- //设置过滤方法
- $this->request->filter(['strip_tags', 'trim']);
- if (false === $this->request->isAjax()) {
- return $this->view->fetch();
- }
- //如果发送的来源是 Selectpage,则转发到 Selectpage
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- [$where, $sort, $order, $offset, $limit] = $this->buildparams();
- $list = $this->model->with('products')
- ->where($where)
- ->order($sort, $order)
- ->paginate($limit);
- $result = ['total' => $list->total(), 'rows' => $list->items()];
- return json($result);
- }
- /**
- * 添加
- *
- * @return string
- * @throws \think\Exception
- */
- public function add()
- {
- if (false === $this->request->isPost()) {
- $this->assignconfig('areaData', []);
- return $this->view->fetch();
- }
- $params = $this->request->post('row/a');
- if (empty($params)) {
- $this->error(__('Parameter %s can not be empty', ''));
- }
- $params = $this->preExcludeFields($params);
- if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
- $params[$this->dataLimitField] = $this->auth->id;
- }
- $result = false;
- Db::startTrans();
- try {
- //是否采用模型验证
- if ($this->modelValidate) {
- $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
- $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
- $this->model->validateFailException()->validate($validate);
- }
- $areaArr = json_decode($params['product_area'], true);
- $areaArrTxt = json_decode($params['product_area_txt'], true);
- if(empty($areaArr) || empty($areaArrTxt)) throw new ValidateException('请添加商品关联地区');
- unset($params['product_area'], $params['product_area_txt']);
- //商品
- $add = $this->model->create($params);
- $result= $this->setEqualArea($add->id, $areaArr, $areaArrTxt);
- Db::commit();
- } catch (ValidateException|PDOException|Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- if ($result === false) {
- $this->error(__('No rows were inserted'));
- }
- $this->success();
- }
- /**
- * 编辑
- *
- * @param $ids
- * @return string
- * @throws DbException
- * @throws \think\Exception
- */
- public function edit($ids = null)
- {
- $row = $this->model->get($ids);
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- $adminIds = $this->getDataLimitAdminIds();
- if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) {
- $this->error(__('You have no permission'));
- }
- if (false === $this->request->isPost()) {
- $area = $this->productArea::where('product_id', $ids)->where('status', 1)->select();
- $areaData = array();
- $areaCode = array();
- $areaTxt = array();
- foreach ($area as $key =>$item) {
- if($item->province > 0){
- $areaData[$key] = $item->province;
- $areaCode[$key][0] = $item->province;
- }
- if($item->city > 0){
- $areaData[$key] = $item->city;
- $areaCode[$key][1] = $item->city;
- }
- if($item->area > 0) {
- $areaData[$key] = $item->area;
- $areaCode[$key][2] = $item->area;
- }
- if($item->county > 0) {
- $areaData[$key] = $item->county;
- $areaCode[$key][3] = $item->county;
- }
- $areaTxt[] = [$item->address];
- }
- $this->assignconfig('areaData', json_encode($areaData));
- $this->view->assign('row', $row);
- $this->view->assign('areaTxt', json_encode($areaTxt, JSON_UNESCAPED_UNICODE));
- $this->view->assign('areaCode', json_encode($areaCode));
- return $this->view->fetch();
- }
- $params = $this->request->post('row/a');
- if (empty($params)) {
- $this->error(__('Parameter %s can not be empty', ''));
- }
- $params = $this->preExcludeFields($params);
- $result = false;
- Db::startTrans();
- try {
- //是否采用模型验证
- if ($this->modelValidate) {
- $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
- $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
- $row->validateFailException()->validate($validate);
- }
-
- $areaArr = json_decode($params['product_area'], true);
- $areaArrTxt = json_decode($params['product_area_txt'], true);
- if(empty($areaArr) || empty($areaArrTxt)) throw new ValidateException('请添加商品关联地区');
- unset($params['product_area'], $params['product_area_txt']);
- $row->allowField(true)->save($params);
- $this->productArea::where('product_id', $ids)->where('status', 1)->delete();
- $result= $this->setEqualArea($ids, $areaArr, $areaArrTxt);
- Db::commit();
- } catch (ValidateException|PDOException|Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- if (false === $result) {
- $this->error(__('No rows were updated'));
- }
- $this->success();
- }
- //判断是否存在相同元素
- private function setEqualArea(int $product_id,array $areaArr, array $areaArrTxt): bool
- {
- foreach ($areaArr as $key=>$row)
- {
- $arr['product_id'] = $product_id;
- $arr['province'] = $row[0]??0;
- $arr['city'] = $row[1]??0 ;
- $arr['area'] = $row[2]??0;
- $arr['county'] = $row[3]??0;
- $arr['address'] = $areaArrTxt[$key][0];
- $this->productArea::create($arr);
- }
- return true;
- }
- }
|