Browse Source

feature:修改支付渠道文案

wuyongyi 2 years ago
parent
commit
9f8b88c6e0

+ 1 - 1
src/main/java/com/ywt/mg/domain/models/enums/PresPaymentChannelEnum.java

@@ -10,7 +10,7 @@ public enum PresPaymentChannelEnum {
     FREE("无须支付", 6),
     MedicalInsurance("医保", 7),
     ICBC("工行", 8),
-    PharmacyPOS("药pos机", 9),
+    PharmacyPOS("药pos机", 9),
     UNKNOWN("", 0);
 
     private final String displayName;

+ 3 - 3
src/main/java/com/ywt/mg/services/PrescriptionServices.java

@@ -582,9 +582,9 @@ public class PrescriptionServices {
         customExcelItemList.add(new ExcelCollectPojo(startColumn + 3, startRows, new String[]{"工行退款总额", FormatUtil.intShrink100ToStr(icbcRefundTotal)}));
         customExcelItemList.add(new ExcelCollectPojo(startColumn + 5, startRows, new String[]{"工行实际支付金额", FormatUtil.intShrink100ToStr(icbcPay - icbcRefundTotal)}));
 
-        customExcelItemList.add(new ExcelCollectPojo(startColumn + 1, startRows, new String[]{"药店pos机", FormatUtil.intShrink100ToStr(pharmacyPosPay)}));
-        customExcelItemList.add(new ExcelCollectPojo(startColumn + 3, startRows, new String[]{"药店pos机退款总额", FormatUtil.intShrink100ToStr(pharmacyPosRefundTotal)}));
-        customExcelItemList.add(new ExcelCollectPojo(startColumn + 5, startRows, new String[]{"药店pos机实际支付金额", FormatUtil.intShrink100ToStr(pharmacyPosPay - pharmacyPosRefundTotal)}));
+        customExcelItemList.add(new ExcelCollectPojo(startColumn + 1, startRows, new String[]{"药店POS机", FormatUtil.intShrink100ToStr(pharmacyPosPay)}));
+        customExcelItemList.add(new ExcelCollectPojo(startColumn + 3, startRows, new String[]{"药店POS机退款总额", FormatUtil.intShrink100ToStr(pharmacyPosRefundTotal)}));
+        customExcelItemList.add(new ExcelCollectPojo(startColumn + 5, startRows, new String[]{"药店POS机实际支付金额", FormatUtil.intShrink100ToStr(pharmacyPosPay - pharmacyPosRefundTotal)}));
         return customExcelItemList;
     }