Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
27992f42
Commit
27992f42
authored
Jan 31, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'新增在途字段@@'
parent
1ec826b1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
122 additions
and
58 deletions
+122
-58
enrollTotal.vue
src/components/SalesModule/enrollTotal.vue
+29
-11
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+6
-3
groupTourOrderByTuan.vue
src/components/SalesModule/groupTourOrderByTuan.vue
+8
-3
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+43
-23
todayOrderTotal.vue
src/components/TravelManager/TravelList/todayOrderTotal.vue
+36
-18
No files found.
src/components/SalesModule/enrollTotal.vue
View file @
27992f42
...
...
@@ -159,12 +159,13 @@
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
平台税金
</th>
<th
width=
"80"
>
平台在途
</th>
<th
width=
"80"
>
待收金额
</th>
<th
width=
"60"
>
状态
</th>
<th
width=
"60"
>
状态
</th>
<th
v-if=
"userId==1"
width=
"140"
>
操作
</th>
</tr>
<tr>
<td
v-show=
"list.length==0"
colspan=
"1
3
"
align=
"center"
>
暂无数据
</td>
<td
v-show=
"list.length==0"
colspan=
"1
5
"
align=
"center"
>
暂无数据
</td>
</tr>
<tbody
v-for=
"(item,index) in list"
:key=
"index"
>
<tr>
...
...
@@ -203,6 +204,7 @@
</td>
<td>
{{
item
.
refund
}}
</td>
<td>
{{
item
.
platformTax
}}
</td>
<td>
{{
item
.
zaiTuMoney
}}
</td>
<td><span
:class=
"
{color_red_order:item.dueInMoney!==item.preferPrice}">
{{
item
.
dueInMoney
}}
</span></td>
<td
class=
"fz12"
:style=
"item.orderState===3?'color: #e95252;':''"
>
{{
item
.
statsstr
}}
</td>
<td
v-if=
"userId==1"
>
...
...
@@ -240,15 +242,15 @@
</div>
</div>
</td>
<td
colspan=
"7"
class=
"groupTourOrder_tickets"
style=
"height: 40px;"
>
<td
colspan=
"7"
class=
"groupTourOrder_tickets"
style=
"height: 40px;
cursor: pointer;"
@
click=
"goUrlSFD('SalesFinancialDetail', '销售财务单据', item)
"
>
<div>
<div>
收款单据:
</div>
<div>
<span
v-for=
"(item2,index2) in item.financeList"
:key=
"index2"
>
<span
v-if=
"item2.colorState===1"
class=
"groupTourOrder_tickets_blue"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===2"
class=
"groupTourOrder_tickets_green"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===3"
class=
"groupTourOrder_tickets_red"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===4"
class=
"groupTourOrder_tickets_black"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
{{
item2
.
frID
}}
</span>
<span
v-if=
"item2.colorState===1"
class=
"groupTourOrder_tickets_blue"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===2"
class=
"groupTourOrder_tickets_green"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===3"
class=
"groupTourOrder_tickets_red"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===4"
class=
"groupTourOrder_tickets_black"
>
{{
item2
.
frID
}}
</span>
</span>
<span
v-if=
"item.financeList.length===0"
style=
"cursor: default;"
>
暂无数据
</span>
</div>
...
...
@@ -257,10 +259,10 @@
<div>
付款单据:
</div>
<div>
<span
v-for=
"(item2,index2) in item.refundFinanceList"
:key=
"index2"
>
<span
v-if=
"item2.colorState===1"
class=
"groupTourOrder_tickets_blue"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===2"
class=
"groupTourOrder_tickets_green"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===3"
class=
"groupTourOrder_tickets_red"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===4"
class=
"groupTourOrder_tickets_black"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
{{
item2
.
frID
}}
</span>
<span
v-if=
"item2.colorState===1"
class=
"groupTourOrder_tickets_blue"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===2"
class=
"groupTourOrder_tickets_green"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===3"
class=
"groupTourOrder_tickets_red"
>
{{
item2
.
frID
}}
</span>
<span
v-else-if=
"item2.colorState===4"
class=
"groupTourOrder_tickets_black"
>
{{
item2
.
frID
}}
</span>
</span>
<span
v-if=
"item.financeList.length===0"
style=
"cursor: default;"
>
暂无数据
</span>
</div>
...
...
@@ -377,6 +379,22 @@
};
},
methods
:
{
goUrlSFD
:
function
(
path
,
name
,
item
)
{
let
obj
=
JSON
.
parse
(
JSON
.
stringify
(
item
))
obj
.
oP_Remarks
=
''
obj
.
remarksList
=
[]
obj
.
refundFinanceList
=
[]
obj
.
remarks
=
[]
obj
.
ltName
=
[]
obj
.
lineName
=
[]
obj
.
financeList
=
[]
obj
.
guestList
=
[]
obj
.
description
=
[]
this
.
$router
.
push
({
name
:
path
,
query
:
{
blank
:
'y'
,
tab
:
name
,
item
:
JSON
.
stringify
(
obj
)}
});
},
// 结束日期不能大于开始日期
dataDui
()
{
if
(
this
.
msg
.
CStartDate
>
this
.
msg
.
CEndDate
&&
this
.
msg
.
CEndDate
!==
""
)
{
...
...
src/components/SalesModule/groupTourOrder.vue
View file @
27992f42
...
...
@@ -1129,6 +1129,7 @@
<span>
应收款:
{{
countData
.
PreferPrice
}}
;
</span>
<span>
已收款:
{{
countData
.
Income
}}
;
</span>
<span
:class=
"
{color_red_order:countData.DueinMoney!==countData.PreferPrice}">未收款:
{{
countData
.
DueinMoney
}}
;
</span>
<span>
在途金额:
{{
countData
.
ZaiTu
}}
;
</span>
</p>
</div>
</el-col>
...
...
@@ -1203,13 +1204,14 @@
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
平台税金
</th>
<th
width=
"80"
>
平台在途
</th>
<th
width=
"80"
>
待收金额
</th>
<th
width=
"80"
>
状态
</th>
<th
width=
"120"
>
确认函
</th>
<th
width=
"200"
>
操作
</th>
</tr>
<tr>
<td
v-show=
"list.length==0"
colspan=
"1
5
"
align=
"center"
>
暂无数据
</td>
<td
v-show=
"list.length==0"
colspan=
"1
6
"
align=
"center"
>
暂无数据
</td>
</tr>
<tbody
v-for=
"(item,index) in list"
:key=
"index"
>
<tr>
...
...
@@ -1300,6 +1302,7 @@
</td>
<td>
{{
item
.
refund
}}
</td>
<td>
{{
item
.
platformTax
}}
</td>
<td>
{{
item
.
zaiTuMoney
}}
</td>
<td><span
:class=
"
{color_red_order:item.dueInMoney!==item.preferPrice}">
{{
item
.
dueInMoney
}}
</span></td>
<td
class=
"fz12"
:style=
"item.orderState===3?'color: #e95252;':''"
>
{{
item
.
statsstr
}}
</td>
<td
width=
"120"
>
...
...
@@ -1359,7 +1362,7 @@
</td>
</tr>
<tr
style=
"height:20px"
>
<td
colspan=
"1
6
"
class=
"RL_Order"
style=
"height:20px"
>
<td
colspan=
"1
5
"
class=
"RL_Order"
style=
"height:20px"
>
<span
class=
"RL-remarkTitle"
>
名单:
</span>
<span
class=
"RL-redType RL-remarkCon"
v-if=
"item.guestList.length>0"
>
<span
v-for=
"(childItem) in item.guestList"
>
{{
childItem
.
userName
}}
</span>
...
...
@@ -1389,7 +1392,7 @@
</div>
</div>
</td>
<td
colspan=
"
4
"
class=
"groupTourOrder_remarks"
style=
"height: 40px;"
>
<td
colspan=
"
5
"
class=
"groupTourOrder_remarks"
style=
"height: 40px;"
>
<div>
<div>
<span>
OP备注:
</span>
...
...
src/components/SalesModule/groupTourOrderByTuan.vue
View file @
27992f42
...
...
@@ -1387,6 +1387,7 @@
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
平台税金
</th>
<th
width=
"80"
>
平台在途
</th>
<th
width=
"80"
>
待收金额
</th>
<th
width=
"60"
>
状态
</th>
<th
width=
"80"
>
候补
</th>
...
...
@@ -1399,7 +1400,7 @@
<template
v-for=
"op in list"
>
<tbody
class=
"not_border"
>
<tr>
<td
colspan=
"1
4
"
>
类型:
<span
style=
"color: #e95252;"
>
{{
op
.
groupName
}}
</span></td>
<td
colspan=
"1
5
"
>
类型:
<span
style=
"color: #e95252;"
>
{{
op
.
groupName
}}
</span></td>
</tr>
</tbody>
<tbody
v-for=
"(item,index) in op.list"
:key=
"index"
>
...
...
@@ -1505,6 +1506,10 @@
<span
v-if=
"item.isOwn==1 || userId==1||userId==5 || isUpdateOrder"
>
{{
item
.
platformTax
}}
</span>
<span
v-else
>
******
</span>
</td>
<td>
<span
v-if=
"item.isOwn==1 || userId==1||userId==5 || isUpdateOrder"
>
{{
item
.
zaiTuMoney
}}
</span>
<span
v-else
>
******
</span>
</td>
<td>
<span
v-if=
"item.isOwn==1 || userId==1||userId==5 || isUpdateOrder"
:class=
"
{color_red_order:item.dueInMoney!==item.preferPrice}">
{{
item
.
dueInMoney
}}
</span>
<span
v-else
>
******
</span>
...
...
@@ -1602,7 +1607,7 @@
</div>
</div>
</td>
<td
colspan=
"
4
"
class=
"groupTourOrder_remarks"
style=
"height: 40px;"
>
<td
colspan=
"
5
"
class=
"groupTourOrder_remarks"
style=
"height: 40px;"
>
<div>
<div>
<span>
OP备注:
</span>
...
...
@@ -1829,7 +1834,7 @@
</td>
</tr>
<tr>
<td
colspan=
"
8
"
class=
"groupTourOrder_remarks"
style=
"height: 40px;"
>
<td
colspan=
"
7
"
class=
"groupTourOrder_remarks"
style=
"height: 40px;"
>
<div>
<div><span>
备注:
</span><p><span
v-if=
'item.clientSource==1&&item.brandName!=""'
>
{{item.brandName}}订单 {{item.platformOrder}};
</span>
{{item.remarks}}
</p></div>
<div>
...
...
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
27992f42
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelList/todayOrderTotal.vue
View file @
27992f42
...
...
@@ -84,15 +84,15 @@
<el-row
:gutter=
"20"
>
<el-col
:span=
"5"
class=
"groupTourOrder_count_col"
>
<div
class=
"groupTourOrder_count_item"
>
<div>
<i
class=
"iconfont icon-baomingrenshu groupTourOrder_count_green"
></i>
<span>
总报名人数
</span>
<span>
{{
countData
.
TotalGuestNum
}}
</span>
<div>
<i
class=
"iconfont icon-qian groupTourOrder_count_green"
></i>
<span>
销售额统计
</span>
</div>
<p>
<span>
经济舱:
{{
countData
.
TotalYSeatNum
}}
;
</span>
<span>
商务舱:
{{
countData
.
TotalESeatNum
}}
;
</span>
<span>
头等舱:
{{
countData
.
TotalFSeatNum
}}
;
</span>
<span>
应收款:
{{
countData
.
PreferPrice
}}
;
</span>
<span>
已收款:
{{
countData
.
Income
}}
;
</span>
<span
:class=
"
{color_red_order:countData.DueinMoney!==countData.PreferPrice}">未收款:
{{
countData
.
DueinMoney
}}
;
</span>
<span>
在途金额:
{{
countData
.
ZaiTu
}}
;
</span>
</p>
</div>
</el-col>
...
...
@@ -184,12 +184,13 @@
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
平台税金
</th>
<th
width=
"80"
>
平台在途
</th>
<th
width=
"60"
>
状态
</th>
<th
width=
"60"
>
客户信息
</th>
<th
v-if=
"userId==1"
width=
"130"
>
操作
</th>
</tr>
<tr>
<td
v-show=
"OrderList.length==0"
colspan=
"1
2
"
align=
"center"
>
暂无数据
</td>
<td
v-show=
"OrderList.length==0"
colspan=
"1
4
"
align=
"center"
>
暂无数据
</td>
</tr>
<tbody
v-for=
"(item,index) in OrderList"
:key=
"index"
>
<tr>
...
...
@@ -241,6 +242,7 @@
</td>
<td>
{{
item
.
refund
}}
</td>
<td>
{{
item
.
platformTax
}}
</td>
<td>
{{
item
.
zaiTuMoney
}}
</td>
<td
class=
"fz12"
:style=
"item.orderState===3?'color: #e95252;':''"
>
{{
item
.
statsstr
}}
</td>
<td>
<p
...
...
@@ -293,33 +295,33 @@
</div>
</div>
</td>
<td
colspan=
"6"
class=
"groupTourOrder_tickets"
style=
"height: 20px;"
>
<td
colspan=
"6"
class=
"groupTourOrder_tickets"
style=
"height: 20px;
cursor: pointer;"
@
click=
"goUrlSFD('SalesFinancialDetail', '销售财务单据', item)
"
>
<div>
<div
style=
"white-space: nowrap"
>
收款单据:
<span
v-if=
"item.financeList.length===0"
style=
"cursor: default;"
>
暂无数据
</span>
<span
v-for=
"(item2,index2) in item.financeList"
:key=
"index2"
>
<span
v-if=
"item2.colorState===1"
class=
"groupTourOrder_tickets_blue"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===2"
class=
"groupTourOrder_tickets_green"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===3"
class=
"groupTourOrder_tickets_red"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===4"
class=
"groupTourOrder_tickets_black"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
《
{{
item2
.
frID
}}
》
</span>
</span>
...
...
@@ -331,22 +333,22 @@
<span
v-if=
"item2.colorState===1"
class=
"groupTourOrder_tickets_blue"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===2"
class=
"groupTourOrder_tickets_green"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===3"
class=
"groupTourOrder_tickets_red"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
《
{{
item2
.
frID
}}
》
</span>
<span
v-else-if=
"item2.colorState===4"
class=
"groupTourOrder_tickets_black"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item2.frID,'')"
>
《
{{
item2
.
frID
}}
》
</span>
</span>
</div>
...
...
@@ -457,6 +459,22 @@ export default {
};
},
methods
:
{
goUrlSFD
:
function
(
path
,
name
,
item
)
{
let
obj
=
JSON
.
parse
(
JSON
.
stringify
(
item
))
obj
.
oP_Remarks
=
''
obj
.
remarksList
=
[]
obj
.
refundFinanceList
=
[]
obj
.
remarks
=
[]
obj
.
ltName
=
[]
obj
.
lineName
=
[]
obj
.
financeList
=
[]
obj
.
guestList
=
[]
obj
.
description
=
[]
this
.
$router
.
push
({
name
:
path
,
query
:
{
blank
:
'y'
,
tab
:
name
,
item
:
JSON
.
stringify
(
obj
)}
});
},
getCompanyList
()
{
let
userInfo
=
this
.
getLocalStorage
();
let
RB_Group_id
=
userInfo
.
RB_Group_id
;
...
...
@@ -688,7 +706,7 @@ export default {
}
.enrollTotalSearchTable
tr
{
border-bottom
:
2px
solid
#333
;
/* border-bottom: 2px solid #333; */
}
.enrollTotalSearchTable
tr
th
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment