This commit is contained in:
parent
2ba732b2bc
commit
f809c68d5a
|
|
@ -416,7 +416,7 @@ const boxOut = async () => {
|
|||
// 标准箱出库确认
|
||||
const boxOutBound = async () => {
|
||||
// 解构所需要的数据
|
||||
const { typeId, parentId } = queryParams.value
|
||||
const { typeId, parentId, publishTask } = queryParams.value
|
||||
// 组装出库参数
|
||||
const paramsList = []
|
||||
boxInfo.value.recordList.map((e) => {
|
||||
|
|
@ -430,6 +430,7 @@ const boxOutBound = async () => {
|
|||
outNum: 1,
|
||||
parentId,
|
||||
typeId,
|
||||
publishTask
|
||||
})
|
||||
})
|
||||
console.log(paramsList)
|
||||
|
|
@ -558,7 +559,7 @@ const getMaInfoScan = async () => {
|
|||
// 二维码出库确认
|
||||
const confirmCodeOutBound = async () => {
|
||||
// 解构所需要的数据
|
||||
const { typeId, parentId } = queryParams.value
|
||||
const { typeId, parentId, publishTask } = queryParams.value
|
||||
// 组装出库参数
|
||||
const paramsList = []
|
||||
paramsList.push({
|
||||
|
|
@ -573,6 +574,7 @@ const confirmCodeOutBound = async () => {
|
|||
typeId,
|
||||
typeName: codeData.value.typeName,
|
||||
typeModelName: codeData.value.typeModelName,
|
||||
publishTask
|
||||
})
|
||||
const res = await setOutboundNumAPI({ leaseOutDetailsList: paramsList })
|
||||
console.log('333333333333', res)
|
||||
|
|
|
|||
Loading…
Reference in New Issue