Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Litemall
Commits
04d4fc9c
Commit
04d4fc9c
authored
Sep 27, 2020
by
linlinjava
Committed by
Gitee
Sep 27, 2020
Browse files
!50 fix:售后退款只退一部分会失败的问题
Merge pull request !50 from 宋浩志/N/A
parents
2b69527d
332e9319
Changes
1
Hide whitespace changes
Inline
Side-by-side
litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminAftersaleController.java
View file @
04d4fc9c
...
...
@@ -183,7 +183,7 @@ public class AdminAftersaleController {
wxPayRefundRequest
.
setOutRefundNo
(
"refund_"
+
order
.
getOrderSn
());
// 元转成分
Integer
totalFee
=
aftersaleOne
.
getAmount
().
multiply
(
new
BigDecimal
(
100
)).
intValue
();
wxPayRefundRequest
.
setTotalFee
(
totalFee
);
wxPayRefundRequest
.
setTotalFee
(
order
.
getActualPrice
().
multiply
(
new
BigDecimal
(
100
)).
intValue
()
);
wxPayRefundRequest
.
setRefundFee
(
totalFee
);
WxPayRefundResult
wxPayRefundResult
;
...
...
Write
Preview
Supports
Markdown
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