出入库

This commit is contained in:
蔡玲
2024-11-04 10:09:29 +08:00
parent 8a29d58cbd
commit 98e1069b30
2 changed files with 3 additions and 3 deletions

View File

@@ -509,7 +509,7 @@
return return
} }
try { try {
let res = await easOutInBillUpdate(this.checkData) let res = await easOutInBillUpdate(this.crType, this.checkData)
if (res.code === 1) { if (res.code === 1) {
this.disabled1 = false this.disabled1 = false
this.checkData = [] this.checkData = []

View File

@@ -45,9 +45,9 @@ export const easOutInBillDetailPage = (djid, page, size) => request({
} }
}) })
// 3.审核出入库单据 // 3.审核出入库单据
export const easOutInBillUpdate = (arr) => request({ export const easOutInBillUpdate = (type, arr) => request({
url:'api/easOutInBill/audit', url:'api/easOutInBill/audit',
type: 1, type: type,
data: arr data: arr
}) })
// 4.查询出单据明细库位 // 4.查询出单据明细库位