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