Browse Source

修复部分bug

dev-xx
qb 5 months ago
parent
commit
86b5d638ab
  1. 1
      src/views/distribution/inventory/BookingNote.vue
  2. 48
      src/views/distribution/inventory/CreateOrder.vue

1
src/views/distribution/inventory/BookingNote.vue

@ -137,7 +137,6 @@
v-model="details.query.orderCode"
type="textarea"
placeholder="订单自编号"
disabled
></el-input>
</el-form-item>
</div>

48
src/views/distribution/inventory/CreateOrder.vue

@ -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);

Loading…
Cancel
Save