修改信息
This commit is contained in:
parent
d3d4215a59
commit
429659913d
@ -407,7 +407,7 @@ public class CaseplatformCaseService {
|
|||||||
for (String id : caseIdList) {
|
for (String id : caseIdList) {
|
||||||
CaseplatformCaseEntity caseplatformCase = caseplatformCaseDao.selectById(id);
|
CaseplatformCaseEntity caseplatformCase = caseplatformCaseDao.selectById(id);
|
||||||
if (caseplatformCase == null) {
|
if (caseplatformCase == null) {
|
||||||
throw new BusinessException("处理失败: 存在非法病例1 " + id);
|
throw new BusinessException("处理失败: 存在非法病例 " + id);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 已经结算
|
// 已经结算
|
||||||
@ -420,11 +420,11 @@ public class CaseplatformCaseService {
|
|||||||
queryWrapper.eq(CasePlatformBankEntity::getExpertId, caseplatformCase.getExpertId());
|
queryWrapper.eq(CasePlatformBankEntity::getExpertId, caseplatformCase.getExpertId());
|
||||||
CasePlatformBankEntity casePlatformBank = casePlatformBankDao.selectOne(queryWrapper);
|
CasePlatformBankEntity casePlatformBank = casePlatformBankDao.selectOne(queryWrapper);
|
||||||
if (casePlatformBank == null) {
|
if (casePlatformBank == null) {
|
||||||
throw new BusinessException("处理失败: 存在非法病例2 " + id);
|
throw new BusinessException("处理失败: 存在非法病例 " + id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Objects.equals(casePlatformBank.getBankCardNo(), bankCardNo)){
|
if (!Objects.equals(casePlatformBank.getBankCardNo(), bankCardNo)){
|
||||||
throw new BusinessException("处理失败: 存在非法病例3 " + id);
|
throw new BusinessException("处理失败: 存在非法病例 " + id);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 修改病例结算状态
|
// 修改病例结算状态
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user