> ', _node);
_node.style.transition = 'all 0.3s';
setNodeHeight(_node, '500px');
+
+ this.setTableHeight();
});
},
checkOrder(row, index) {
@@ -2128,6 +2141,8 @@ export default {
const _node = document.querySelector('.stockListShow .maboxhi');
_node.style.transition = 'all 0.3s';
setNodeHeight(_node, '500px');
+
+ this.setTableHeight();
});
}
);
@@ -2571,7 +2586,7 @@ export default {
if (item.id === row.id) {
this.orderData.splice(index, 1);
}
- console.log(this.orderData,'当前存在的数据');
+ console.log(this.orderData, '当前存在的数据');
});
// 当两个列表没有数据时, 清空限制
if (this.inventoryData.length === 0 && this.orderData.length === 0) this.marketName = '';
@@ -2819,17 +2834,22 @@ export default {
// }
// return true;
// });
+ console.log('this.inventoryList :>> ', this.inventoryList);
+
const stockArr = [...this.inventoryData, ...this.inventoryList];
// 检测商场是否选择统一商场
const _isUnifyMarketName = stockArr.every(value => {
// 设置同一商场
- if (this.marketName === '') this.marketName = value.marketName;
+ if (this.marketName === '') this.marketName = removeZeroWidth(value.marketName);
if (this.marketName !== value.marketName) {
this.$message.warning('请选择统一商场!!!');
return false;
- } else if (value.reservationNum > value.applyNum) {
+ } else if (Number(value.reservationNum) > Number(value.applyNum)) {
+ console.log('value >>>>>>>>', value);
+ console.log('Number(value.reservationNum) :>> ', Number(value.reservationNum));
+ console.log('Number(value.applyNum) :>> ', Number(value.applyNum), value.applyNum);
this.$message.warning('该库存品数量输入有误!!!');
return false;
}
@@ -2840,7 +2860,6 @@ export default {
return;
}
- console.log('this.inventoryList :>> ', this.inventoryList);
this.inventoryData = stockArr;
this.stockListShow = false;
@@ -2852,10 +2871,10 @@ export default {
console.log('orderList-------------》', this.orderList);
if (this.orderList.length === 0) return this.$message.warning('最少选择一条数据!!!');
const list = [...this.orderData, ...this.orderList];
- let _name = list[0].customerName.trim();
- let _address = list[0].customerAddress.trim();
- let _phone = list[0].customerTelephone.trim();
- if (this.marketName === '') this.marketName = list[0].mallName.trim();
+ let _name = removeZeroWidth(list[0].customerName.trim());
+ let _address = removeZeroWidth(list[0].customerAddress.trim());
+ let _phone = removeZeroWidth(list[0].customerTelephone.trim());
+ if (this.marketName === '') this.marketName = removeZeroWidth(list[0].mallName.trim());
// 设置商场名称
if (this.marketName === '') this.marketName = this.marketName;
@@ -2867,10 +2886,20 @@ export default {
return false;
}
- if (
- item.customerName.trim() !== _name ||
- item.customerAddress.trim() !== _address ||
+ console.log(' item.customerName.trim() !== _name :>> ', item.customerName.trim() !== _name);
+ console.log(
+ ' item.customerName.trim() !== _name :>> ',
+ item.customerAddress.trim() !== _address
+ );
+ console.log(
+ ' item.customerName.trim() !== _name :>> ',
item.customerTelephone.trim() !== _phone
+ );
+
+ if (
+ removeZeroWidth(item.customerName.trim()) !== _name ||
+ removeZeroWidth(item.customerAddress.trim()) !== _address ||
+ removeZeroWidth(item.customerTelephone.trim()) !== _phone
) {
console.log('123');
this.$message.warning('请选择统一顾客订单!!!');
diff --git a/src/views/distribution/turndelivery/deliveryDiscuss.vue b/src/views/distribution/turndelivery/deliveryDiscuss.vue
index 39ed1b27..37a1a08a 100644
--- a/src/views/distribution/turndelivery/deliveryDiscuss.vue
+++ b/src/views/distribution/turndelivery/deliveryDiscuss.vue
@@ -381,7 +381,6 @@
-
@@ -441,7 +440,14 @@
+
+
+
@@ -453,9 +459,7 @@
placeholder="请输入顾客地址"
/>
-
-
-
+