|
|
@@ -363,7 +363,13 @@ public class TsaWithdrawService {
|
|
|
* @since 2020. 11. 16
|
|
|
*/
|
|
|
public Collection<Withdraw> getRefundDetailList(Withdraw withdraw) {
|
|
|
- return withdrawDao.getRefundDetailList(withdraw);
|
|
|
+ // 2021.10.12 메모내용 이모티콘 제거
|
|
|
+ Collection<Withdraw> refundDetailList = withdrawDao.getRefundDetailList(withdraw);
|
|
|
+ for (Withdraw data : refundDetailList) {
|
|
|
+ data.setChgMemo(EmojiParser.removeAllEmojis(data.getChgMemo()));
|
|
|
+ }
|
|
|
+
|
|
|
+ return refundDetailList;
|
|
|
}
|
|
|
|
|
|
|