| | |
| | | manLocDetl.setModel(mat.getModel()); |
| | | manLocDetl.setCreateTime(now); |
| | | manLocDetl.setModiTime(now); |
| | | manLocDetl.setAppeTime(now); |
| | | manLocDetl.setCreateBy(userId); |
| | | manLocDetl.setStatus(1); |
| | | manLocDetl.setPayment(1); |
| | |
| | | .eq("matnr", source.getMatnr())); |
| | | source.setLocNo(targetNode.getUuid()); |
| | | source.setNodeId(targetNode.getId()); |
| | | if (source.getAppeTime() == null) { |
| | | source.setAppeTime(source.getCreateTime() != null ? source.getCreateTime() : new Date()); |
| | | } |
| | | |
| | | SaasUtils.insertLog(2,source.getLocNo(), source.getMatnr(), source.getAnfme(),user.getUsername()); |
| | | manLocDetlService.insert(source); |
| | |
| | | page.setTotal(baseMapper.listByPageCount(page.getCondition())); |
| | | return page; |
| | | } |
| | | |
| | | @Override |
| | | public Node selectByParentName(String parentName) { |
| | | return this.selectOne(new EntityWrapper<Node>().eq("parent_name",parentName)); |
| | | } |
| | | } |