|
@@ -351,9 +351,9 @@ public class PayCenterWebhookServiceImpl implements PayCenterWebhookService {
|
|
|
String price = ObjectUtils.isNotEmpty(ordersVO.getReducedPrice())? ordersVO.getReducedPrice().toEngineeringString() : ordersVO.getPrice().toEngineeringString();
|
|
|
String currencySign;
|
|
|
if (ordersVO.getPayment() == 1 || ordersVO.getPayment() == 2) {
|
|
|
- currencySign = "¥";
|
|
|
+ currencySign = "CNY";
|
|
|
} else {
|
|
|
- currencySign = "$";
|
|
|
+ currencySign = "USD";
|
|
|
}
|
|
|
contentMap.put("@payPrice@", currencySign + price);
|
|
|
contentMap.put("@renewPrice@", currencySign + price);
|