před 8 roky
rodič
revize
152da17d7c

+ 4 - 0
patient-co-wlyy/src/main/java/com/yihu/wlyy/web/third/BookingController.java

@ -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();