소스 검색

邮件优化

Bob 4 일 전
부모
커밋
e08e7fe4c3

+ 2 - 2
pdf-office-payment/src/main/java/cn/kdan/cloud/pdf/office/payment/service/impl/PayCenterWebhookServiceImpl.java

@@ -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);