Compare commits

...

4 Commits

4 changed files with 256 additions and 710 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