Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -190,7 +190,7 @@ public class ConsultationAppServiceImpl implements IConsultationAppService {
|
||||
if (StringUtils.hasText(dto.getConsultationId())) {
|
||||
wrapper.like(ConsultationRequest::getConsultationId, dto.getConsultationId());
|
||||
}
|
||||
|
||||
|
||||
// 按创建时间倒序排列
|
||||
wrapper.orderByDesc(ConsultationRequest::getConsultationRequestDate);
|
||||
|
||||
@@ -249,7 +249,7 @@ public class ConsultationAppServiceImpl implements IConsultationAppService {
|
||||
if (StringUtils.hasText(dto.getConsultationId())) {
|
||||
wrapper.like(ConsultationRequest::getConsultationId, dto.getConsultationId());
|
||||
}
|
||||
|
||||
|
||||
// 按创建时间倒序排列
|
||||
wrapper.orderByDesc(ConsultationRequest::getConsultationRequestDate);
|
||||
|
||||
@@ -795,7 +795,6 @@ public class ConsultationAppServiceImpl implements IConsultationAppService {
|
||||
confirmedAndSignedPhysicians.size(), signedPhysicians.size());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1318,9 +1317,9 @@ public class ConsultationAppServiceImpl implements IConsultationAppService {
|
||||
|
||||
// 4. 更新邀请记录(存储会诊意见)
|
||||
// 格式:科室-医生:意见内容
|
||||
String formattedOpinion = String.format("%s-%s:%s",
|
||||
currentDeptName,
|
||||
currentPhysicianName,
|
||||
String formattedOpinion = String.format("%s-%s:%s",
|
||||
currentDeptName,
|
||||
currentPhysicianName,
|
||||
dto.getConsultationOpinion());
|
||||
|
||||
invited.setInvitedStatus(ConsultationStatusEnum.CONFIRMED.getCode()); // 已确认
|
||||
|
||||
Reference in New Issue
Block a user