This commit is contained in:
parent
c6e8299ccd
commit
ba88efd56a
|
|
@ -259,6 +259,7 @@ const cinfirmCodeInBound = async () => {
|
|||
typeId: queryParams.value.typeId,
|
||||
agreementId: queryParams.value.agreementId,
|
||||
maCodeList: arr,
|
||||
inputCode:queryParams.value.inputCode
|
||||
}
|
||||
const res = await repairInputWarehouseApi(param)
|
||||
if (res.code === 200) {
|
||||
|
|
@ -350,6 +351,7 @@ const confirmBoxInBound = async () => {
|
|||
agreementId: queryParams.value.agreementId,
|
||||
inputType: 3,
|
||||
maCodeList: boxInfo.value,
|
||||
inputCode:queryParams.value.inputCode
|
||||
}
|
||||
const res = await repairInputWarehouseApi(param)
|
||||
if (res.code === 200) {
|
||||
|
|
@ -471,6 +473,7 @@ const onHandleInbound = async () => {
|
|||
typeId: queryParams.value.typeId,
|
||||
agreementId: queryParams.value.agreementId,
|
||||
maCodeList: paramsList,
|
||||
inputCode:queryParams.value.inputCode
|
||||
}
|
||||
console.log(param)
|
||||
const res = await repairInputWarehouseApi(param)
|
||||
|
|
|
|||
|
|
@ -238,7 +238,7 @@ const cinfirmCodeInBound = async () => {
|
|||
// agreementId: maInfo.value.agreementId,
|
||||
// maCodeList: arr,
|
||||
// }
|
||||
let param = { qrCode: qrCode.value, maCode: maInfo.value.maCode, maId: maInfo.value.maId }
|
||||
let param = { qrCode: qrCode.value, maCode: maInfo.value.maCode, maId: maInfo.value.maId,inputCode:maInfo.value.inputCode }
|
||||
console.log("bbbbbbbbbbbbbbbbb")
|
||||
const res = await repairInputWarehouseApiTwo(param)
|
||||
console.log("yyyyyyyyy",res)
|
||||
|
|
|
|||
|
|
@ -233,6 +233,7 @@ const onClick=async (e,item)=> {
|
|||
const confirmNumInBound = async () => {
|
||||
console.log(inBoundNum.value)
|
||||
if (countdown.value > 0) return
|
||||
console.log(inputItem.value.inputCode)
|
||||
if(inBoundNum.value==0){
|
||||
uni.showToast({ title: '入库数量需大于0!',icon: 'none'})
|
||||
}else{
|
||||
|
|
@ -240,7 +241,8 @@ const confirmNumInBound = async () => {
|
|||
taskId:taskInfo.value.taskId,
|
||||
typeId:inputItem.value.typeId,
|
||||
pendingInputNum:inputItem.value.pendingInputNum,
|
||||
inputNum:inBoundNum.value
|
||||
inputNum:inBoundNum.value,
|
||||
inputCode:inputItem.value.inputCode
|
||||
}
|
||||
const res = await repairInputWarehouseApi(param)
|
||||
if(res.code==200){
|
||||
|
|
|
|||
Loading…
Reference in New Issue