| | |
| | | // erp上报 |
| | | private Boolean erpReport = false; |
| | | |
| | | private String erpInReportPath; |
| | | |
| | | private String erpOutReportPath; |
| | | |
| | | private String erpReportURL; |
| | | |
| | | |
| | | @Autowired |
| | | private ConfigService configService; |
| | |
| | | logDeleteDays = configService.getVal("logDeleteDays", Integer.class, logDeleteDays); |
| | | erpReport = configService.getVal("erpReport", Boolean.class, erpReport); |
| | | zpalletManage = configService.getVal("zpalletManage", Boolean.class, zpalletManage); |
| | | erpOutReportPath = configService.getVal("erpOutReportPath", String.class, erpOutReportPath); |
| | | erpInReportPath = configService.getVal("erpInReportPath", String.class, erpInReportPath); |
| | | erpReportURL = configService.getVal("erpReportURL", String.class, erpReportURL); |
| | | |
| | | } |
| | | |