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
8a25f2f6
Commit
8a25f2f6
authored
Aug 05, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
70c7e103
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
8 deletions
+70
-8
index.vue
src/components/FinancialModule/DataAnalysis/index.vue
+65
-2
TeamRevenueReport.vue
...mponents/FinancialModule/ReportForm/TeamRevenueReport.vue
+5
-6
No files found.
src/components/FinancialModule/DataAnalysis/index.vue
View file @
8a25f2f6
...
...
@@ -13,7 +13,7 @@
<el-select
filterable
v-model=
"msg.OutBranchId"
@
change=
"get
Statement
"
@
change=
"get
Change
"
clearable
>
<el-option
...
...
@@ -29,6 +29,19 @@
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
:label=
"$t('fnc.bweibi')"
>
<el-select
:disabled=
"coinGetShow"
filterable
v-model=
"msg.StandardCurrencyId"
class
@
change=
"getChange"
>
<el-option
:value=
"-1"
:label=
"$t('pub.unlimitedSel')"
></el-option>
<el-option
v-for=
"item in coinGetList"
:label=
"item.Name"
:value=
"item.ID"
:key=
"item.ID"
></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"线路"
>
<el-select
filterable
v-model=
"msg.LineId"
@
change=
"getStatement"
...
...
@@ -63,6 +76,26 @@
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"4"
v-if=
"msg.Type==2"
>
<el-form-item
label=
"数据类别:"
>
<el-select
v-model=
"msg.DataType"
filterable
class=
"w150"
@
change=
"getStatement"
>
<el-option
value=
"-1"
:label=
"$t('pub.unlimitedSel')"
></el-option>
<el-option
value=
"1"
label=
"团队营收"
></el-option>
<el-option
value=
"3"
label=
"单办签证"
></el-option>
<el-option
value=
"15"
label=
"手配费收入"
></el-option>
<el-option
value=
"16"
label=
"单项机票"
></el-option>
<el-option
value=
"17"
label=
"单项酒店"
></el-option>
<el-option
value=
"18"
label=
"单项包车"
></el-option>
<el-option
value=
"19"
label=
"单项门票"
></el-option>
<el-option
value=
"20"
label=
"开票收入"
></el-option>
<el-option
value=
"21"
label=
"日本手配费收入"
></el-option>
<el-option
value=
"22"
label=
"车行收入"
></el-option>
<el-option
value=
"23"
label=
"欧洲单团分润收入"
></el-option>
<el-option
value=
"24"
label=
"欧洲损失分摊"
></el-option>
<el-option
value=
"25"
label=
"CRM直客部外丟團"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<ul
class=
"clearfix"
>
...
...
@@ -98,8 +131,10 @@ export default {
startDate
:
''
,
endDate
:
''
,
OutBranchId
:
-
1
,
StandardCurrencyId
:
0
,
LineId
:
0
,
Type
:
'1'
Type
:
'1'
,
DataType
:
'-1'
},
dateTime
:
[],
CompanyList
:
[],
...
...
@@ -109,6 +144,7 @@ export default {
Status
:
"0"
,
},
LineList
:
[],
coinGetList
:
[],
pickerOptions
:
{
shortcuts
:
[{
text
:
'本月'
,
...
...
@@ -143,10 +179,37 @@ export default {
this
.
dateTime
=
[
this
.
$commonUtils
.
getFormatDateM
(
start
),
this
.
$commonUtils
.
getFormatDateM
(
end
)]
this
.
msg
.
startDate
=
this
.
dateTime
[
0
]
this
.
msg
.
endDate
=
this
.
dateTime
[
1
]
this
.
financeinfo_post_GetList
()
this
.
getQueryData
()
this
.
getStatement
()
},
methods
:
{
getChange
(
val
){
if
(
this
.
msg
.
OutBranchId
==
-
1
){
this
.
coinGetShow
=
false
this
.
msg
.
StandardCurrencyId
=
val
>-
1
?
val
:
this
.
coinGetList
[
0
].
ID
}
else
{
this
.
coinGetShow
=
true
this
.
msg
.
StandardCurrencyId
=
-
1
}
this
.
getStatement
();
},
financeinfo_post_GetList
(){
// 获取币种
this
.
apipost
(
'financeinfo_post_GetAllStandardCurrencyList'
,{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
coinGetList
=
res
.
data
.
data
;
if
(
this
.
msg
.
OutBranchId
==
-
1
){
this
.
coinGetShow
=
false
this
.
msg
.
StandardCurrencyId
=
this
.
coinGetList
[
0
].
ID
this
.
msg
.
StandardCurrencyId
=
this
.
$route
.
query
.
StandardCurrencyId
?
Number
(
this
.
$route
.
query
.
StandardCurrencyId
):
this
.
msg
.
StandardCurrencyId
;
}
else
{
this
.
coinGetShow
=
true
this
.
msg
.
StandardCurrencyId
=
-
1
}
this
.
getPageList
();
}
})
},
getStatement
(){
this
.
loading
=
true
this
.
apipost
(
...
...
src/components/FinancialModule/ReportForm/TeamRevenueReport.vue
View file @
8a25f2f6
...
...
@@ -2389,18 +2389,18 @@ export default {
{
field
:
"TicketFee"
,
formatter
:
this
.
moneyFormat
,
title
:
"过路停车费"
,
width
:
9
0
,
title
:
"过路停车费
收入
"
,
width
:
10
0
,
titleAlign
:
"left"
,
columnAlign
:
"right"
,
isResize
:
true
,
componentName
:
"TCIDJumpWang"
},
{
field
:
"
YingFu
"
,
field
:
"
JiPiao
"
,
formatter
:
this
.
moneyFormat
,
title
:
"
应付金额
"
,
width
:
9
0
,
title
:
"
过路停车费支出
"
,
width
:
10
0
,
titleAlign
:
"left"
,
columnAlign
:
"right"
,
isResize
:
true
,
...
...
@@ -2418,7 +2418,6 @@ export default {
},
{
field
:
"MaoLiRate"
,
// formatter: this.moneyFormat,
title
:
"毛利率"
,
width
:
90
,
titleAlign
:
"left"
,
...
...
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