Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
68e231cc
Commit
68e231cc
authored
Jul 19, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完善订单费用汇总
parent
699d09b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
FeeDetail.vue
src/views/ecw/order/components/FeeDetail.vue
+13
-13
No files found.
src/views/ecw/order/components/FeeDetail.vue
View file @
68e231cc
...
...
@@ -10,7 +10,7 @@
{{
orderSummary
.
receivableClearanceFee
}}{{
currencyMap
[
orderSummary
.
clearanceFreightCurrency
]
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('应收额外费用')"
>
{{
orderSummary
.
receivableOtherFee
}}{{
currencyMap
[
orderSummary
.
clearanceOther
Currency
]
}}
{{
orderSummary
.
receivableOtherFee
}}{{
currencyMap
[
orderSummary
.
otherFee
Currency
]
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('应收总金额')"
>
{{
orderSummary
.
receivableTotalAmount
}}{{
currencyMap
[
orderSummary
.
writeOffCurrencyId
]
}}
...
...
@@ -22,7 +22,7 @@
{{
orderSummary
.
netReceiptsClearanceFee
}}{{
currencyMap
[
orderSummary
.
clearanceFreightCurrency
]
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('实收额外费用')"
>
{{
orderSummary
.
netReceiptsOtherFee
}}{{
currencyMap
[
orderSummary
.
clearanceOther
Currency
]
}}
{{
orderSummary
.
netReceiptsOtherFee
}}{{
currencyMap
[
orderSummary
.
otherFee
Currency
]
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('实收总额')"
>
{{
orderSummary
.
netReceiptsTotalAmount
}}{{
currencyMap
[
orderSummary
.
writeOffCurrencyId
]
}}
...
...
@@ -34,7 +34,7 @@
{{
orderSummary
.
discountClearanceFee
}}{{
currencyMap
[
orderSummary
.
clearanceFreightCurrency
]
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('额外费用优惠金额')"
>
{{
orderSummary
.
discountOtherFee
}}{{
currencyMap
[
orderSummary
.
clearanceOther
Currency
]
}}
{{
orderSummary
.
discountOtherFee
}}{{
currencyMap
[
orderSummary
.
otherFee
Currency
]
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('订单优惠金额')"
>
{{
orderSummary
.
discountTotalAmount
}}{{
currencyMap
[
orderSummary
.
writeOffCurrencyId
]
}}
...
...
@@ -250,11 +250,11 @@
<dict-tag
:type=
"DICT_TYPE.FEE_TYPE"
:value=
"row.feeType"
></dict-tag>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('金额')"
prop=
"realityTotalAmount"
>
<
!--<
el-table-column :label="$t('金额')" prop="realityTotalAmount">
<template slot-scope="{row}">
TODO {{currencyMap[row.currencyId]}}
</template>
</el-table-column>
</el-table-column>
-->
<el-table-column
:label=
"$t('付款类型')"
>
<
template
slot-scope=
"{row}"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PAY_ADVANCE"
:value=
"row.isPayAdvance"
></dict-tag>
...
...
@@ -268,7 +268,7 @@
</el-table-column>
<el-table-column
:label=
"$t('收款优惠金额')"
width=
"120"
prop=
"discountFee"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
discountTotal
}}{{
currencyMap
[
row
.
currencyId
]
}}
{{
row
.
discountTotal
||
0
}}{{
currencyMap
[
row
.
currencyId
]
}}
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('实收美元金额')"
width=
"120"
prop=
"realFee"
>
...
...
@@ -281,7 +281,7 @@
<dict-tag
:type=
"DICT_TYPE.ECW_RECEIVABLE_STATE"
:value=
"row.state"
></dict-tag>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('申请人')"
prop=
"author"
></el-table-column>
<el-table-column
:label=
"$t('申请人')"
prop=
"author
Name
"
></el-table-column>
<el-table-column
:label=
"$t('申请时间')"
prop=
"applyTime"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
createTime
|
parseTime
}}
</
template
>
</el-table-column>
...
...
@@ -295,11 +295,11 @@
<dict-tag
:type=
"DICT_TYPE.FEE_TYPE"
:value=
"row.feeType"
></dict-tag>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('金额')"
prop=
"fee"
>
<
!--<
el-table-column :label="$t('金额')" prop="fee">
<template slot-scope="{row}">
TODO {{currencyMap[row.currencyId]}}
</template>
</el-table-column>
</el-table-column>
-->
<el-table-column
:label=
"$t('付款类型')"
>
<
template
slot-scope=
"{row}"
>
<dict-tag
:type=
"DICT_TYPE.ECW_PAY_ADVANCE"
:value=
"row.isPayAdvance"
></dict-tag>
...
...
@@ -465,13 +465,13 @@ export default {
// 特需汇总
getSpecialSummaries
(){
let
arr
=
[]
arr
[
3
]
=
this
.
$t
(
'
合计
'
)
arr
[
2
]
=
this
.
$t
(
'
合计
'
)
// 应收金额
arr
[
4
]
=
this
.
calcTotalByCurrency
(
this
.
specialNeedFeeList
,
'
receivableTotalAmount
'
,
'
currencyId
'
)
arr
[
3
]
=
this
.
calcTotalByCurrency
(
this
.
specialNeedFeeList
,
'
receivableTotalAmount
'
,
'
currencyId
'
)
// 收款优惠金额
arr
[
5
]
=
this
.
calcTotalByCurrency
(
this
.
specialNeedFeeList
,
'
discountTotal
'
,
'
currencyId
'
)
arr
[
4
]
=
this
.
calcTotalByCurrency
(
this
.
specialNeedFeeList
,
'
discountTotal
'
,
'
currencyId
'
)
// 实收金额
arr
[
6
]
=
this
.
calcTotalByCurrency
(
this
.
specialNeedFeeList
,
'
realityTotalAmount
'
,
'
currencyId
'
)
arr
[
5
]
=
this
.
calcTotalByCurrency
(
this
.
specialNeedFeeList
,
'
realityTotalAmount
'
,
'
currencyId
'
)
return
arr
},
// 费用申请汇总
...
...
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