| | |
| | | package com.zy.asrs.task.kingdee; |
| | | |
| | | import com.core.common.Cools; |
| | | import com.zy.asrs.task.kingdee.handler.InboundOrderHandler; |
| | | import com.zy.common.entity.Parameter; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | |
| | | @Value("${erp.switch.InboundOrderSwitch}") |
| | | private boolean InboundOrderSwitch; |
| | | |
| | | @Scheduled(cron = "0/3 * * * * ? ") |
| | | // @Scheduled(cron = "0/3 * * * * ? ") |
| | | void login(){ |
| | | if(!InboundOrderSwitch){ |
| | | return; |
| | | } |
| | | inboundOrderHandler.start(); |
| | | String erpReport = Parameter.get().getErpReport(); |
| | | if (!Cools.isEmpty(erpReport) && erpReport.equals("true")) { |
| | | inboundOrderHandler.start(); |
| | | } |
| | | } |
| | | |
| | | } |