소스 검색

消息处理

8 년 전
부모
커밋
152da17d7c
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      patient-co-wlyy/src/main/java/com/yihu/wlyy/web/third/BookingController.java

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