This commit is contained in:
parent
58c4819819
commit
949f592b45
|
|
@ -1042,7 +1042,10 @@ public class BackApplyInfoServiceImpl implements IBackApplyInfoService {
|
||||||
backApplyInfo.setCreateTime(DateUtils.getNowDate());
|
backApplyInfo.setCreateTime(DateUtils.getNowDate());
|
||||||
result = getResultTask(dto, result, tmTask, backApplyInfo);
|
result = getResultTask(dto, result, tmTask, backApplyInfo);
|
||||||
if (result > 0) {
|
if (result > 0) {
|
||||||
return AjaxResult.success();
|
BackApplyInfo info = new BackApplyInfo();
|
||||||
|
info.setId(backApplyInfo.getId());
|
||||||
|
info.setTaskId(tmTask.getTaskId());
|
||||||
|
return AjaxResult.success(info);
|
||||||
}
|
}
|
||||||
} else if (dto != null && dto.getBackApplyInfo() != null && dto.getBackApplyInfo().getId() != null
|
} else if (dto != null && dto.getBackApplyInfo() != null && dto.getBackApplyInfo().getId() != null
|
||||||
&& ((dto.getBackApplyDetails() != null) || CollectionUtils.isNotEmpty(dto.getBackApplyDetailsList()))) {
|
&& ((dto.getBackApplyDetails() != null) || CollectionUtils.isNotEmpty(dto.getBackApplyDetailsList()))) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue