no message

This commit is contained in:
蔡玲
2024-10-25 15:46:19 +08:00
parent 529b320af5
commit 7937779ea0
2 changed files with 3 additions and 3 deletions

View File

@@ -460,7 +460,7 @@
// 库存提交-确认接口
async _inWarehouseCommit () {
try {
let res = await inWarehouseCommit(this.subCheckData)
let res = await inWarehouseCommit(this.subCheckData, , this.crType)
if (res.code === 1) {
this._easOutInBillPage()
}

View File

@@ -197,7 +197,7 @@ export const addAssignDtl = (arr) => request({
data: arr
})
// 库存提交
export const inWarehouseCommit = (arr) => request({
export const inWarehouseCommit = (arr, type) => request({
url:'api/easOutInBillDetail/inWarehouseCommit',
data: arr
data: {details: arr, type: type}
})