You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
3.5 KiB
102 lines
3.5 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types=1);
|
|
|
|
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
|
|
*/
|
|
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();
|
|
}
|
|
|
|
}
|
|
|