mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-20 15:19:52 +08:00
update
This commit is contained in:
@@ -36,7 +36,7 @@ public enum ThirdPlatformTypeEnum {
|
|||||||
WEI_WANG_XIN_DIAN("23", "微网新电", "MA005DBW1"),
|
WEI_WANG_XIN_DIAN("23", "微网新电", "MA005DBW1"),
|
||||||
HU_ZHOU_PLATFORM("24", "湖州市监管平台", "MA27U00HZ"),
|
HU_ZHOU_PLATFORM("24", "湖州市监管平台", "MA27U00HZ"),
|
||||||
CHANG_ZHOU_PLATFORM("25", "新运常畅充", "0585PCW57"),
|
CHANG_ZHOU_PLATFORM("25", "新运常畅充", "0585PCW57"),
|
||||||
SI_CHUAN_PLATFORM("26", "四川省平台", ""),
|
SI_CHUAN_PLATFORM("26", "四川省平台", "MA01H3BQ2"),
|
||||||
JI_LIN_PLATFORM("27", "吉林省平台", ""),
|
JI_LIN_PLATFORM("27", "吉林省平台", ""),
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|||||||
@@ -825,9 +825,12 @@ public class ChangZhouPlatformServiceImpl implements ThirdPartyPlatformService {
|
|||||||
|
|
||||||
//《***优惠金额***》
|
//《***优惠金额***》
|
||||||
//优惠电费
|
//优惠电费
|
||||||
BigDecimal discountElectricityAmount = orderDetail.getDiscountElectricityAmount();
|
BigDecimal discountElectricityAmount =
|
||||||
|
orderDetail.getDiscountElectricityAmount() == null ? BigDecimal.ZERO:orderDetail.getDiscountElectricityAmount();
|
||||||
//优惠服务费
|
//优惠服务费
|
||||||
BigDecimal discountServiceAmount = orderDetail.getDiscountServiceAmount();
|
BigDecimal discountServiceAmount =
|
||||||
|
orderDetail.getDiscountServiceAmount() == null ? BigDecimal.ZERO:orderDetail.getDiscountServiceAmount();
|
||||||
|
|
||||||
|
|
||||||
//《***优惠后***》
|
//《***优惠后***》
|
||||||
//电费
|
//电费
|
||||||
|
|||||||
Reference in New Issue
Block a user