|
|
@ -338,7 +338,7 @@ public class TechnicalSpecificationServiceImpl implements TechnicalSpecification |
|
|
} |
|
|
} |
|
|
List<BomComponentVo> list= bomManagementMapper.queryBomComponent(bomDetailEntity.get(0)); |
|
|
List<BomComponentVo> list= bomManagementMapper.queryBomComponent(bomDetailEntity.get(0)); |
|
|
map.put("rows",list); |
|
|
map.put("rows",list); |
|
|
map.put("row",bomDetailEntity); |
|
|
|
|
|
|
|
|
map.put("row",bomDetailEntity.get(0)); |
|
|
return map; |
|
|
return map; |
|
|
} |
|
|
} |
|
|
@Override |
|
|
@Override |
|
|
@ -481,7 +481,7 @@ public class TechnicalSpecificationServiceImpl implements TechnicalSpecification |
|
|
} |
|
|
} |
|
|
List<RoutingComponentVo> list= technicalSpecificationMapper.searchBMRoute(bomDetailEntity.get(0)); |
|
|
List<RoutingComponentVo> list= technicalSpecificationMapper.searchBMRoute(bomDetailEntity.get(0)); |
|
|
map.put("rows",list); |
|
|
map.put("rows",list); |
|
|
map.put("row",bomDetailEntity); |
|
|
|
|
|
|
|
|
map.put("row",bomDetailEntity.get(0)); |
|
|
return map; |
|
|
return map; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@ -1343,7 +1343,8 @@ public class TechnicalSpecificationServiceImpl implements TechnicalSpecification |
|
|
@Override |
|
|
@Override |
|
|
@Transactional |
|
|
@Transactional |
|
|
public void submitChange(PlmTechnicalSpecificationSheetData data) { |
|
|
public void submitChange(PlmTechnicalSpecificationSheetData data) { |
|
|
|
|
|
|
|
|
|
|
|
SysUserEntity sysUserEntity = (SysUserEntity) SecurityUtils.getSubject().getPrincipal(); |
|
|
|
|
|
data.setUserName(sysUserEntity.getUsername()); |
|
|
// 1、获取当前登陆人的域控账号 |
|
|
// 1、获取当前登陆人的域控账号 |
|
|
SysUserEntity user = sysUserDao.selectOne(new QueryWrapper<SysUserEntity>().eq("username", data.getUserName())); |
|
|
SysUserEntity user = sysUserDao.selectOne(new QueryWrapper<SysUserEntity>().eq("username", data.getUserName())); |
|
|
OaUserInfoParam oaUserInfoParam = new OaUserInfoParam(); |
|
|
OaUserInfoParam oaUserInfoParam = new OaUserInfoParam(); |
|
|
|