|
|
|
@ -273,95 +273,104 @@
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
async function scandata() { |
|
|
|
|
//是否有库位id,有库位ID就扫描包条码否则只能扫描库位码 |
|
|
|
|
if (!details.allocationId) { |
|
|
|
|
console.log('details.scancode[0] :>> ', details.scancode[0]); |
|
|
|
|
if (details.scancode[0] === 'T') { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '请扫描库位码', |
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
// #ifdef APP |
|
|
|
|
utils.ttsspke('请扫描库位码') |
|
|
|
|
// #endif |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
console.log('111 :>> ', 111); |
|
|
|
|
let data = { |
|
|
|
|
allocationId: details.scancode, |
|
|
|
|
} |
|
|
|
|
let res = await warehouseUpdownTypeupShelfScanAllocation(data) |
|
|
|
|
console.log(res); |
|
|
|
|
if (res.code == 200) { |
|
|
|
|
details.reqobj = res.data |
|
|
|
|
const _positionArr = details.reqobj.allocationTitle.split('-') |
|
|
|
|
details.reqobj.positionInfo = _positionArr[0] + '层' + _positionArr[1] + '列' |
|
|
|
|
details.allocationId = res.data.allocationId |
|
|
|
|
details.datalist = (res.data?.list) || [] |
|
|
|
|
if (details.checkstate === 2) return details.renderList = details.datalist |
|
|
|
|
// if (details.upshelfScanType === '4') return utils.ttsspke('请扫描托盘码') |
|
|
|
|
// utils.ttsspke('请扫描包条码') |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
if (Number(details.upshelfScanType) == 4 && details.reqobj.trayCode) { |
|
|
|
|
// #ifdef APP |
|
|
|
|
utils.ttsspke('该库位已绑托盘') |
|
|
|
|
// #endif |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (details.upshelfScanType === '3') { |
|
|
|
|
const flag = details.uplistarr.findIndex(val => val.orderPackageCode === details.scancode) |
|
|
|
|
if (flag !== -1) { |
|
|
|
|
try{ |
|
|
|
|
uni.showLoading({ |
|
|
|
|
mask: true |
|
|
|
|
}) |
|
|
|
|
// 是否有库位id,有库位ID就扫描包条码否则只能扫描库位码 |
|
|
|
|
if (!details.allocationId) { |
|
|
|
|
console.log('details.scancode[0] :>> ', details.scancode[0]); |
|
|
|
|
if (details.scancode[0] === 'T') { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '请扫描库位码', |
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
// #ifdef APP |
|
|
|
|
utils.ttsspke('包件重复扫描') |
|
|
|
|
utils.ttsspke('请扫描库位码') |
|
|
|
|
// #endif |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let data = { |
|
|
|
|
upshelfScanType: details.upshelfScanType, |
|
|
|
|
code: details.scancode, |
|
|
|
|
} |
|
|
|
|
let res = await warehouseUpdownTypeupShelfScanGoods(data) |
|
|
|
|
console.log('res>>>>>', res); |
|
|
|
|
if (res.code == 200) { |
|
|
|
|
if (Number(details.upshelfScanType) !== 3) { |
|
|
|
|
const _uplistarr = details.uplistarr |
|
|
|
|
const _orderCodeArr = details.orderCodeArr |
|
|
|
|
const _flag = res.data.every(val => { |
|
|
|
|
if (details.orderCodeArr.includes(val.orderCode)) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '订单已存在, 勿重复扫码', |
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
_uplistarr.push(val) |
|
|
|
|
_orderCodeArr.push(val.orderCode) |
|
|
|
|
return true |
|
|
|
|
}) |
|
|
|
|
if (!_flag) return |
|
|
|
|
details.uplistarr = _uplistarr |
|
|
|
|
details.orderCodeArr = _orderCodeArr |
|
|
|
|
console.log('111 :>> ', 111); |
|
|
|
|
let data = { |
|
|
|
|
allocationId: details.scancode, |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
details.uplistarr = details.uplistarr.concat(res.data) |
|
|
|
|
let res = await warehouseUpdownTypeupShelfScanAllocation(data) |
|
|
|
|
console.log(res); |
|
|
|
|
if (res.code == 200) { |
|
|
|
|
details.reqobj = res.data |
|
|
|
|
const _positionArr = details.reqobj.allocationTitle.split('-') |
|
|
|
|
details.reqobj.positionInfo = _positionArr[0] + '层' + _positionArr[1] + '列' |
|
|
|
|
details.allocationId = res.data.allocationId |
|
|
|
|
details.datalist = (res.data?.list) || [] |
|
|
|
|
if (details.checkstate === 2) return details.renderList = details.datalist |
|
|
|
|
// if (details.upshelfScanType === '4') return utils.ttsspke('请扫描托盘码') |
|
|
|
|
// utils.ttsspke('请扫描包条码') |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
if (Number(details.upshelfScanType) == 4 && details.reqobj.trayCode) { |
|
|
|
|
// #ifdef APP |
|
|
|
|
utils.ttsspke('该库位已绑托盘') |
|
|
|
|
// #endif |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (details.upshelfScanType === '3') { |
|
|
|
|
const flag = details.uplistarr.findIndex(val => val.orderPackageCode === details.scancode) |
|
|
|
|
if (flag !== -1) { |
|
|
|
|
// #ifdef APP |
|
|
|
|
utils.ttsspke('包件重复扫描') |
|
|
|
|
// #endif |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let data = { |
|
|
|
|
upshelfScanType: details.upshelfScanType, |
|
|
|
|
code: details.scancode, |
|
|
|
|
} |
|
|
|
|
let res = await warehouseUpdownTypeupShelfScanGoods(data) |
|
|
|
|
console.log('res>>>>>', res); |
|
|
|
|
if (res.code == 200) { |
|
|
|
|
if (Number(details.upshelfScanType) !== 3) { |
|
|
|
|
const _uplistarr = details.uplistarr |
|
|
|
|
const _orderCodeArr = details.orderCodeArr |
|
|
|
|
const _flag = res.data.every(val => { |
|
|
|
|
if (details.orderCodeArr.includes(val.orderCode)) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '订单已存在, 勿重复扫码', |
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
_uplistarr.push(val) |
|
|
|
|
_orderCodeArr.push(val.orderCode) |
|
|
|
|
return true |
|
|
|
|
}) |
|
|
|
|
if (!_flag) return |
|
|
|
|
details.uplistarr = _uplistarr |
|
|
|
|
details.orderCodeArr = _orderCodeArr |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
details.uplistarr = details.uplistarr.concat(res.data) |
|
|
|
|
} |
|
|
|
|
// 语音 |
|
|
|
|
let _content = '' |
|
|
|
|
if (details.upshelfScanType !== '3') _content = details.uplistarr.reduce((curr, item) => curr + item.shelfNum, 0) + '件' |
|
|
|
|
else _content = details.uplistarr.length + '件' |
|
|
|
|
utils.ttsspke(_content) |
|
|
|
|
|
|
|
|
|
if (details.checkstate === 1) return details.renderList = details.uplistarr |
|
|
|
|
|
|
|
|
|
} else if (res.code === 3001 && res.audio) { |
|
|
|
|
utils.ttsspke(res.audio) |
|
|
|
|
} |
|
|
|
|
// 语音 |
|
|
|
|
let _content = '' |
|
|
|
|
if (details.upshelfScanType !== '3') _content = details.uplistarr.reduce((curr, item) => curr + item.shelfNum, 0) + '件' |
|
|
|
|
else _content = details.uplistarr.length + '件' |
|
|
|
|
utils.ttsspke(_content) |
|
|
|
|
|
|
|
|
|
if (details.checkstate === 1) return details.renderList = details.uplistarr |
|
|
|
|
|
|
|
|
|
} else if (res.code === 3001 && res.audio) { |
|
|
|
|
utils.ttsspke(res.audio) |
|
|
|
|
} |
|
|
|
|
}catch(err){ |
|
|
|
|
console.log('err :>> ', err); |
|
|
|
|
//TODO handle the exception |
|
|
|
|
}finally{ |
|
|
|
|
uni.hideLoading() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
function goorderdetail(item, type) { |
|
|
|
|
// 当type 不是 |
|
|
|
|