|
|
|
@ -2626,14 +2626,48 @@ const handleChoose = () => {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const _htMallName = details.selectionList[0].htMallName; |
|
|
|
|
const _flag = details.selectionList.every(item => _htMallName === item.htMallName); |
|
|
|
|
// const _htMallName = details.selectionList[0].htMallName; |
|
|
|
|
// const _flag = details.selectionList.every(item => _htMallName === item.htMallName); |
|
|
|
|
|
|
|
|
|
// if (!_flag) { |
|
|
|
|
// return ElMessage({ |
|
|
|
|
// type: 'warning', |
|
|
|
|
// message: '请选择统一商场开单', |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
let _htMallName = ''; |
|
|
|
|
let _dealerName = ''; |
|
|
|
|
let _brand = ''; |
|
|
|
|
|
|
|
|
|
for (let i = 0; i < details.selectionList.length; i++) { |
|
|
|
|
const value = details.selectionList[i]; |
|
|
|
|
|
|
|
|
|
if (i === 0) { |
|
|
|
|
_htMallName = value.htMallName; |
|
|
|
|
_dealerName = value.dealerName; |
|
|
|
|
_brand = value.brand; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!_flag) { |
|
|
|
|
return ElMessage({ |
|
|
|
|
type: 'warning', |
|
|
|
|
message: '请选择统一商场开单', |
|
|
|
|
}); |
|
|
|
|
if (!_htMallName) { |
|
|
|
|
if ( |
|
|
|
|
_htMallName !== value.htMallName || |
|
|
|
|
_dealerName !== value.dealerName || |
|
|
|
|
_brand !== value.brand |
|
|
|
|
) { |
|
|
|
|
return ElMessage({ |
|
|
|
|
type: 'warning', |
|
|
|
|
message: '请选择统一商场和品牌开单', |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
if (_htMallName !== value.htMallName || _brand !== value.brand) { |
|
|
|
|
return ElMessage({ |
|
|
|
|
type: 'warning', |
|
|
|
|
message: '请选择统一商场和品牌开单', |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const ids = details.selectionList.map(val => val.id); |
|
|
|
|