Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-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-api-boot-master
Commits
fa70ee2e
Commit
fa70ee2e
authored
Mar 25, 2025
by
332784038@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新汇率获取货币代码冗余值bug修复
parent
796c0fdf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
0 deletions
+46
-0
CurrecyApiImpl.java
.../iocoder/yudao/module/ecw/service/api/CurrecyApiImpl.java
+14
-0
ReceiptItemBackVO.java
...yudao/module/wealth/vo/receiptItem/ReceiptItemBackVO.java
+18
-0
ReceiptItemRespVO.java
...yudao/module/wealth/vo/receiptItem/ReceiptItemRespVO.java
+14
-0
No files found.
yudao-module-ecw/yudao-module-ecw-impl/src/main/java/cn/iocoder/yudao/module/ecw/service/api/CurrecyApiImpl.java
View file @
fa70ee2e
...
...
@@ -46,13 +46,20 @@ public class CurrecyApiImpl implements CurrencyApi {
dto
.
setTargetCurrencyAmount
(
BigDecimal
.
ZERO
);
}
else
{
if
(
sourceId
.
equals
(
targetId
)){
String
code
=
Optional
.
ofNullable
(
currencyService
.
getCurrency
(
Math
.
toIntExact
(
sourceId
)))
.
map
(
CurrencyDO:
:
getFuhao
)
.
orElse
(
null
);
dto
.
setSourceCurrencyAmount
(
BigDecimal
.
ONE
);
dto
.
setSourceCurrencyCode
(
code
);
dto
.
setTargetCurrencyAmount
(
BigDecimal
.
ONE
);
dto
.
setTargetCurrencyCode
(
code
);
dto
.
setCurrencyRate
(
BigDecimal
.
ONE
);
}
else
{
CurrencyRateDO
currencyRateDO
=
currencyRateService
.
exchangeBaseValue
(
sourceId
,
targetId
);
dto
.
setSourceCurrencyAmount
(
currencyRateDO
.
getSourceAmount
());
dto
.
setSourceCurrencyCode
(
currencyRateDO
.
getSourceCurrencyCode
());
dto
.
setTargetCurrencyAmount
(
currencyRateDO
.
getTargetAmount
());
dto
.
setTargetCurrencyCode
(
currencyRateDO
.
getTargetCurrencyCode
());
dto
.
setCurrencyRate
(
currencyRateService
.
rate
(
currencyRateDO
.
getSourceAmount
(),
currencyRateDO
.
getTargetAmount
()));
}
...
...
@@ -76,8 +83,13 @@ public class CurrecyApiImpl implements CurrencyApi {
dto
.
setTargetCurrencyCode
(
targetCode
);
if
(
StrUtil
.
equals
(
sourceCode
,
targetCode
))
{
String
code
=
Optional
.
ofNullable
(
currencyService
.
getCurrencyByCode
(
sourceCode
))
.
map
(
CurrencyDO:
:
getFuhao
)
.
orElse
(
null
);
dto
.
setSourceCurrencyAmount
(
BigDecimal
.
ONE
);
dto
.
setSourceCurrencyCode
(
code
);
dto
.
setTargetCurrencyAmount
(
BigDecimal
.
ONE
);
dto
.
setTargetCurrencyCode
(
code
);
dto
.
setCurrencyRate
(
BigDecimal
.
ONE
);
return
dto
;
}
...
...
@@ -101,7 +113,9 @@ public class CurrecyApiImpl implements CurrencyApi {
}
else
{
CurrencyRateDO
currencyRateDO
=
currencyRateService
.
exchangeBaseValue
(
sourceId
,
targetId
);
dto
.
setSourceCurrencyAmount
(
currencyRateDO
.
getSourceAmount
());
dto
.
setSourceCurrencyCode
(
currencyRateDO
.
getSourceCurrencyCode
());
dto
.
setTargetCurrencyAmount
(
currencyRateDO
.
getTargetAmount
());
dto
.
setTargetCurrencyCode
(
currencyRateDO
.
getTargetCurrencyCode
());
dto
.
setCurrencyRate
(
currencyRateService
.
rate
(
currencyRateDO
.
getSourceAmount
(),
currencyRateDO
.
getTargetAmount
()));
}
...
...
yudao-module-wealth/yudao-module-wealth-core/src/main/java/cn/iocoder/yudao/module/wealth/vo/receiptItem/ReceiptItemBackVO.java
View file @
fa70ee2e
package
cn
.
iocoder
.
yudao
.
module
.
wealth
.
vo
.
receiptItem
;
import
cn.iocoder.yudao.module.wealth.vo.receivable.ReceivableInItemVO
;
import
com.alibaba.excel.annotation.ExcelIgnore
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.math.BigDecimal
;
import
java.util.Date
;
import
java.util.List
;
...
...
@@ -79,6 +81,22 @@ public class ReceiptItemBackVO {
@ApiModelProperty
(
value
=
"收款汇率"
)
private
String
rate
;
@ApiModelProperty
(
value
=
"原币种基础汇率金额"
)
@ExcelIgnore
private
BigDecimal
sourceAmount
;
@ApiModelProperty
(
value
=
"原币种代码"
)
@ExcelIgnore
private
String
sourceCurrencyCode
;
@ApiModelProperty
(
value
=
"支付币种基础汇率金额"
)
@ExcelIgnore
private
BigDecimal
targetAmount
;
@ApiModelProperty
(
value
=
"支付币种代码"
)
@ExcelIgnore
private
String
targetCurrencyCode
;
@ExcelProperty
(
"实收日期"
)
@JsonFormat
(
pattern
=
FORMAT_YEAR_MONTH_DAY
)
@ApiModelProperty
(
value
=
"实收日期"
)
...
...
yudao-module-wealth/yudao-module-wealth-core/src/main/java/cn/iocoder/yudao/module/wealth/vo/receiptItem/ReceiptItemRespVO.java
View file @
fa70ee2e
...
...
@@ -2,11 +2,13 @@ package cn.iocoder.yudao.module.wealth.vo.receiptItem;
import
cn.iocoder.yudao.framework.common.util.io.FileModel
;
import
cn.iocoder.yudao.module.wealth.vo.receipt.ReceiptRelationOrderInfoVO
;
import
com.alibaba.excel.annotation.ExcelIgnore
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.math.BigDecimal
;
import
java.util.Date
;
import
java.util.List
;
...
...
@@ -48,6 +50,18 @@ public class ReceiptItemRespVO {
@ApiModelProperty
(
value
=
"收款汇率"
)
private
String
rate
;
@ApiModelProperty
(
value
=
"原币种基础汇率金额"
)
private
BigDecimal
sourceAmount
;
@ApiModelProperty
(
value
=
"原币种代码"
)
private
String
sourceCurrencyCode
;
@ApiModelProperty
(
value
=
"支付币种基础汇率金额"
)
private
BigDecimal
targetAmount
;
@ApiModelProperty
(
value
=
"支付币种代码"
)
private
String
targetCurrencyCode
;
@ApiModelProperty
(
value
=
"实收日期"
)
@JsonFormat
(
pattern
=
FORMAT_YEAR_MONTH_DAY
)
private
Date
amountDate
;
...
...
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