feat(inventory_store): 添加门店盘存功能

- 新增 InventoryStoreController 控制器,实现门店盘存列表、添加、编辑和核准
This commit is contained in:
mkm 2025-02-14 16:01:53 +08:00
parent 45418d5f55
commit d718fd567d
5 changed files with 369 additions and 0 deletions

View File

@ -0,0 +1,81 @@
<?php
namespace app\admin\controller\inventory_store;
use app\admin\controller\BaseAdminController;
use app\admin\lists\inventory_store\InventoryStoreLists;
use app\admin\logic\inventory_store\InventoryStoreLogic;
use app\admin\validate\inventory_store\InventoryStoreValidate;
/**
* 门店盘存控制器
* Class InventoryStoreController
* @package app\admin\controller\inventory_store
*/
class InventoryStoreController extends BaseAdminController
{
/**
* @notes 获取门店盘存列表
* @return \think\response\Json
* @author admin
* @date 2025/02/14 11:46
*/
public function lists()
{
return $this->dataLists(new InventoryStoreLists());
}
/**
* @notes 添加门店盘存
* @return \think\response\Json
* @author admin
* @date 2025/02/14 11:46
*/
public function add()
{
$params = (new InventoryStoreValidate())->post()->goCheck('add');
$result = InventoryStoreLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(InventoryStoreLogic::getError());
}
/**
* @notes 编辑门店盘存
* @return \think\response\Json
* @author admin
* @date 2025/02/14 11:46
*/
public function edit()
{
$params = (new InventoryStoreValidate())->post()->goCheck('edit');
$result = InventoryStoreLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(InventoryStoreLogic::getError());
}
/**
* @notes 门店盘存核准
* @return \think\response\Json
* @author admin
* @date 2025/02/14 11:46
*/
public function enter_nums()
{
$params = $this->request->post();
$result = InventoryStoreLogic::enterNums($params);
if (true === $result) {
return $this->success('核准成功', [], 1, 1);
}
}
}

View File

@ -0,0 +1,71 @@
<?php
namespace app\admin\lists\inventory_store;
use app\admin\lists\BaseAdminDataLists;
use app\common\model\inventory_store\InventoryStore;
use app\common\lists\ListsSearchInterface;
/**
* 门店盘存列表
* Class InventoryStoreLists
* @package app\admin\listsinventory_store
*/
class InventoryStoreLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author admin
* @date 2025/02/14 11:46
*/
public function setSearch(): array
{
return [
'=' => ['store_id', 'nums', 'enter_nums', 'status'],
];
}
/**
* @notes 获取门店盘存列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author admin
* @date 2025/02/14 11:46
*/
public function lists(): array
{
return InventoryStore::where($this->searchWhere)
->field(['id', 'product_id', 'admin_id', 'staff_id', 'store_id', 'nums', 'enter_nums', 'status', 'create_time'])
->limit($this->limitOffset, $this->limitLength)
->order(['create_time' => 'desc'])
->select()->each(function ($item) {
$item->status_name = match ($item->status) {
0 => '待盘点',
1 => '盘点中',
2 => '盘点完成',
default => '未知',
};
})
->toArray();
}
/**
* @notes 获取门店盘存数量
* @return int
* @author admin
* @date 2025/02/14 11:46
*/
public function count(): int
{
return InventoryStore::where($this->searchWhere)->count();
}
}

View File

@ -0,0 +1,113 @@
<?php
namespace app\admin\logic\inventory_store;
use app\common\model\inventory_store\InventoryStore;
use app\common\logic\BaseLogic;
use app\common\model\store_branch_product\StoreBranchProduct;
use support\exception\BusinessException;
use think\facade\Db;
/**
* 门店盘存逻辑
* Class InventoryStoreLogic
* @package app\admin\logic\inventory_store
*/
class InventoryStoreLogic extends BaseLogic
{
/**
* @notes 添加门店盘存
* @param array $params
* @return bool
* @author admin
* @date 2025/02/14 11:46
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
$arr=(new StoreBranchProduct())->field('product_id,store_id,stock as nums')->select()->toArray();
(new InventoryStore())->saveAll($arr);
Db::commit();
return true;
} catch (\Throwable $e) {
Db::rollback();
throw new BusinessException($e->getMessage());
}
}
/**
* @notes 编辑门店盘存
* @param array $params
* @return bool
* @author admin
* @date 2025/02/14 11:46
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
InventoryStore::where('id', $params['id'])->update([
'enter_nums'=>$params['nums']
]);
Db::commit();
return true;
} catch (\Throwable $e) {
Db::rollback();
throw new BusinessException($e->getMessage());
}
}
public static function enterNums(array $params): bool
{
Db::startTrans();
try {
InventoryStore::where('store_id', $params['store_id'])->whereDay('create_time',$params['create_time'])->update([
'status'=>2
]);
$arr=InventoryStore::where('store_id', $params['store_id'])->where('nums','<>','enter_nums')->whereDay('create_time',$params['create_time'])->select();
foreach ($arr as $k=>$v){
StoreBranchProduct::where('product_id',$v['product_id'])->where('store_id',$v['store_id'])->update([
'stock'=>$v['enter_nums']
]);
}
Db::commit();
return true;
} catch (\Throwable $e) {
Db::rollback();
throw new BusinessException($e->getMessage());
}
}
/**
* @notes 删除门店盘存
* @param array $params
* @return bool
* @author admin
* @date 2025/02/14 11:46
*/
public static function delete(array $params): bool
{
return InventoryStore::destroy($params['id']);
}
/**
* @notes 获取门店盘存详情
* @param $params
* @return array
* @author admin
* @date 2025/02/14 11:46
*/
public static function detail($params): array
{
return InventoryStore::findOrEmpty($params['id'])->toArray();
}
}

View File

@ -0,0 +1,82 @@
<?php
namespace app\admin\validate\inventory_store;
use app\common\validate\BaseValidate;
/**
* 门店盘存验证器
* Class InventoryStoreValidate
* @package app\admin\validate\inventory_store
*/
class InventoryStoreValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
];
/**
* @notes 添加场景
* @return InventoryStoreValidate
* @author admin
* @date 2025/02/14 11:46
*/
public function sceneAdd()
{
return $this->remove('id', true);
}
/**
* @notes 编辑场景
* @return InventoryStoreValidate
* @author admin
* @date 2025/02/14 11:46
*/
public function sceneEdit()
{
return $this->only(['id']);
}
/**
* @notes 删除场景
* @return InventoryStoreValidate
* @author admin
* @date 2025/02/14 11:46
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return InventoryStoreValidate
* @author admin
* @date 2025/02/14 11:46
*/
public function sceneDetail()
{
return $this->only(['id']);
}
}

View File

@ -0,0 +1,22 @@
<?php
namespace app\common\model\inventory_store;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 门店盘存模型
* Class InventoryStore
* @package app\common\model\inventory_store
*/
class InventoryStore extends BaseModel
{
use SoftDelete;
protected $name = 'inventory_store';
protected $deleteTime = 'delete_time';
}