| | |
| | | } |
| | | |
| | | /** |
| | | * 出入库流程中的实时数据,值获取流程中的数据 |
| | | * |
| | | * @param param 包含type和deptId两个参数 |
| | | * @return |
| | | */ |
| | | @RequestMapping("/list-only-progress") |
| | | public PageResponse<List<InoutData>> listOnlyProgress(@RequestBody InoutParam param) { |
| | | IUser user = ContextUtil.getLoginUser(); |
| | | if (StringUtils.isEmpty(param.getDeptId())) { |
| | | param.setDeptId(ContextUtil.subDeptId(user)); |
| | | } |
| | | if (StringUtils.isEmpty(param.getCompanyId())) { |
| | | param.setCompanyId(user.getCompanyId()); |
| | | } |
| | | return inoutManager2.listOnlyProgress(param); |
| | | } |
| | | |
| | | /** |
| | | * 入库简易操作页面 |
| | | * |
| | | * @param sort 表示使用的出入库设备配套号,不传递默认为1 |