修改审核通过的指标重新上传文件时清空备注

This commit is contained in:
liuwu 2023-11-14 17:52:02 +08:00
parent fb8355018b
commit 0e6a4de19c
1 changed files with 1 additions and 0 deletions

View File

@ -194,6 +194,7 @@ public class TAmentPartyAffairsController extends BaseController
his.setFiles(tAmentPartyAffairs.getFiles()); his.setFiles(tAmentPartyAffairs.getFiles());
tAmentPartyAffairs.setStatus("2"); tAmentPartyAffairs.setStatus("2");
commitHisService.insertTAmentCommitHis(his); commitHisService.insertTAmentCommitHis(his);
tAmentPartyAffairs.setRemark(StringUtils.isNotEmpty(tAmentPartyAffairs.getRemark())?tAmentPartyAffairs.getRemark():" ");
tAmentPartyAffairs.setCommitId(his.getId()); tAmentPartyAffairs.setCommitId(his.getId());
return toAjax(tAmentPartyAffairsService.updateTAmentPartyAffairs(tAmentPartyAffairs)); return toAjax(tAmentPartyAffairsService.updateTAmentPartyAffairs(tAmentPartyAffairs));
} }