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
cbd805a7
Commit
cbd805a7
authored
Jan 17, 2025
by
chenwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
🐛
: 银行实收明细更改
parent
f3f107e5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
BankReceiptsDetailItem.vue
...views/ecw/financial/components/BankReceiptsDetailItem.vue
+1
-1
receiptDetail.vue
src/views/ecw/financial/receiptDetail.vue
+2
-2
No files found.
src/views/ecw/financial/components/BankReceiptsDetailItem.vue
View file @
cbd805a7
...
...
@@ -455,7 +455,7 @@ export default {
}
}
}
this
.
$set
(
this
.
bankReceiptDetails
,
"
writeOffAmount
"
,
Math
.
round
(
NP
.
times
(
this
.
bankReceiptDetails
.
rate
||
0
,
this
.
bankReceiptDetails
.
amount
||
0
)),
2
)
this
.
$set
(
this
.
bankReceiptDetails
,
"
writeOffAmount
"
,
NP
.
round
(
NP
.
times
(
this
.
bankReceiptDetails
.
rate
||
0
,
this
.
bankReceiptDetails
.
amount
||
0
),
2
)
)
//已填写核销金额
this
.
$set
(
this
.
bankReceiptDetails
,
"
currentWriteOffAmount
"
,
0
)
// 剩余核销金额
...
...
src/views/ecw/financial/receiptDetail.vue
View file @
cbd805a7
...
...
@@ -583,7 +583,7 @@
<
/el-form-item
>
<
el
-
form
-
item
v
-
if
=
"
showCurrencyId != addForm.currencyId
"
>
<
template
slot
=
"
label
"
>
{{
$t
(
"
兑核销基准币种金额
"
)
}}
(
{{
getCurrencyLabel
(
showCurrencyId
)
}}
)
<
/template
>
<
span
>
{{
addForm
.
writeOffAmount
?
parseFloat
(
addForm
.
writeOffAmount
).
toFixed
(
2
)
:
""
}}
<
/span
>
<
span
>
{{
addForm
.
writeOffAmount
}}
<
/span
>
<
/el-form-item
>
<
el
-
form
-
item
:
label
=
"
$t('水单附件')
"
prop
=
"
attr
"
>
<
el
-
upload
v
-
if
=
"
!isView
"
class
=
"
upload-demo
"
:
action
=
"
uploadFileUrl
"
:
headers
=
"
headers
"
:
on
-
success
=
"
handleUploadSuccess
"
:
before
-
upload
=
"
handleBeforeUpload
"
:
on
-
error
=
"
handleUploadError
"
:
before
-
remove
=
"
beforeRemove
"
:
file
-
list
=
"
addForm.attr
"
multiple
>
...
...
@@ -1269,7 +1269,7 @@ export default {
}
}
}
this
.
$set
(
this
.
addForm
,
"
writeOffAmount
"
,
Math
.
round
(
NP
.
times
(
this
.
addForm
.
rate
||
0
,
this
.
addForm
.
amount
||
0
)),
2
)
this
.
$set
(
this
.
addForm
,
"
writeOffAmount
"
,
NP
.
round
(
NP
.
times
(
this
.
addForm
.
rate
||
0
,
this
.
addForm
.
amount
||
0
),
2
)
)
//已填写核销金额
this
.
$set
(
this
.
addForm
,
"
currentWriteOffAmount
"
,
0
)
// 剩余核销金额
...
...
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