Commit 1ff3b5a2 authored by zhengke's avatar zhengke

no message

parent 25a8916c
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
</div> </div>
<div> <div>
<el-pagination class="Mypagination" background @current-change="handleCurrentChange" <el-pagination class="Mypagination" background @current-change="handleCurrentChange"
:page-sizes="[30, 60, 90, 100]" :page-size="msg.pageSize" layout="total, sizes, prev, pager, next" :page-sizes="[15, 30, 60, 90, 100]" :page-size="msg.pageSize" layout="total, sizes, prev, pager, next"
@size-change="handleSizeChange" :total="total"> @size-change="handleSizeChange" :total="total">
</el-pagination> </el-pagination>
</div> </div>
......
...@@ -200,7 +200,7 @@ ...@@ -200,7 +200,7 @@
<orderList :dataList="dataList" :loading="loading" @emptyMore="emptyMore" :superManage="superManage"></orderList> <orderList :dataList="dataList" :loading="loading" @emptyMore="emptyMore" :superManage="superManage"></orderList>
<div> <div>
<el-pagination class="Mypagination" background @current-change="handleCurrentChange" <el-pagination class="Mypagination" background @current-change="handleCurrentChange"
:page-sizes="[30, 60, 90, 100]" :page-size="msg.pageSize" layout="total, sizes, prev, pager, next" :page-sizes="[15, 30, 60, 90, 100]" :page-size="msg.pageSize" layout="total, sizes, prev, pager, next"
@size-change="handleSizeChange" :total="total"> @size-change="handleSizeChange" :total="total">
</el-pagination> </el-pagination>
</div> </div>
...@@ -214,6 +214,24 @@ ...@@ -214,6 +214,24 @@
}, },
data() { data() {
return { return {
MultipleChoiceList: [ //多选项目
{
Name: '机票',
Id: '1'
}, {
Name: '签证',
Id: '2'
}, {
Name: '地接',
Id: '3'
}, {
Name: '套餐',
Id: '4'
}, {
Name: '其他',
Id: '5'
}
],
superManage:"订单统计", superManage:"订单统计",
StatModel:{},// 合计 StatModel:{},// 合计
loading:false, loading:false,
...@@ -351,6 +369,18 @@ ...@@ -351,6 +369,18 @@
}); });
}; };
addList(data); addList(data);
data.forEach(item=>{
if(item.OrderType){
let list = item.OrderType&&item.OrderType.split(',')
for(let j=0;j<list.length;j++){
for(let i=0;i<this.MultipleChoiceList.length;i++){
if(list[j]==this.MultipleChoiceList[i].Id){
item.MultipleChoiceList.push(this.MultipleChoiceList[i])
}
}
}
}
})
this.dataList = res.data.data.Data.pageData; this.dataList = res.data.data.Data.pageData;
this.total = res.data.data.Data.count; this.total = res.data.data.Data.count;
this.StatModel = res.data.data.StatModel this.StatModel = res.data.data.StatModel
......
...@@ -183,7 +183,7 @@ ...@@ -183,7 +183,7 @@
<orderList :dataList="dataList" :loading="loading" @emptyMore="emptyMore"></orderList> <orderList :dataList="dataList" :loading="loading" @emptyMore="emptyMore"></orderList>
<div> <div>
<el-pagination class="Mypagination" background @current-change="handleCurrentChange" <el-pagination class="Mypagination" background @current-change="handleCurrentChange"
:page-sizes="[30, 60, 90, 100]" :page-size="msg.pageSize" layout="total, sizes, prev, pager, next" :page-sizes="[15, 30, 60, 90, 100]" :page-size="msg.pageSize" layout="total, sizes, prev, pager, next"
@size-change="handleSizeChange" :total="total"> @size-change="handleSizeChange" :total="total">
</el-pagination> </el-pagination>
</div> </div>
...@@ -197,6 +197,24 @@ ...@@ -197,6 +197,24 @@
}, },
data() { data() {
return { return {
MultipleChoiceList: [ //多选项目
{
Name: '机票',
Id: '1'
}, {
Name: '签证',
Id: '2'
}, {
Name: '地接',
Id: '3'
}, {
Name: '套餐',
Id: '4'
}, {
Name: '其他',
Id: '5'
}
],
StatModel:{},// 合计 StatModel:{},// 合计
loading:false, loading:false,
total:0, total:0,
...@@ -332,6 +350,18 @@ ...@@ -332,6 +350,18 @@
}); });
}; };
addList(data); addList(data);
data.forEach(item=>{
if(item.OrderType){
let list = item.OrderType&&item.OrderType.split(',')
for(let j=0;j<list.length;j++){
for(let i=0;i<this.MultipleChoiceList.length;i++){
if(list[j]==this.MultipleChoiceList[i].Id){
item.MultipleChoiceList.push(this.MultipleChoiceList[i])
}
}
}
}
})
this.dataList = res.data.data.Data.pageData; this.dataList = res.data.data.Data.pageData;
this.total = res.data.data.Data.count; this.total = res.data.data.Data.count;
this.StatModel = res.data.data.StatModel this.StatModel = res.data.data.StatModel
......
...@@ -89,11 +89,11 @@ ...@@ -89,11 +89,11 @@
{{item.TaxMoney}} {{item.TaxMoney}}
</td> </td>
<td style="border:none"> <td style="border:none">
{{item.DueinMoney}} <span :style="{color: item.DueinMoney!=0?'red':''}">{{item.DueinMoney}}</span>
</td> </td>
<td style="border:none"> <td style="border:none">
<p class="TicketVoucher-box"> <p class="TicketVoucher-box">
<span @click="modifyStatus(item)" <span @click="item.TicketStatusName!='无需机票'?modifyStatus(item):''"
class="cp tatusText" class="cp tatusText"
:class="item.TicketStatus==1?'grey': :class="item.TicketStatus==1?'grey':
(item.TicketStatus==2?'success': (item.TicketStatus==2?'success':
...@@ -101,7 +101,8 @@ ...@@ -101,7 +101,8 @@
(item.TicketStatus==4?'Black':'')))"> (item.TicketStatus==4?'Black':'')))">
{{item.TicketStatusName}} {{item.TicketStatusName}}
</span> </span>
<i v-if="item.TicketStatus!=1&&item.TicketVoucherList!=[]&&item.CancelVoucherList!=[]" class="iconfont iconpingzhengchaxun Credentials" @click="viewCredentials(item)"></i> <i v-if="item.TicketStatus!=1&&item.TicketVoucherList!=[]&&item.CancelVoucherList!=[]&&item.TicketStatusName!='无需机票'" class="iconfont iconpingzhengchaxun Credentials"
@click="viewCredentials(item)"></i>
</p> </p>
</td> </td>
...@@ -210,8 +211,8 @@ ...@@ -210,8 +211,8 @@
:label="item.Id">{{item.Name}}</el-radio> :label="item.Id">{{item.Name}}</el-radio>
</el-radio-group> </el-radio-group>
<div class="agreement-Cancel"> <div class="agreement-Cancel">
<span @click="popCancelClick(item,index,1)">取消</span> <span @click="popCancelClick(item,index,3)">取消</span>
<span @click="popClick(item,index,1)">确定</span> <span @click="popClick(item,index,3)">确定</span>
</div> </div>
</div> </div>
...@@ -291,7 +292,7 @@ ...@@ -291,7 +292,7 @@
}, ], }, ],
clickMore: '', clickMore: '',
drawer: false, drawer: false,
orderDrawer: true, orderDrawer: false,
CustomerId: '', CustomerId: '',
CustomerName: '', CustomerName: '',
currentOrder:null currentOrder:null
...@@ -314,7 +315,6 @@ ...@@ -314,7 +315,6 @@
$this.MsgBus.$on("closeBillMaking", function() { $this.MsgBus.$on("closeBillMaking", function() {
for(let i=0;i<$this.dataList.length;i++){ for(let i=0;i<$this.dataList.length;i++){
$this.dataList[i].checkList = [] $this.dataList[i].checkList = []
$this.dataList[i].MultipleChoiceList = []
$this.dataList[i].selectedType = "" $this.dataList[i].selectedType = ""
$this.dataList[i].actuallyReceived = false $this.dataList[i].actuallyReceived = false
$this.dataList[i].cost = false $this.dataList[i].cost = false
...@@ -354,20 +354,11 @@ ...@@ -354,20 +354,11 @@
}, },
// 取消 // 取消
popCancelClick(row, index, num){ popCancelClick(row, index, num){
if(num==1){}
this.dataList.forEach(item=>{
return item.actuallyReceived =false
})
if(num==3){}
this.dataList.forEach(item=>{
return item.cost =false
})
this.dataList.forEach(item=>{ this.dataList.forEach(item=>{
item.checkList = [] item.checkList = []
item.MultipleChoiceList = []
item.selectedType = '' item.selectedType = ''
item.actuallyReceived =false
item.cost =false
}) })
}, },
// 确定弹窗 // 确定弹窗
...@@ -377,17 +368,8 @@ ...@@ -377,17 +368,8 @@
return return
} }
this.makeAdocumentFun(row, index, num) this.makeAdocumentFun(row, index, num)
if(num==1){
if(this.dataList[index].checkList.length==1){
}else{
this.dataList[index].actuallyReceived =false this.dataList[index].actuallyReceived =false
}
}
if(num==3){
this.dataList[index].cost =false this.dataList[index].cost =false
}
}, },
// 点击单号 // 点击单号
clickSingleNumber(item){ clickSingleNumber(item){
...@@ -444,7 +426,6 @@ ...@@ -444,7 +426,6 @@
}, },
// 制作单据 // 制作单据
makeAdocument(row, index, num) { makeAdocument(row, index, num) {
this.dataList[index].MultipleChoiceList=[]
let list = row.OrderType&&row.OrderType.split(',') let list = row.OrderType&&row.OrderType.split(',')
if(list!=null&&list.length>1&&num==1){ if(list!=null&&list.length>1&&num==1){
...@@ -456,13 +437,7 @@ ...@@ -456,13 +437,7 @@
return item.actuallyReceived = false return item.actuallyReceived = false
}) })
this.dataList[index].actuallyReceived = true this.dataList[index].actuallyReceived = true
for(let j=0;j<list.length;j++){
for(let i=0;i<this.MultipleChoiceList.length;i++){
if(list[j]==this.MultipleChoiceList[i].Id){
this.dataList[index].MultipleChoiceList.push(this.MultipleChoiceList[i])
}
}
}
} }
else if(list!=null&&list.length>1&&num==3){ else if(list!=null&&list.length>1&&num==3){
...@@ -473,18 +448,17 @@ ...@@ -473,18 +448,17 @@
return item.cost = false return item.cost = false
}) })
this.dataList[index].cost = true this.dataList[index].cost = true
for(let j=0;j<list.length;j++){
for(let i=0;i<this.MultipleChoiceList.length;i++){
if(list[j]==this.MultipleChoiceList[i].Id){
this.dataList[index].MultipleChoiceList.push(this.MultipleChoiceList[i])
}
}
}
}else{ }else{
this.makeAdocumentFun(row, index, num) this.makeAdocumentFun(row, index, num)
} }
}, },
makeAdocumentFun(row, index, num){ makeAdocumentFun(row, index, num){
let type
type = num == 1 ? 1 : 2 // 1收款 2退款 3成本
let href
let url = this.domainManager().erpRoutingUrl
let data
let list = row.OrderType&&row.OrderType.split(',') let list = row.OrderType&&row.OrderType.split(',')
if (this.userInfo.EmName != row.EnterName) { if (this.userInfo.EmName != row.EnterName) {
this.ValidateOperator() this.ValidateOperator()
...@@ -492,18 +466,12 @@ ...@@ -492,18 +466,12 @@
if (row.OrderStatus != '2') { if (row.OrderStatus != '2') {
if(list&&list.length>1){ if(list&&list.length>1){
let typeList = row.selectedType.split(',') let typeList = row.selectedType.split(',')
if(num=='1'&&typeList.length>=2){ if(num==1&&typeList.length>=2){
let type
type = num == 1 ? 1 : 2 // 1收款 2退款 3成本anceId2 = num
let $this = this; let $this = this;
row.ReFinanceId2 = num row.ReFinanceId2 = num
this.MsgBus.$emit("BillMakingOrderBoxOpen", $this.ID, row, true); this.MsgBus.$emit("BillMakingOrderBoxOpen", $this.ID, row, true);
}if(typeList.length==1&&num=='1'||num=='3'){ }if(typeList.length==1&&num=='1'||num=='3'){
let type data = [{
type = num == 1 ? 1 : 2 // 1收款 2退款 3成本
let href
let url = this.domainManager().erpRoutingUrl
let data = [{
path: 'ChoiceAddFinancialDocuments', path: 'ChoiceAddFinancialDocuments',
type: type, type: type,
OtherType: 55, OtherType: 55,
...@@ -516,17 +484,12 @@ ...@@ -516,17 +484,12 @@
window.open(href); window.open(href);
for(let i=0;i<this.dataList.length;i++){ for(let i=0;i<this.dataList.length;i++){
this.dataList[i].checkList = [] this.dataList[i].checkList = []
this.dataList[i].MultipleChoiceList = []
this.dataList[i].selectedType = "" this.dataList[i].selectedType = ""
this.dataList[i].actuallyReceived = false this.dataList[i].actuallyReceived = false
this.dataList[i].cost = false this.dataList[i].cost = false
} }
}if(num=='2'){ }if(num=='2'){
let type data = [{
type = num == 1 ? 1 : 2 // 1收款 2退款 3成本
let href
let url = this.domainManager().erpRoutingUrl
let data = [{
path: 'ChoiceAddFinancialDocuments', path: 'ChoiceAddFinancialDocuments',
type: type, type: type,
OtherType: 55, OtherType: 55,
...@@ -538,7 +501,6 @@ ...@@ -538,7 +501,6 @@
window.open(href); window.open(href);
for(let i=0;i<this.dataList.length;i++){ for(let i=0;i<this.dataList.length;i++){
this.dataList[i].checkList = [] this.dataList[i].checkList = []
this.dataList[i].MultipleChoiceList = []
this.dataList[i].selectedType = "" this.dataList[i].selectedType = ""
this.dataList[i].actuallyReceived = false this.dataList[i].actuallyReceived = false
this.dataList[i].cost = false this.dataList[i].cost = false
...@@ -546,11 +508,6 @@ ...@@ -546,11 +508,6 @@
} }
}else{ }else{
let type
type = num == 1 ? 1 : 2 // 1收款 2退款 3成本
let href
let url = this.domainManager().erpRoutingUrl
let data
if(num==1||num==2){ if(num==1||num==2){
data = [{ data = [{
path: 'ChoiceAddFinancialDocuments', path: 'ChoiceAddFinancialDocuments',
...@@ -576,7 +533,6 @@ ...@@ -576,7 +533,6 @@
window.open(href); window.open(href);
for(let i=0;i<this.dataList.length;i++){ for(let i=0;i<this.dataList.length;i++){
this.dataList[i].checkList = [] this.dataList[i].checkList = []
this.dataList[i].MultipleChoiceList = []
this.dataList[i].selectedType = "" this.dataList[i].selectedType = ""
this.dataList[i].actuallyReceived = false this.dataList[i].actuallyReceived = false
this.dataList[i].cost = false this.dataList[i].cost = false
......
...@@ -162,7 +162,7 @@ ...@@ -162,7 +162,7 @@
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.OrderId}} {{scope.row.OrderId}}
<!-- <p @click="openDetails(scope)" class="font-color-link cp">{{scope.row.OrderId}}</p> --> <!-- <p v-for="(item,index) in scope.row.MultipleChoiceList">{{item.Name}}</p> -->
</template> </template>
</el-table-column> </el-table-column>
<el-table-column fixed label="业务员" show-overflow-tooltip :width="120"> <el-table-column fixed label="业务员" show-overflow-tooltip :width="120">
...@@ -416,7 +416,6 @@ ...@@ -416,7 +416,6 @@
$this.MsgBus.$on("closeBillMaking", function() { $this.MsgBus.$on("closeBillMaking", function() {
for(let i=0;i<$this.dataList.length;i++){ for(let i=0;i<$this.dataList.length;i++){
$this.dataList[i].checkList = [] $this.dataList[i].checkList = []
$this.dataList[i].MultipleChoiceList = []
$this.dataList[i].selectedType = "" $this.dataList[i].selectedType = ""
$this.dataList[i].actuallyReceived = false $this.dataList[i].actuallyReceived = false
$this.dataList[i].cost = false $this.dataList[i].cost = false
...@@ -428,7 +427,6 @@ ...@@ -428,7 +427,6 @@
popCancelClick(row, index, num){ popCancelClick(row, index, num){
this.dataList.forEach(item=>{ this.dataList.forEach(item=>{
item.checkList = [] item.checkList = []
item.MultipleChoiceList = []
item.selectedType = '' item.selectedType = ''
item.actuallyReceived =false item.actuallyReceived =false
item.cost =false item.cost =false
...@@ -441,17 +439,8 @@ ...@@ -441,17 +439,8 @@
return return
} }
this.makeAdocumentFun(row, index, num) this.makeAdocumentFun(row, index, num)
if(num==1){
if(this.dataList[index].checkList.length==1){
}else{
this.dataList[index].actuallyReceived =false this.dataList[index].actuallyReceived =false
}
}
if(num==3){
this.dataList[index].cost =false this.dataList[index].cost =false
}
}, },
// 查看出票凭据 // 查看出票凭据
...@@ -535,7 +524,6 @@ ...@@ -535,7 +524,6 @@
}, },
// 制作单据 // 制作单据
makeAdocument(row, index, num) { makeAdocument(row, index, num) {
this.dataList[index].MultipleChoiceList=[]
let list = row.OrderType&&row.OrderType.split(',') let list = row.OrderType&&row.OrderType.split(',')
if(list!=null&&list.length>1&&num==1){ if(list!=null&&list.length>1&&num==1){
this.dataList.forEach(item=>{ this.dataList.forEach(item=>{
...@@ -545,13 +533,6 @@ ...@@ -545,13 +533,6 @@
return item.actuallyReceived = false return item.actuallyReceived = false
}) })
this.dataList[index].actuallyReceived = true this.dataList[index].actuallyReceived = true
for(let j=0;j<list.length;j++){
for(let i=0;i<this.MultipleChoiceList.length;i++){
if(list[j]==this.MultipleChoiceList[i].Id){
this.dataList[index].MultipleChoiceList.push(this.MultipleChoiceList[i])
}
}
}
} }
else if(list!=null&&list.length>1&&num==3){ else if(list!=null&&list.length>1&&num==3){
...@@ -562,18 +543,16 @@ ...@@ -562,18 +543,16 @@
return item.cost = false return item.cost = false
}) })
this.dataList[index].cost = true this.dataList[index].cost = true
for(let j=0;j<list.length;j++){
for(let i=0;i<this.MultipleChoiceList.length;i++){
if(list[j]==this.MultipleChoiceList[i].Id){
this.dataList[index].MultipleChoiceList.push(this.MultipleChoiceList[i])
}
}
}
}else{ }else{
this.makeAdocumentFun(row, index, num) this.makeAdocumentFun(row, index, num)
} }
}, },
makeAdocumentFun(row, index, num){ makeAdocumentFun(row, index, num){
let type
type = num == 1 ? 1 : 2 // 1收款 2退款 3成本
let href
let url = this.domainManager().erpRoutingUrl
let data
let list = row.OrderType&&row.OrderType.split(',') let list = row.OrderType&&row.OrderType.split(',')
if (this.userInfo.EmName != row.EnterName) { if (this.userInfo.EmName != row.EnterName) {
this.ValidateOperator() this.ValidateOperator()
...@@ -582,17 +561,11 @@ ...@@ -582,17 +561,11 @@
if(list&&list.length>1){ if(list&&list.length>1){
let typeList = row.selectedType.split(',') let typeList = row.selectedType.split(',')
if(num=='1'&&typeList.length>=2){ if(num=='1'&&typeList.length>=2){
let type
type = num == 1 ? 1 : 2 // 1收款 2退款 3成本anceId2 = num
let $this = this; let $this = this;
row.ReFinanceId2 = num row.ReFinanceId2 = num
this.MsgBus.$emit("BillMakingOrderBoxOpen", $this.ID, row, true); this.MsgBus.$emit("BillMakingOrderBoxOpen", $this.ID, row, true);
}if(typeList.length==1&&num=='1'||num=='3'){ }if(typeList.length==1&&num=='1'||num=='3'){
let type data = [{
type = num == 1 ? 1 : 2 // 1收款 2退款 3成本
let href
let url = this.domainManager().erpRoutingUrl
let data = [{
path: 'ChoiceAddFinancialDocuments', path: 'ChoiceAddFinancialDocuments',
type: type, type: type,
OtherType: 55, OtherType: 55,
...@@ -605,17 +578,12 @@ ...@@ -605,17 +578,12 @@
window.open(href); window.open(href);
for(let i=0;i<this.dataList.length;i++){ for(let i=0;i<this.dataList.length;i++){
this.dataList[i].checkList = [] this.dataList[i].checkList = []
this.dataList[i].MultipleChoiceList = []
this.dataList[i].selectedType = "" this.dataList[i].selectedType = ""
this.dataList[i].actuallyReceived = false this.dataList[i].actuallyReceived = false
this.dataList[i].cost = false this.dataList[i].cost = false
} }
}if(num=='2'){ }if(num=='2'){
let type data = [{
type = num == 1 ? 1 : 2 // 1收款 2退款 3成本
let href
let url = this.domainManager().erpRoutingUrl
let data = [{
path: 'ChoiceAddFinancialDocuments', path: 'ChoiceAddFinancialDocuments',
type: type, type: type,
OtherType: 55, OtherType: 55,
...@@ -627,7 +595,6 @@ ...@@ -627,7 +595,6 @@
window.open(href); window.open(href);
for(let i=0;i<this.dataList.length;i++){ for(let i=0;i<this.dataList.length;i++){
this.dataList[i].checkList = [] this.dataList[i].checkList = []
this.dataList[i].MultipleChoiceList = []
this.dataList[i].selectedType = "" this.dataList[i].selectedType = ""
this.dataList[i].actuallyReceived = false this.dataList[i].actuallyReceived = false
this.dataList[i].cost = false this.dataList[i].cost = false
...@@ -635,11 +602,6 @@ ...@@ -635,11 +602,6 @@
} }
}else{ }else{
let type
type = num == 1 ? 1 : 2 // 1收款 2退款 3成本
let href
let url = this.domainManager().erpRoutingUrl
let data
if(num==1||num==2){ if(num==1||num==2){
data = [{ data = [{
path: 'ChoiceAddFinancialDocuments', path: 'ChoiceAddFinancialDocuments',
...@@ -665,7 +627,6 @@ ...@@ -665,7 +627,6 @@
window.open(href); window.open(href);
for(let i=0;i<this.dataList.length;i++){ for(let i=0;i<this.dataList.length;i++){
this.dataList[i].checkList = [] this.dataList[i].checkList = []
this.dataList[i].MultipleChoiceList = []
this.dataList[i].selectedType = "" this.dataList[i].selectedType = ""
this.dataList[i].actuallyReceived = false this.dataList[i].actuallyReceived = false
this.dataList[i].cost = false this.dataList[i].cost = false
...@@ -819,6 +780,19 @@ ...@@ -819,6 +780,19 @@
}); });
}; };
addList(data); addList(data);
data.forEach(item=>{
if(item.OrderType){
let list = item.OrderType&&item.OrderType.split(',')
for(let j=0;j<list.length;j++){
for(let i=0;i<this.MultipleChoiceList.length;i++){
if(list[j]==this.MultipleChoiceList[i].Id){
item.MultipleChoiceList.push(this.MultipleChoiceList[i])
}
}
}
}
})
this.dataList = data; this.dataList = data;
this.total = res.data.data.count; this.total = res.data.data.count;
this.loading = false this.loading = false
......
...@@ -1064,7 +1064,7 @@ ...@@ -1064,7 +1064,7 @@
ground:{ ground:{
title:"地接", title:"地接",
WBMoney:0,//原币总金额 WBMoney:0,//原币总金额
OriginalFee:"",//原币手续费 OriginalFee:0,//原币手续费
RelevanceFrId:"1",//订单类型 1机票 2签证 3地接 4套餐 5其他 RelevanceFrId:"1",//订单类型 1机票 2签证 3地接 4套餐 5其他
TotalCost:"", TotalCost:"",
detailList:[ detailList:[
...@@ -1096,7 +1096,7 @@ ...@@ -1096,7 +1096,7 @@
airTickets:{ airTickets:{
title:"机票", title:"机票",
WBMoney:0,//原币总金额 WBMoney:0,//原币总金额
OriginalFee:"",//原币手续费 OriginalFee:0,//原币手续费
RelevanceFrId:"1",//订单类型 1机票 2签证 3地接 4套餐 5其他 RelevanceFrId:"1",//订单类型 1机票 2签证 3地接 4套餐 5其他
TotalCost:"", TotalCost:"",
detailList:[ detailList:[
...@@ -1458,7 +1458,7 @@ ...@@ -1458,7 +1458,7 @@
OtherType:this.BillMaking.OtherType,//默认=55 OtherType:this.BillMaking.OtherType,//默认=55
ReFinanceId:this.obj.OrderId,//订单ID ReFinanceId:this.obj.OrderId,//订单ID
ReFinanceId2:this.obj.ReFinanceId2,//类型 1收款 ReFinanceId2:this.obj.ReFinanceId2,//类型 1收款
GuestId:this.GuestId,//客人ID GuestId:this.obj.GuestId,//客人ID
RelevanceFrId:"",//订单类型 1机票 2签证 3地接 4套餐 5其他 RelevanceFrId:"",//订单类型 1机票 2签证 3地接 4套餐 5其他
vorcherInos:[], vorcherInos:[],
detailList:[] detailList:[]
...@@ -2003,10 +2003,6 @@ ...@@ -2003,10 +2003,6 @@
this.$message.warning('请输入机票单价'); this.$message.warning('请输入机票单价');
return return
} }
if(item.Remark==""){
this.$message.warning('请输入机票备注');
return
}
}) })
this.obj.checkList.indexOf('2')!=-1&&this.visa.detailList.forEach(item=>{ this.obj.checkList.indexOf('2')!=-1&&this.visa.detailList.forEach(item=>{
if(!item.CostTypeId){ if(!item.CostTypeId){
...@@ -2021,10 +2017,6 @@ ...@@ -2021,10 +2017,6 @@
this.$message.warning('请输入签证单价'); this.$message.warning('请输入签证单价');
return return
} }
if(item.Remark==""){
this.$message.warning('请输入签证备注');
return
}
}) })
this.obj.checkList.indexOf('3')!=-1&&this.ground.detailList.forEach(item=>{ this.obj.checkList.indexOf('3')!=-1&&this.ground.detailList.forEach(item=>{
if(!item.CostTypeId){ if(!item.CostTypeId){
......
...@@ -319,16 +319,10 @@ ...@@ -319,16 +319,10 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div v-if="total>0">
<el-pagination <el-pagination class="Mypagination" background @current-change="handleCurrentChange" :page-sizes="[30, 60, 90, 100]" :page-size="msg.pageSize" layout="total, sizes, prev, pager, next" @size-change="handleSizeChange" :total="total">
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:page-sizes="[30, 60,90,100]"
:page-size="msg.pageSize"
layout="total,prev,sizes,pager,next"
:total="total"
style="margin-top: 12px; float: right">
</el-pagination> </el-pagination>
</div>
</div> </div>
</div> </div>
......
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