Merge branch 'qtz5' of SH-Arbitrate/Arbitrate-Backend into dev

This commit was merged in pull request #336.
This commit is contained in:
qtz
2024-01-19 17:28:42 +08:00
committed by Gitea
@@ -1797,7 +1797,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
//发起签署 //发起签署
sealSignRecord.setFilename(fileName); sealSignRecord.setFilename(fileName);
String arbitratorId = caseApplication2.getArbitratorId(); String arbitratorId = caseApplication2.getArbitratorId();
if (arbitratorId != null) { if (StringUtils.isNotEmpty(arbitratorId)) {
SysUser sysUser = sysUserMapper.selectUserById(Long.valueOf(arbitratorId)); SysUser sysUser = sysUserMapper.selectUserById(Long.valueOf(arbitratorId));
if (sysUser == null) { if (sysUser == null) {
return AjaxResult.error(); return AjaxResult.error();
@@ -3062,7 +3062,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
//发起签署 //发起签署
sealSignRecord.setFilename(fileName); sealSignRecord.setFilename(fileName);
String arbitratorId = caseApplication2.getArbitratorId(); String arbitratorId = caseApplication2.getArbitratorId();
if (arbitratorId != null) { if (StringUtils.isNotEmpty(arbitratorId)) {
SysUser sysUser = sysUserMapper.selectUserById(Long.valueOf(arbitratorId)); SysUser sysUser = sysUserMapper.selectUserById(Long.valueOf(arbitratorId));
if (sysUser == null) { if (sysUser == null) {
return AjaxResult.error(); return AjaxResult.error();