Commit 1b19f414 authored by liudong1993's avatar liudong1993

1

parent aecb238c
......@@ -1808,6 +1808,10 @@
if (this.chooseStudent != "") {
guestId = this.chooseStudent;
}
if(obj && obj.OrderType == 2 && obj.GuestList.length > 0 && guestId == 0){
//默认取第一个人的 (现基本都是单人订单 如果有多人订单 需调整)
guestId = obj.GuestList[0].Id;
}
this.$router.push({
path: "/financial/financalDocument/ChoiceAddFinancialDocuments",
query: {
......@@ -1857,6 +1861,10 @@
if (this.chooseStudent != "") {
guestId = this.chooseStudent;
}
if(obj && obj.OrderType == 2 && obj.GuestList.length > 0 && guestId == 0){
//默认取第一个人的 (现基本都是单人订单 如果有多人订单 需调整)
guestId = obj.GuestList[0].Id;
}
this.$router.push({
path: "/financial/financalDocument/ChoiceAddFinancialDocuments",
query: {
......
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