Merge remote-tracking branch 'origin/master-xlk-test' into master-xlk-test
# Conflicts:
# phi_platform_user/src/main/java/com/hx/phip/controller/appointment/AppointmentController.java
| | |
| | | if(appointmentInfo == null){ |
| | | throw new TipsException("查询不到预约其他信息!"); |
| | | } |
| | | |
| | | |
| | | User user = commonService.selectOneByKey(UserMapper.class, appointment.getUserId()); |
| | | if(user == null){ |
| | | throw new TipsException("查询不到预约用户信息!"); |
| | |
| | | |
| | | //处理预约状态和是否转疗逻辑 |
| | | handleStatusAndIsSwitch(dto.getAddMode(), appointment, shop, employee, true, oldInfo); |
| | | |
| | | |
| | | appointmentV2Service.edit(operatorVo, user, oldInfo, appointment, appointmentInfo, apList, apdnList, doctorTimeList, dnsList); |
| | | |
| | | return Result.success(); |