|
@ -563,6 +563,10 @@ public class BookingController extends WeixinBaseController {
|
|
|
@RequestParam(value="orderId",required = true) String orderId) {
|
|
|
try {
|
|
|
PatientReservation obj = patientReservationService.findById(orderId);
|
|
|
//id获取不到,用单号获取一遍
|
|
|
if(obj==null){
|
|
|
obj = patientReservationService.findByCode(orderId);
|
|
|
}
|
|
|
if(obj!=null) {
|
|
|
String type = obj.getType();
|
|
|
String code = obj.getCode();
|