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
75080765
Commit
75080765
authored
Dec 09, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
97bd3358
ad866860
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
2 deletions
+56
-2
JumpReport.vue
src/components/FinancialModule/JumpReport.vue
+3
-0
EasyReport.vue
src/components/FinancialModule/ReportForm/EasyReport.vue
+20
-1
TeamRevenueReport.vue
...mponents/FinancialModule/ReportForm/TeamRevenueReport.vue
+32
-0
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+1
-1
No files found.
src/components/FinancialModule/JumpReport.vue
View file @
75080765
...
...
@@ -834,6 +834,9 @@ export default {
if
(
this
.
$route
.
query
.
Type
){
this
.
msg
.
Type
=
this
.
$route
.
query
.
Type
+
''
;
}
if
(
this
.
$route
.
query
.
IsJapanNonbusinessIncome
){
this
.
msg
.
IsJapanNonbusinessIncome
=
this
.
$route
.
query
.
IsJapanNonbusinessIncome
;
}
if
(
this
.
$route
.
query
.
year
&&
this
.
$route
.
query
.
month
)
{
this
.
msg
.
sTradeDate
=
this
.
$route
.
query
.
year
+
"-"
+
this
.
$route
.
query
.
month
+
"-01"
;
...
...
src/components/FinancialModule/ReportForm/EasyReport.vue
View file @
75080765
...
...
@@ -838,7 +838,7 @@ export default {
methods
:{
goUrl
(
path
,
startDate
,
endDate
,
BranchId
,
tab
)
{
this
.
$router
.
push
({
name
:
path
,
query
:{
"startDate"
:
startDate
,
"endDate"
:
endDate
,
BranchId
:
BranchId
,
blank
:
'y'
,
tab
:
tab
}
})
this
.
$router
.
push
({
name
:
path
,
query
:{
"startDate"
:
startDate
,
"endDate"
:
endDate
,
BranchId
:
BranchId
,
blank
:
'y'
,
tab
:
tab
}
})
},
GoUrlFan
(
path
,
month
,
year
,
BranchId
,
ids
)
{
this
.
$router
.
push
({
...
...
@@ -917,6 +917,25 @@ export default {
else
if
(
rowData
.
ZhaiYao
==
"歐洲與南亞損失分攤"
){
that
.
goUrl
(
"AirTicketLoss"
,
startDate
,
endDate
,
BranchId
,
"机票分摊"
)
}
else
if
(
rowData
.
ZhaiYao
==
"营业外收入"
){
if
(
that
.
msg
.
BranchId
==
1218
){
this
.
$router
.
push
({
path
:
"/JumpReport"
,
query
:
{
year
:
rowData
.
Year
,
month
:
month
,
BranchId
:
rowData
.
BranchId
,
CostIds
:
rowData
.
CostIds
,
"IsJapanNonbusinessIncome"
:
1
,
blank
:
"y"
}
});
}
else
{
that
.
GoUrlFan
(
'JumpReport'
,
month
,
rowData
.
Year
,
rowData
.
BranchId
,
rowData
.
CostIds
)
}
}
else
{
that
.
GoUrlFan
(
'JumpReport'
,
month
,
rowData
.
Year
,
rowData
.
BranchId
,
rowData
.
CostIds
)
}
...
...
src/components/FinancialModule/ReportForm/TeamRevenueReport.vue
View file @
75080765
...
...
@@ -1713,6 +1713,38 @@ export default {
if
(
this
.
msg
.
LineId
==-
4
){
this
.
msg
.
DataType
=
"3"
;
}
//景点门票
if
(
this
.
msg
.
LineId
==-
8
){
this
.
msg
.
DataType
=
"10"
;
}
// 票务部专户
if
(
this
.
msg
.
LineId
==-
7
){
this
.
msg
.
DataType
=
"8"
;
}
// 酒店住宿
if
(
this
.
msg
.
LineId
==-
9
){
this
.
msg
.
DataType
=
"9"
;
}
// 餐厅美食
if
(
this
.
msg
.
LineId
==-
10
){
this
.
msg
.
DataType
=
"11"
;
}
// 单机票
if
(
this
.
msg
.
LineId
==-
11
){
this
.
msg
.
DataType
=
"14"
;
}
// 单机票
if
(
this
.
msg
.
LineId
==-
11
){
this
.
msg
.
DataType
=
"14"
;
}
// 老挝地接部
if
(
this
.
msg
.
LineId
==-
6
){
this
.
msg
.
DataType
=
"7"
;
}
// 日本地接部
if
(
this
.
msg
.
LineId
==-
5
){
this
.
msg
.
DataType
=
"6"
;
}
let
userInfo
=
this
.
getLocalStorage
();
if
((
","
+
userInfo
.
ActionMenuCode
+
","
).
indexOf
(
',F_Query_TicketTeamRevenueReport,'
)
!=-
1
){
this
.
isShowType
=
false
;
...
...
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
75080765
...
...
@@ -2297,7 +2297,7 @@
<span
class=
"RL-remarkTitle"
>
{{
$t
(
'pub.pubRemark'
)
}}
:
</span>
<p
class=
"RL-redType RL-remarkCon"
>
<span
v-if=
"childItem.TsIdList&&childItem.TsIdList.length>0"
>
{{
$t
(
'salesModule.ComplaintNum'
)
}}
:
<a
clas=
"underline"
v-for=
"ts in childItem.TsIdList"
href=
"javascript:void(0);"
<a
clas=
"underline"
style=
"text-decoration:underline;"
v-for=
"ts in childItem.TsIdList"
href=
"javascript:void(0);"
@
click=
"goUrlTS('ComplaintsDetail',ts,childItem.OrderId,'投诉详情')"
>
{{
ts
}}
</a>
;
</span>
<span
v-if=
'childItem.ClientSource==1&&childItem.BrandName!=""'
>
{{
childItem
.
BrandName
}}{{
$t
(
'fnc.dingdan'
)
}}
...
...
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