|
|
|
@ -1052,7 +1052,7 @@ export default {
|
|
|
|
|
let st = false; |
|
|
|
|
this.selectionList.forEach( i =>{ |
|
|
|
|
console.log("yuyuyuuyu",i); |
|
|
|
|
if(i.reservationStatusName === "已预约"){ |
|
|
|
|
if(i.reservationStatus === "30"){ |
|
|
|
|
st = true; |
|
|
|
|
this.$message.warning(i.orderCode+" - 已预约,请勿重复预约!!!"); |
|
|
|
|
} |
|
|
|
@ -1096,7 +1096,7 @@ export default {
|
|
|
|
|
let lost = false; |
|
|
|
|
for (const i of this.selectionList) { |
|
|
|
|
console.log("yuyuyuuyu",i); |
|
|
|
|
if(i.reservationStatusName == "已预约"){ |
|
|
|
|
if(i.reservationStatus == "30"){ |
|
|
|
|
st = true; |
|
|
|
|
this.$message.warning(i.orderCode+" - 已预约,无法转为库存品!!!"); |
|
|
|
|
} |
|
|
|
@ -1249,12 +1249,12 @@ export default {
|
|
|
|
|
//通知提货 |
|
|
|
|
handleCallDelivery(ind){ |
|
|
|
|
if (this.selectionList.length === 0) { |
|
|
|
|
this.$message.warning("请选择至少一条数据"); |
|
|
|
|
this.$message.warning("请选择至少一条数据!!!"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
let a = this.selectionList.find( i => i.reservationStatusName == '已预约'); |
|
|
|
|
let a = this.selectionList.find( i => i.reservationStatus == '30'); |
|
|
|
|
if(!!a){ |
|
|
|
|
this.$message.warning("有已预约的数据,不能修改服务类型"); |
|
|
|
|
this.$message.warning("有已预约的数据,不能修改!!!"); |
|
|
|
|
return ; |
|
|
|
|
} |
|
|
|
|
switch (ind) { |
|
|
|
|