去掉回传合同不能修改合同的条件

This commit is contained in:
mx 2025-06-05 11:49:30 +08:00
parent 86faeb204a
commit 7d3ce255fd

View File

@ -1416,7 +1416,7 @@ public class PsContractInfoServiceImpl implements IPsContractInfoService {
private void beforeUpdateValid( PsContractInfoBo updateBo,PsContractInfoVo srcVo){
//1.合同已回传 不可修改
if(StringUtils.equals(CommonStatusEnum.SUCCESS.getCode(),srcVo.getRollBackStatus())){
throw new ServiceException("合同已回传,不可修改");
// throw new ServiceException("合同已回传,不可修改");
}
//2.已回款之后的合同 必有修改合同说明审批表的字段
if(ContractStatusEnum.isReturn(srcVo.getContractStatus()) && StringUtil.isBlank(updateBo.getUpdateDesc())){