feat(stocktake): implement strict blind stocktake logic with hidden system qty, editable count and status filters

This commit is contained in:
DXC
2026-03-26 17:42:51 +08:00
parent db0444cc13
commit 2a27f2e0df
3 changed files with 348 additions and 28 deletions

View File

@ -72,3 +72,21 @@ export function getBom(parentId: number) {
method: 'get'
})
}
// 获取应盘物资清单(盘点基数)
export function getAllStocktakeItems(params?: { keyword?: string }) {
return request({
url: '/v1/inbound/stock/stocktake/all-items',
method: 'get',
params
})
}
// 更新盘点实盘数(手动修改)
export function updateStocktakeQuantity(data: { stock_id: number; source_table: string; quantity: number }) {
return request({
url: '/v1/inbound/stock/stocktake/update-quantity',
method: 'post',
data
})
}