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
2386eb0b
Commit
2386eb0b
authored
Dec 07, 2023
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
adbf8a1e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
NumberStatistics.vue
...omponents/FinancialModule/ReportForm/NumberStatistics.vue
+15
-1
TeamRevenueReport.vue
...mponents/FinancialModule/ReportForm/TeamRevenueReport.vue
+1
-0
No files found.
src/components/FinancialModule/ReportForm/NumberStatistics.vue
View file @
2386eb0b
...
...
@@ -482,7 +482,9 @@ tr._item_list td:last-child {
</el-form-item>
</el-col>
-->
</el-row>
<p
v-if=
"msg.OutBranchId==1218"
style=
"color:red;"
>
注: 内部收入团数抓取的所有付过手配费给日本公司的团与台湾的所有团。内部收入金额抓取的日本已制单的手配费收入,暂不支持跳转查看详情
</p>
</el-form>
<ul
class=
"clearfix"
>
<li
class=
"hight_query"
>
<button
class=
"normalBtn"
@
click=
"togbu()"
>
{{
$t
(
'pub.searchBtn'
)
}}
</button>
...
...
@@ -651,7 +653,7 @@ export default {
if
(
!
this
.
msg
.
OutBranchId
&&
this
.
msg
.
OutBranchId
!==
0
)
this
.
msg
.
OutBranchId
=
-
1
;
if
(
!
this
.
msg
.
TCID
)
this
.
msg
.
TCID
=
0
;
if
(
this
.
msg
.
QStartDate
==
""
)
this
.
msg
.
QStartDate
=
"2019
"
;
if
(
this
.
msg
.
QStartDate
==
""
)
this
.
msg
.
QStartDate
=
new
Date
().
getFullYear
()
+
"
"
;
this
.
apipost
(
'financestatistics_post_GetPeopleMonthReportList'
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
...
...
@@ -873,6 +875,17 @@ export default {
let
EndTime
=
field
+
`EndTime`
;
let
LineId
=
Number
(
rowData
.
LineId
);
let
OutBranchId
=
rowData
.
BranchId
;
let
TeamType
=
0
;
if
(
rowIndex
==
6
||
rowIndex
==
7
){
TeamType
=
1
;
}
else
if
(
rowIndex
==
8
||
rowIndex
==
9
){
TeamType
=
2
;
}
else
if
(
rowIndex
==
10
||
rowIndex
==
11
){
TeamType
=
3
;
}
if
(
LineId
==
-
999
){
return
;
}
this
.
$router
.
push
({
path
:
"TeamRevenueReport"
,
query
:
{
...
...
@@ -880,6 +893,7 @@ export default {
StartTime
:
rowData
[
StartTime
],
EndTime
:
rowData
[
EndTime
],
OutBranchId
:
OutBranchId
,
TeamType
:
TeamType
,
blank
:
'y'
,
tab
:
'营收报表'
}
...
...
src/components/FinancialModule/ReportForm/TeamRevenueReport.vue
View file @
2386eb0b
...
...
@@ -2157,6 +2157,7 @@ export default {
this
.
msg
.
endDate
=
this
.
$route
.
query
.
EndTime
!=
undefined
?
this
.
$route
.
query
.
EndTime
:
''
;
this
.
msg
.
LineId
=
this
.
$route
.
query
.
LineId
!=
undefined
?
Number
(
this
.
$route
.
query
.
LineId
):
''
;
this
.
msg
.
OutBranchId
=
this
.
$route
.
query
.
OutBranchId
?
Number
(
this
.
$route
.
query
.
OutBranchId
):
this
.
msg
.
OutBranchId
;
this
.
msg
.
TeamType
=
(
this
.
$route
.
query
.
TeamType
?
Number
(
this
.
$route
.
query
.
TeamType
):
this
.
msg
.
TeamType
)
+
''
;
if
(
this
.
$route
.
query
.
LtIdStr
){
this
.
msg
.
LtIdStr
=
this
.
$route
.
query
.
LtIdStr
}
...
...
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