123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- namespace app\store\controller\goods;
- use app\store\controller\Controller;
- use app\store\model\Spec as SpecModel;
- use app\store\model\SpecValue as SpecValueModel;
- /**
- * 商品规格控制器
- * Class Spec
- * @package app\store\controller
- */
- class Spec extends Controller
- {
- /* @var SpecModel $SpecModel */
- private $SpecModel;
- /* @var SpecValueModel $SpecModel */
- private $SpecValueModel;
- /**
- * 构造方法
- * @throws \app\common\exception\BaseException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function _initialize()
- {
- parent::_initialize();
- $this->SpecModel = new SpecModel;
- $this->SpecValueModel = new SpecValueModel;
- }
- /**
- * 添加规则组
- * @param $spec_name
- * @param $spec_value
- * @return array
- */
- public function addSpec($spec_name, $spec_value)
- {
- // 判断规格组是否存在
- if (!$specId = $this->SpecModel->getSpecIdByName($spec_name)) {
- // 新增规格组and规则值
- if ($this->SpecModel->add($spec_name)
- && $this->SpecValueModel->add($this->SpecModel['spec_id'], $spec_value))
- return $this->renderSuccess('', '', [
- 'spec_id' => (int)$this->SpecModel['spec_id'],
- 'spec_value_id' => (int)$this->SpecValueModel['spec_value_id'],
- ]);
- return $this->renderError();
- }
- // 判断规格值是否存在
- if ($specValueId = $this->SpecValueModel->getSpecValueIdByName($specId, $spec_value)) {
- return $this->renderSuccess('', '', [
- 'spec_id' => (int)$specId,
- 'spec_value_id' => (int)$specValueId,
- ]);
- }
- // 添加规则值
- if ($this->SpecValueModel->add($specId, $spec_value))
- return $this->renderSuccess('', '', [
- 'spec_id' => (int)$specId,
- 'spec_value_id' => (int)$this->SpecValueModel['spec_value_id'],
- ]);
- return $this->renderError();
- }
- /**
- * 添加规格值
- * @param $spec_id
- * @param $spec_value
- * @return array
- */
- public function addSpecValue($spec_id, $spec_value)
- {
- // 判断规格值是否存在
- if ($specValueId = $this->SpecValueModel->getSpecValueIdByName($spec_id, $spec_value)) {
- return $this->renderSuccess('', '', [
- 'spec_value_id' => (int)$specValueId,
- ]);
- }
- // 添加规则值
- if ($this->SpecValueModel->add($spec_id, $spec_value))
- return $this->renderSuccess('', '', [
- 'spec_value_id' => (int)$this->SpecValueModel['spec_value_id'],
- ]);
- return $this->renderError();
- }
- }
|