|
@@ -65,9 +65,18 @@ public class TbFaultReportServiceImpl extends ServiceImpl<TbFaultReportMapper, T
|
|
|
* @return 故障报备
|
|
|
*/
|
|
|
@Override
|
|
|
- public TbFaultReport selectTbFaultReportById(Long id)
|
|
|
+ public TbFaultReportDTO selectTbFaultReportById(Long id)
|
|
|
{
|
|
|
- return tbFaultReportMapper.selectTbFaultReportById(id);
|
|
|
+ TbFaultReport tbFaultReport = tbFaultReportMapper.selectTbFaultReportById(id);
|
|
|
+ TbFaultReportDTO tbFaultReportDTO = BeanUtil.toBean(tbFaultReport, TbFaultReportDTO.class);
|
|
|
+ String assetBarCode = tbFaultReport.getAssetBarCode();
|
|
|
+ TbAsset tbAsset = tbAssetMapper.selectTbAssetByBarCode(assetBarCode);
|
|
|
+ Long userId = tbFaultReport.getUserId();
|
|
|
+ SysUser sysUser = userMapper.selectUserById(userId);
|
|
|
+ tbFaultReportDTO.setUsername(sysUser.getUserName());
|
|
|
+ tbFaultReportDTO.setNickname(sysUser.getNickName());
|
|
|
+ tbFaultReportDTO.setTbAsset(tbAsset);
|
|
|
+ return tbFaultReportDTO;
|
|
|
}
|
|
|
|
|
|
|
|
@@ -85,6 +94,10 @@ public class TbFaultReportServiceImpl extends ServiceImpl<TbFaultReportMapper, T
|
|
|
TbFaultReportDTO tbFaultReportDTO = BeanUtil.toBean(faultReport, TbFaultReportDTO.class);
|
|
|
String assetBarCode = faultReport.getAssetBarCode();
|
|
|
TbAsset tbAsset = tbAssetMapper.selectTbAssetByBarCode(assetBarCode);
|
|
|
+ Long userId = faultReport.getUserId();
|
|
|
+ SysUser sysUser = userMapper.selectUserById(userId);
|
|
|
+ tbFaultReportDTO.setUsername(sysUser.getUserName());
|
|
|
+ tbFaultReportDTO.setNickname(sysUser.getNickName());
|
|
|
tbFaultReportDTO.setTbAsset(tbAsset);
|
|
|
faultReportDTOS.add(tbFaultReportDTO);
|
|
|
}
|
|
@@ -226,8 +239,13 @@ public class TbFaultReportServiceImpl extends ServiceImpl<TbFaultReportMapper, T
|
|
|
return AjaxResult.error("故障报备已处理");
|
|
|
}
|
|
|
Long feedbackStatus = faultReportProcessDTO.getFeedbackStatus();
|
|
|
- if (feedbackStatus == null || feedbackStatus < 1 || feedbackStatus > 2){
|
|
|
+ if (feedbackStatus == null) {
|
|
|
+ return AjaxResult.error("状态反馈不能为空");
|
|
|
+ }
|
|
|
+ if (feedbackStatus > 0){
|
|
|
feedbackStatus = TbAssetStatusEnum.normal.getStatusCode();
|
|
|
+ } else {
|
|
|
+ feedbackStatus = TbAssetStatusEnum.scrap.getStatusCode();
|
|
|
}
|
|
|
faultReport.setProcessState(TbFaultProcessStateEnum.processed.getProcessStateCode());
|
|
|
faultReport.setProcessResult(faultReportProcessDTO.getProcessResult());
|