Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
yohoufo-fore
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
LUOXC
6 years ago
Commit
634203276ff30a72dbd1d1e98e88ddd757d776a3
1 parent
4ca8b270
fixbug
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
order/src/main/java/com/yohoufo/order/service/transfer/HkAccountSettlement.java
order/src/main/java/com/yohoufo/order/service/transfer/HkAccountSettlement.java
View file @
6342032
...
...
@@ -242,7 +242,9 @@ public class HkAccountSettlement {
.
subject
(
"UFO香港卖家结算"
)
.
to
(
configReader
.
getString
(
"ufo.order.seller.hkAccountSettlementEmailTo"
,
"xiuchun.luo@yoho.cn"
))
.
body
(
"打款提醒:您有新的订单需要打款"
,
"text/html;charset=utf-8"
)
.
attachment
(
"卖家结算清单.csv"
,
buildDate
(
tradeBillResults
),
"application/x-csv;charset=utf-8"
)
.
attachment
(
"卖家结算清单.csv"
,
// csv的文件头设置BOM(Byte order mark)来解决中文乱码问题
'\ufeff'
+
buildDate
(
tradeBillResults
),
"application/x-csv;charset=utf-8"
)
.
send
();
}
...
...
Please
register
or
login
to post a comment