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
4e1cf046
Commit
4e1cf046
authored
Mar 15, 2019
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
在途金额修正
parent
c91b0395
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
4 deletions
+23
-4
RecPayQueryTeam.vue
src/components/FinancialModule/RecPayQueryTeam.vue
+22
-3
VisaProductOrder.vue
src/components/SalesVisa/VisaProductOrder.vue
+1
-1
No files found.
src/components/FinancialModule/RecPayQueryTeam.vue
View file @
4e1cf046
...
...
@@ -245,32 +245,49 @@
<th>
团队编号
</th>
<th>
发团日期
</th>
<th>
订单号
</th>
<th>
客户信息
</th>
<th>
业务员
</th>
<th>
应收金额
</th>
<th>
实收金额
</th>
<th>
待收金额
</th>
<th>
已退款
</th>
<th>
平台税金
</th>
<th>
在途金额
</th>
</tr>
<tr
v-for=
" ( item , index ) in DataList "
>
<td>
<span
class=
"_link_hover"
@
click=
"jumpPage('RegistrationList', item.TCID, 1, 0)"
>
{{
item
.
TCNUM
}}
(
{{
item
.
TCID
}}
)
</span>
</td>
<td>
{{
item
.
StartDate
}}
</td>
<td
colspan=
"
7
"
>
<td
colspan=
"
9
"
>
<table
class=
"_singeRowTable_two"
style=
"width: 100%;table-layout: fixed;border-collapse: collapse;"
cellspacing=
"0"
cellpadding=
"0"
border=
"0"
>
<tbody>
<tr
v-for=
" ( son , sIndex ) in item.OrderList "
>
<td>
<span
class=
"_link_hover"
@
click=
"jumpPage('RegistrationList', son.OrderId, 2, item.TCID)"
>
{{
son
.
OrderId
}}
</span>
</td>
<td>
{{
son
.
ContactName
}}
</td>
<td>
{{
son
.
EmName
}}
</td>
<td>
{{
son
.
PreferPrice
}}
</td>
<td>
<span
:class=
"son.DaiShou > 0 ? '
':'_color_red
'"
>
{{
son
.
Income
}}
</span>
</td>
<td>
<span
:class=
"son.DaiShou > 0 ? '
_color_red':'
'"
>
{{
son
.
Income
}}
</span>
</td>
<td>
{{
son
.
DaiShou
}}
</td>
<td>
{{
son
.
Refund
}}
</td>
<td>
{{
son
.
PlatformTax
}}
</td>
<td>
{{
son
.
ZaiTuMoney
}}
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
合计
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>
{{
Statistics
.
PreferPrice
}}
</td>
<td>
{{
Statistics
.
Income
}}
</td>
<td>
{{
Statistics
.
DueinMoney
}}
</td>
<td>
{{
Statistics
.
Refund
}}
</td>
<td>
{{
Statistics
.
PlatformTax
}}
</td>
<td>
{{
Statistics
.
ZaiTuMoney
}}
</td>
</tr>
</table>
<div
class=
"noDataNotice"
v-if=
"noData"
>
<i
class=
"iconfont icon-kong"
></i>
...
...
@@ -332,6 +349,7 @@ export default {
IsLeave
:
0
,
},
DataList
:[],
Statistics
:{},
DepartmentList
:[],
EmployeeList
:[],
CompanyList
:[],
...
...
@@ -485,7 +503,8 @@ export default {
this
.
apipost
(
'Financial_post_GetInComePayInfoList'
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
this
.
DataList
=
res
.
data
.
data
.
pageData
;
this
.
DataList
=
res
.
data
.
data
.
pageData
.
List
;
this
.
Statistics
=
res
.
data
.
data
.
pageData
.
Statistics
;
if
(
this
.
DataList
.
length
==
0
){
this
.
noData
=
true
;
}
else
{
...
...
src/components/SalesVisa/VisaProductOrder.vue
View file @
4e1cf046
...
...
@@ -298,7 +298,7 @@ export default {
this
.
loading
=
false
;
this
.
dataList
.
forEach
(
x
=>
{
this
.
PreferPrice
+=
x
.
TotalPrice
;
this
.
IncomePrice
+=
x
.
Income
;
this
.
IncomePrice
+=
(
x
.
Income
+
x
.
PlatformTax
-
x
.
RefundMoney
)
;
})
}
},
err
=>
{})
...
...
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