fix(inventory_store): 修复库存盘点逻辑
- 引入 Raw 类以处理复杂的数据库查询 - 使用 Raw 实例解决 nums 和 enter_nums 直接比较的问题
This commit is contained in:
parent
d3d3556038
commit
8567f2de4a
@ -0,0 +1,96 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\controller\inventory_warehouse;
|
||||
|
||||
|
||||
use app\admin\controller\BaseAdminController;
|
||||
use app\admin\lists\inventory_warehouse\InventoryWarehouseLists;
|
||||
use app\admin\logic\inventory_warehouse\InventoryWarehouseLogic;
|
||||
use app\admin\validate\inventory_warehouse\InventoryWarehouseValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 仓库盘存控制器
|
||||
* Class InventoryWarehouseController
|
||||
* @package app\admin\controller\inventory_warehouse
|
||||
*/
|
||||
class InventoryWarehouseController extends BaseAdminController
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取仓库盘存列表
|
||||
* @return \think\response\Json
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
return $this->dataLists(new InventoryWarehouseLists());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加仓库盘存
|
||||
* @return \think\response\Json
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$params = (new InventoryWarehouseValidate())->post()->goCheck('add');
|
||||
$result = InventoryWarehouseLogic::add($params);
|
||||
if (true === $result) {
|
||||
return $this->success('添加成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(InventoryWarehouseLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑仓库盘存
|
||||
* @return \think\response\Json
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$params = (new InventoryWarehouseValidate())->post()->goCheck('edit');
|
||||
$params['admin_id']=$this->adminId;
|
||||
$result = InventoryWarehouseLogic::edit($params);
|
||||
if (true === $result) {
|
||||
return $this->success('编辑成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(InventoryWarehouseLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除仓库盘存
|
||||
* @return \think\response\Json
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
$params = (new InventoryWarehouseValidate())->post()->goCheck('delete');
|
||||
InventoryWarehouseLogic::delete($params);
|
||||
return $this->success('删除成功', [], 1, 1);
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 门店盘存核准
|
||||
* @return \think\response\Json
|
||||
* @author admin
|
||||
* @date 2025/02/14 11:46
|
||||
*/
|
||||
public function enter_nums()
|
||||
{
|
||||
$params = $this->request->post();
|
||||
$params['warehouse_id']=1;
|
||||
$result = InventoryWarehouseLogic::enterNums($params);
|
||||
if (true === $result) {
|
||||
return $this->success('核准成功', [], 1, 1);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,79 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\lists\inventory_warehouse;
|
||||
|
||||
|
||||
use app\admin\lists\BaseAdminDataLists;
|
||||
use app\common\model\inventory_warehouse\InventoryWarehouse;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
use app\common\model\auth\Admin;
|
||||
use app\common\model\store_product\StoreProduct;
|
||||
|
||||
/**
|
||||
* 仓库盘存列表
|
||||
* Class InventoryWarehouseLists
|
||||
* @package app\admin\listsinventory_warehouse
|
||||
*/
|
||||
class InventoryWarehouseLists extends BaseAdminDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['product_id'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取仓库盘存列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return InventoryWarehouse::where($this->searchWhere)
|
||||
->field(['id', 'product_id', 'admin_id', 'warehouse_id', 'nums', 'enter_nums', 'status','create_time'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()->each(function ($item) {
|
||||
$item->status_name = match ($item->status) {
|
||||
0 => '待盘点',
|
||||
1 => '盘点中',
|
||||
2 => '盘点完成',
|
||||
default => '未知',
|
||||
};
|
||||
if($item->admin_id){
|
||||
$item->admin_name = Admin::where('id',$item->admin_id)->value('name');
|
||||
}
|
||||
if($item->product_id){
|
||||
$item->product_name = StoreProduct::where('id',$item->product_id)->withTrashed()->value('store_name');
|
||||
}
|
||||
})
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取仓库盘存数量
|
||||
* @return int
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return InventoryWarehouse::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
@ -7,6 +7,7 @@ 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\db\Raw;
|
||||
use think\facade\Db;
|
||||
|
||||
|
||||
@ -76,7 +77,7 @@ class InventoryStoreLogic extends BaseLogic
|
||||
'status'=>2
|
||||
]);
|
||||
|
||||
$arr=InventoryStore::where('store_id', $params['store_id'])->where('nums','<>','enter_nums')->whereDay('create_time',$params['create_time'])->select();
|
||||
$arr=InventoryStore::where('store_id', $params['store_id'])->where('nums','<>',new Raw('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']
|
||||
|
108
app/admin/logic/inventory_warehouse/InventoryWarehouseLogic.php
Normal file
108
app/admin/logic/inventory_warehouse/InventoryWarehouseLogic.php
Normal file
@ -0,0 +1,108 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\logic\inventory_warehouse;
|
||||
|
||||
|
||||
use app\common\model\inventory_warehouse\InventoryWarehouse;
|
||||
use app\common\logic\BaseLogic;
|
||||
use app\common\model\warehouse_product_storege\WarehouseProductStorege;
|
||||
use support\exception\BusinessException;
|
||||
use think\db\Raw;
|
||||
use think\facade\Db;
|
||||
|
||||
|
||||
/**
|
||||
* 仓库盘存逻辑
|
||||
* Class InventoryWarehouseLogic
|
||||
* @package app\admin\logic\inventory_warehouse
|
||||
*/
|
||||
class InventoryWarehouseLogic extends BaseLogic
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加仓库盘存
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public static function add(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
$find=InventoryWarehouse::where('warehouse_id', 1)->whereDay('create_time')->find();
|
||||
if($find){
|
||||
throw new BusinessException('今日数据已生成');
|
||||
}
|
||||
$arr=WarehouseProductStorege::where('warehouse_id',1)->field('product_id,nums,warehouse_id')->select()->toArray();
|
||||
(new InventoryWarehouse())->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 17:24
|
||||
*/
|
||||
public static function edit(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
InventoryWarehouse::where('id', $params['id'])->update([
|
||||
'admin_id'=>$params['admin_id']??0,
|
||||
'enter_nums'=>$params['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 17:24
|
||||
*/
|
||||
public static function delete(array $params): bool
|
||||
{
|
||||
return InventoryWarehouse::destroy($params['id']);
|
||||
}
|
||||
|
||||
public static function enterNums(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
InventoryWarehouse::where('warehouse_id', $params['warehouse_id'])->whereDay('create_time',$params['create_time'])->update([
|
||||
'status'=>2
|
||||
]);
|
||||
|
||||
$arr=InventoryWarehouse::where('warehouse_id', $params['warehouse_id'])->where('nums','<>',new Raw('enter_nums'))->whereDay('create_time',$params['create_time'])->select();
|
||||
foreach ($arr as $k=>$v){
|
||||
WarehouseProductStorege::where('product_id',$v['product_id'])->where('warehouse_id',$v['warehouse_id'])->update([
|
||||
'nums'=>$v['enter_nums']
|
||||
]);
|
||||
}
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Throwable $e) {
|
||||
Db::rollback();
|
||||
throw new BusinessException($e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,82 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\validate\inventory_warehouse;
|
||||
|
||||
|
||||
use app\common\validate\BaseValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 仓库盘存验证器
|
||||
* Class InventoryWarehouseValidate
|
||||
* @package app\admin\validate\inventory_warehouse
|
||||
*/
|
||||
class InventoryWarehouseValidate extends BaseValidate
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* 参数描述
|
||||
* @var string[]
|
||||
*/
|
||||
protected $field = [
|
||||
'id' => 'id',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加场景
|
||||
* @return InventoryWarehouseValidate
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->remove('id', true);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑场景
|
||||
* @return InventoryWarehouseValidate
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除场景
|
||||
* @return InventoryWarehouseValidate
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function sceneDelete()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 详情场景
|
||||
* @return InventoryWarehouseValidate
|
||||
* @author admin
|
||||
* @date 2025/02/14 17:24
|
||||
*/
|
||||
public function sceneDetail()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
}
|
22
app/common/model/inventory_warehouse/InventoryWarehouse.php
Normal file
22
app/common/model/inventory_warehouse/InventoryWarehouse.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace app\common\model\inventory_warehouse;
|
||||
|
||||
|
||||
use app\common\model\BaseModel;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
|
||||
/**
|
||||
* 仓库盘存模型
|
||||
* Class InventoryWarehouse
|
||||
* @package app\common\model\inventory_warehouse
|
||||
*/
|
||||
class InventoryWarehouse extends BaseModel
|
||||
{
|
||||
use SoftDelete;
|
||||
protected $name = 'inventory_warehouse';
|
||||
protected $deleteTime = 'delete_time';
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user