Browse Source

2月11日,执行人查询优化

dev
wangguorui 2 weeks ago
parent
commit
331958175c
  1. 7
      src/main/java/com/example/demo/controller/cash/CashRefundController.java

7
src/main/java/com/example/demo/controller/cash/CashRefundController.java

@ -745,6 +745,13 @@ public class CashRefundController {
cashRecordDTO.getRefundCurrency(), languageCode);
cashRecordDTO.setRefundCurrency(chineseCurrency);
}
// 转换退款途径
if (cashRecordDTO.getRefundChannels() != null && !cashRecordDTO.getRefundChannels().isEmpty()) {
String chineseChannels = translationService.findChineseSimplifiedByTranslation(
cashRecordDTO.getRefundChannels(), languageCode);
cashRecordDTO.setRefundChannels(chineseChannels);
}
}
}

Loading…
Cancel
Save