123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <?php
- namespace app\controller\supplier\product;
- use app\controller\supplier\AuthController;
- use app\services\product\product\StoreProductUnitServices;
- use think\facade\App;
- use app\Request;
- class StoreProductUnit extends AuthController
- {
-
- public function __construct(App $app, StoreProductUnitServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
-
- public function getAllUnit()
- {
- return $this->success($this->services->getAllUnitList(2, (int)$this->supplierId));
- }
-
- public function index(Request $request)
- {
- $where = $request->postMore([
- ['name', '']
- ]);
- $where['type'] = 2;
- $where['relation_id'] = $this->supplierId;
- $where['status'] = 1;
- $where['is_del'] = 0;
- return $this->success($this->services->getUnitList($where));
- }
-
- public function create()
- {
- return $this->success($this->services->createForm());
- }
-
- public function save(Request $request)
- {
- $data = $request->postMore([
- ['name', ''],
- ['sort', 0]
- ]);
- validate(\app\validate\admin\product\StoreProductUnitValidate::class)->scene('get')->check(['name' => $data['name']]);
- if ($this->services->getCount(['name' => $data['name'], 'is_del' => 0, 'type' => 2, 'relation_id' => $this->supplierId])) {
- return $this->fail('单位已经存在,请勿重复添加');
- }
- $data['add_time'] = time();
- if ($this->services->save($data)) {
- return $this->success('保存成功');
- } else {
- return $this->fail('保存失败');
- }
- }
-
- public function read($id)
- {
- if (!$id) {
- return $this->fail('缺少ID');
- }
- $info = $this->services->get($id);
- if (!$info) {
- return $this->fail('获取商品单位失败');
- }
- return $this->success($info->toArray());
- }
-
- public function edit($id)
- {
- return $this->success($this->services->updateForm((int)$id));
- }
-
- public function update(Request $request, $id)
- {
- $data = $request->postMore([
- ['name', ''],
- ['sort', 0]
- ]);
-
- validate(\app\validate\admin\product\StoreProductUnitValidate::class)->scene('get')->check(['name' => $data['name']]);
- $unit = $this->services->getOne(['name' => $data['name'], 'is_del' => 0, 'type' => 2, 'relation_id' => $this->supplierId]);
- if ($unit && $unit['id'] != $id) {
- return $this->fail('单位名称已经存在');
- }
- if ($this->services->update($id, $data)) {
- return $this->success('修改成功');
- } else {
- return $this->fail('修改失败');
- }
- }
-
- public function delete($id)
- {
- if (!$id || !($info = $this->services->get($id))) {
- return $this->fail('删除的数据不存在');
- }
- if ($info && $info['is_del'] == 0) {
- $this->services->update($id, ['is_del' => 1]);
- }
- return $this->success('删除成功');
- }
- }
|