Compare commits

..

5 Commits

Author SHA1 Message Date
zx
a7e53d89d8 供应计划页面修改 2026-01-21 18:58:22 +08:00
03c8682225 Merge branch 'main' of http://47.100.212.83:3000/yangzifeng/shzg_projectManage 2026-01-21 18:57:23 +08:00
a83b0c2589 优化入库管理的查询 2026-01-21 18:57:02 +08:00
zx
6047f5850e 库存单据左侧页面修改 2026-01-21 18:12:58 +08:00
cf0cb72aa5 提交 2026-01-21 17:40:42 +08:00
4 changed files with 1234 additions and 1530 deletions

View File

@@ -1,11 +1,11 @@
import request from '@/utils/request'
// 查询库存单据列表
export function listBill(query) {
export function listBill(data) {
return request({
url: '/wisdom/bill/list',
method: 'get',
params: query
method: 'POST',
data: data
})
}
@@ -70,6 +70,14 @@ export function backoutRecord(data) {
data: data
})
}
// 一键入库
export function recordFinish(data) {
return request({
url: '/wisdom/record/finish',
method: 'post',
data: data
})
}

View File

@@ -54,6 +54,7 @@
<el-table v-loading="loading" :data="pcdedetailList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="库位编号" align="center" prop="pcode" />
<el-table-column label="RFID" align="center" width="250" prop="encodedId" />
<el-table-column label="所属场景" align="center" prop="sceneName" />
<el-table-column label="所属大库" align="center" prop="parentWarehouseName" />
<el-table-column label="所属小库" align="center" prop="warehouseName" />

View File

@@ -530,6 +530,7 @@ function handleQuery() {
/** 重置按钮操作 */
function resetQuery() {
proxy.resetForm("queryRef");
importTime.value=''
handleQuery();
}

File diff suppressed because it is too large Load Diff