Commit 57c96009 authored by 黄媛媛's avatar 黄媛媛

自由行不验证机位数

parent bdea1e53
......@@ -3654,7 +3654,7 @@
},
saveOrder() {
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
if (this.addMsg.GroupType !== '4') {
if (this.addMsg.GroupType !== '4' && this.addMsg.GroupType !== '3') {
if (
Number(this.addMsg.ManNum) +
Number(this.addMsg.ChirdNum) +
......
......@@ -4514,7 +4514,10 @@
},
saveOrder() {
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
if (this.addMsg.GroupType !== '4') {
if (this.addMsg.GroupType !== '4' && this.addMsg.GroupType !== '3') {
console.log("this.addMsg.GroupType",this.addMsg.GroupType)
console.log("this.IsChargeLossOrders",this.IsChargeLossOrders)
if (
Number(this.addMsg.ManNum) +
Number(this.addMsg.ChirdNum) +
......
......@@ -1941,7 +1941,7 @@
}
}
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
if (this.addMsg.GroupType !== '4') {
if (this.addMsg.GroupType !== '4' && this.addMsg.GroupType !== '3') {
if ((Number(this.addMsg.ManNum) + Number(this.addMsg.ChirdNum) + Number(this.addMsg.OldPeopleNum)) != Number(
this.addMsg.YSeatNum) + Number(this.addMsg.ESeatNum) + Number(this.addMsg.FSeatNum)) {
this.$message.warning('人数和机位数不相等!')
......
......@@ -4505,7 +4505,7 @@
},
saveOrder() {
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
if (this.addMsg.GroupType !== '4') {
if (this.addMsg.GroupType !== '4' && this.addMsg.GroupType !== '3') {
if (
Number(this.addMsg.ManNum) +
Number(this.addMsg.ChirdNum) +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment