Explorar el Código

[日常费用][修改[导出模板与导入数据]

release_toaliyun_real
gongbiao hace 7 años
padre
commit
511f227426
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxBillDailyServiceImpl.java

+ 2
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxBillDailyServiceImpl.java Ver fichero

@@ -263,7 +263,7 @@ public class WxBillDailyServiceImpl implements WxBillDailyService {
return;
}
Integer type = billDaily.getType();
if (type != null && (type.equals(EnumBillDailyType.WATER.getCode()) || type.equals(EnumBillDailyType.POWER.getCode()))) {
if (type != null) {
stringRedisTemplate.opsForHash().increment(importKey, "processCount", 1);
logger.error("账单类型为空", billDaily.toString());
return;
@@ -320,6 +320,7 @@ public class WxBillDailyServiceImpl implements WxBillDailyService {
billDaily.setStatus(EnumBillRentStatus.PAID.getCode());
}

billDaily.setUserId(user.getId());
billDaily.setShopId(wxShop.getId());
billDaily.setRentShopType(wxShop.getType());
billDaily.setPayWay(EnumBillPayWay.OTHER.getCode());


Cargando…
Cancelar
Guardar