100 lines
2.7 KiB
PHP
100 lines
2.7 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
namespace app\controller\supplier\product;
|
||
|
||
use app\controller\supplier\AuthController;
|
||
use app\jobs\BatchHandleJob;
|
||
use app\services\other\queue\QueueServices;
|
||
use app\services\product\sku\StoreProductRuleServices;
|
||
use think\facade\App;
|
||
|
||
/**
|
||
* 规则管理
|
||
* Class StoreProductRule
|
||
* @package app\controller\supplier\product
|
||
*/
|
||
class StoreProductRule extends AuthController
|
||
{
|
||
|
||
public function __construct(App $app, StoreProductRuleServices $service)
|
||
{
|
||
parent::__construct($app);
|
||
$this->services = $service;
|
||
}
|
||
|
||
/**
|
||
* 规格列表
|
||
* @return mixed
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function index()
|
||
{
|
||
$where = $this->request->getMore([
|
||
['rule_name', '']
|
||
]);
|
||
$where['type'] = 2;
|
||
$where['relation_id'] = $this->supplierId;
|
||
$list = $this->services->getList($where);
|
||
return app('json')->success('',$list);
|
||
}
|
||
|
||
/**
|
||
* 保存规格
|
||
* @param $id
|
||
* @return mixed
|
||
*/
|
||
public function save($id)
|
||
{
|
||
$data = $this->request->postMore([
|
||
['rule_name', ''],
|
||
['spec', []]
|
||
]);
|
||
if (!$data['rule_name']) {
|
||
return app('json')->fail('请输入分类名称');
|
||
}
|
||
$data['type'] = 2;
|
||
$data['relation_id'] = $this->supplierId;
|
||
$this->services->save($id, $data, 2, (int)$this->supplierId);
|
||
return app('json')->success('保存成功!');
|
||
}
|
||
|
||
/**
|
||
* 获取规格信息
|
||
* @param $id
|
||
* @return mixed
|
||
*/
|
||
public function read($id)
|
||
{
|
||
$info = $this->services->getInfo($id);
|
||
return app('json')->success('',$info);
|
||
}
|
||
|
||
/**
|
||
* 删除指定资源
|
||
* @param $id
|
||
* @return mixed
|
||
*/
|
||
public function delete($id)
|
||
{
|
||
if (!$id) {
|
||
return app('json')->fail('缺少ID');
|
||
}
|
||
$info = $this->services->getInfo((int)$id);
|
||
if (!$info) {
|
||
return app('json')->fail('删除的数据不存在');
|
||
}
|
||
$this->services->delete($id);
|
||
return app('json')->success('删除成功!');
|
||
}
|
||
}
|