|
|
@ -492,6 +492,20 @@ public class CashCollectionController { |
|
|
cashCollection.getPaymentCurrency(), languageCode); |
|
|
cashCollection.getPaymentCurrency(), languageCode); |
|
|
cashCollection.setPaymentCurrency(chineseCurrency); |
|
|
cashCollection.setPaymentCurrency(chineseCurrency); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 转换提交人地区 |
|
|
|
|
|
if (cashCollection.getSubmitterMarket() != null && !cashCollection.getSubmitterMarket().isEmpty()) { |
|
|
|
|
|
String chineseMarket = translationService.findChineseSimplifiedByTranslation( |
|
|
|
|
|
cashCollection.getSubmitterMarket(), languageCode); |
|
|
|
|
|
cashCollection.setSubmitterMarket(chineseMarket); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 转换所属地区名称 |
|
|
|
|
|
if (cashCollection.getMarketName() != null && !cashCollection.getMarketName().isEmpty()) { |
|
|
|
|
|
String chineseMarketName = translationService.findChineseSimplifiedByTranslation( |
|
|
|
|
|
cashCollection.getMarketName(), languageCode); |
|
|
|
|
|
cashCollection.setMarketName(chineseMarketName); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|