|
|
@@ -737,6 +737,10 @@ const _getRecommendedLocation = async (item, options = {}) => {
|
|
|
const total = barcodeQuantity(barcodeActiveList.value)
|
|
|
const params = { warehouse, lotNum: lotNumber, owner, sku, qty: total, lotAtt08}
|
|
|
if (locationType.value) params.locationUse = locationType.value
|
|
|
+ // 挂装区:根据容器号是否含 TH- 判断是否退货上架
|
|
|
+ if (locationType.value === 'HANGING') {
|
|
|
+ params.returnPutaway = containerNo.value?.includes('TH-') ?? false
|
|
|
+ }
|
|
|
//换一换参数
|
|
|
if (fromChangeLocation) {
|
|
|
const { taskNo, businessNo, lotNum } = item
|