diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java index 525ba492d..91b2d5ad7 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java @@ -18,7 +18,6 @@ import com.iformall.mapper.*; import com.iformall.mq.MqBaseProducer; import com.iformall.service.*; import com.iformall.utils.Constant; -import com.iformall.utils.DateUtils; import com.iformall.utils.JsonUtil; import org.apache.commons.collections.CollectionUtils; import org.apache.commons.collections.map.HashedMap; @@ -42,7 +41,6 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; - import java.lang.reflect.Field; import java.text.SimpleDateFormat; import java.util.*; @@ -167,7 +165,11 @@ public class WxFlowServiceImpl implements WxFlowService { || EnumFlowKey.NEW_RENT_END.getCode().equals(flowType) || EnumFlowKey.NEW_RENT_POINT_CONTRACT_END.getCode().equals(flowType) ){ - if(EnumFlowContractType.RENT.getCode().equals(contractType) || EnumFlowContractType.RENT_POINT.getCode().equals(contractType) ){ + if(EnumFlowContractType.RENT.getCode().equals(contractType) || + EnumFlowContractType.RENT_POINT.getCode().equals(contractType) || + EnumFlowContractType.RENT_POINT.getCode().equals(contractType) || + EnumFlowContractType.WHOLE_SHOP.getCode().equals(contractType) || + EnumFlowContractType.WHOLE_POINT.getCode().equals(contractType)){ WxRentContract rent = new WxRentContract(); rent.setId(businessId); rent.setApplyStatus(applyStatus);