| | |
| | | private DicTriggerService dicTriggerService; |
| | | @Resource |
| | | private InoutService inoutService; |
| | | @Resource |
| | | private InoutEventControlManager inoutEventControl; |
| | | |
| | | /** |
| | | * 获取出入库的整个流程信息 |
| | |
| | | public void initInoutScreen(String companyId, String deptId) { |
| | | if (StringUtils.isEmpty(companyId)) return; |
| | | if (StringUtils.isEmpty(deptId)) return; |
| | | inoutService.notifyToScreen(companyId, deptId, null); |
| | | inoutEventControl.initInoutScreen(companyId, deptId, null); |
| | | } |
| | | |
| | | public List<InoutData> getListInoutCache(String deptId) { |
| | | return inoutService.getListInoutCache(deptId); |
| | | |
| | | } |
| | | |
| | | public List<InoutData> getCompleteListInoutCache(String deptId) { |