|
@@ -102,11 +102,11 @@ public class DmInformationServiceImpl implements DmInformationService {
|
|
|
public DmInformationDto create(DmInformation resources) {
|
|
|
Snowflake snowflake = IdUtil.createSnowflake(1, 1);
|
|
|
resources.setId(snowflake.nextId());
|
|
|
- resources.setRequestUser(dmUserMapper.toEntity(DmUserUtils.getCurrDmUser()));
|
|
|
+// resources.setRequestUser(dmUserMapper.toEntity(DmUserUtils.getCurrDmUser()));
|
|
|
resources.setStatus("00");
|
|
|
resources.setIsHasApproval("0");
|
|
|
DmInformationDto dto = dmInformationMapper.toDto(dmInformationRepository.save(resources));
|
|
|
- dto.setRequestUser(dmUserMapper.toEntity(DmUserUtils.getCurrDmUser()));
|
|
|
+// dto.setRequestUser(dmUserMapper.toEntity(DmUserUtils.getCurrDmUser()));
|
|
|
ActivitiEvent event = new ActivitiEvent(this,resources,OperationStatus.SUBMIT);
|
|
|
applicationContext.publishEvent(event);
|
|
|
return dto;
|
|
@@ -116,7 +116,7 @@ public class DmInformationServiceImpl implements DmInformationService {
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void update(DmInformation resources,String ... statusList) {
|
|
|
DmInformation dmInformation = dmInformationRepository.findById(resources.getId()).orElseGet(DmInformation::new);
|
|
|
- if (StringUtils.isNotBlank(dmInformation.getStatus())){
|
|
|
+ if (StringUtils.isNotBlank(dmInformation.getIsValid())){
|
|
|
dmInformation.setReleaseTime(new Timestamp(System.currentTimeMillis()));
|
|
|
}
|
|
|
ValidationUtil.isNull( dmInformation.getId(),"DmInformation","id",resources.getId());
|
|
@@ -195,7 +195,7 @@ public class DmInformationServiceImpl implements DmInformationService {
|
|
|
String inistatus = approval.getStatus();
|
|
|
|
|
|
//修改信息
|
|
|
- information.setApprovalUser(dmUser);
|
|
|
+// information.setApprovalUser(dmUser);
|
|
|
information.setApprovalTime(new Timestamp(System.currentTimeMillis()));
|
|
|
this.update(information,inistatus);
|
|
|
//保存审批信息
|