2019-08-29 03:13:24 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								< ? php  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								class  Qslprint_model  extends  CI_Model  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-07-22 23:16:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
									function  mark_qsos_printed ( $station_id2  =  NULL )  { 
							 
						 
					
						
							
								
									
										
										
										
											2019-09-28 05:04:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$CI  =&  get_instance (); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$CI -> load -> model ( 'Stations' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$station_id  =  $CI -> Stations -> find_active (); 
							 
						 
					
						
							
								
									
										
										
										
											2021-05-08 16:29:47 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-04 02:52:42 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$station_ids  =  array (); 
							 
						 
					
						
							
								
									
										
										
										
											2019-08-29 03:13:24 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-07-22 23:16:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										if  ( $station_id2  ==  NULL )  { 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-04 02:52:42 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
											array_push ( $station_ids ,  $station_id ); 
							 
						 
					
						
							
								
									
										
										
										
											2021-11-18 05:30:20 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										}  else  if  ( $station_id2  ==  'All' )  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											// get all stations of user
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											$stations  =  $CI -> Stations -> all_of_user (); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											$station_ids  =  array (); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											foreach  ( $stations -> result ()  as  $row )  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
												array_push ( $station_ids ,  $row -> station_id ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											} 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-04 02:52:42 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										}  else  { 
							 
						 
					
						
							
								
									
										
										
										
											2021-11-18 05:30:20 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
											// be sure that station belongs to user
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											if  ( ! $CI -> Stations -> check_station_is_accessible ( $station_id2 ))  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
												return ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											} 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-04 02:52:42 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
											array_push ( $station_ids ,  $station_id2 ); 
							 
						 
					
						
							
								
									
										
										
										
											2021-07-22 23:16:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-04 02:52:42 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$this -> update_qsos_bureau ( $station_ids ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> update_qsos ( $station_ids ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									/* 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									 *  Updates  the  QSOs  that  do  not  have  any  COL_QSL_SENT_VIA  set 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									 */ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									 function  update_qsos_bureau ( $station_ids )  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$data  =  array ( 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											'COL_QSLSDATE'  =>  date ( 'Y-m-d' ), 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											'COL_QSL_SENT'  =>  " Y " , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											'COL_QSL_SENT_VIA'  =>  " B " , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> where_in ( " station_id " ,  $station_ids ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> where_in ( " COL_QSL_SENT " ,  array ( " R " , " Q " )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> where ( " coalesce(COL_QSL_SENT_VIA, '') = '' " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> update ( $this -> config -> item ( 'table_name' ),  $data ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									/* 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									 *  Updates  the  QSOs  that  do  have  COL_QSL_SENT_VIA  set 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									 */ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									function  update_qsos ( $station_ids )  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$data  =  array ( 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											'COL_QSLSDATE'  =>  date ( 'Y-m-d' ), 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											'COL_QSL_SENT'  =>  " Y " , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> where_in ( " station_id " ,  $station_ids ); 
							 
						 
					
						
							
								
									
										
										
										
											2021-11-18 05:30:20 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$this -> db -> where_in ( " COL_QSL_SENT " ,  array ( " R " , " Q " )); 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-04 02:52:42 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$this -> db -> where ( " coalesce(COL_QSL_SENT_VIA, '') != '' " ); 
							 
						 
					
						
							
								
									
										
										
										
											2021-11-18 05:30:20 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-08-29 03:13:24 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
										$this -> db -> update ( $this -> config -> item ( 'table_name' ),  $data ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
									
										
										
										
											2021-05-08 16:29:47 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-07-22 23:16:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
									/* 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									 *  We  list  out  the  QSL ' s  ready  for  print . 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									 *  station_id  is  not  provided  when  loading  page . 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									 *  It  will  be  provided  when  calling  the  function  when  the  dropdown  is  changed  and  the  javascript  fires 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									 */ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									function  get_qsos_for_print ( $station_id  =  'All' )  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										if  ( $station_id  !=  'All' )  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											$this -> db -> where ( $this -> config -> item ( 'table_name' ) . '.station_id' ,  $station_id ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										} 
							 
						 
					
						
							
								
									
										
										
										
											2021-05-08 16:29:47 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> join ( 'station_profile' ,  'station_profile.station_id = ' . $this -> config -> item ( 'table_name' ) . '.station_id' ); 
							 
						 
					
						
							
								
									
										
										
										
											2022-11-16 01:29:33 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$this -> db -> join ( 'oqrs' ,  'oqrs.qsoid = ' . $this -> config -> item ( 'table_name' ) . '.COL_PRIMARY_KEY' ,  'left outer' ); 
							 
						 
					
						
							
								
									
										
										
										
											2021-11-18 05:30:20 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										// always filter user. this ensures that even if the station_id is from another user no inaccesible QSOs will be returned
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> where ( 'station_profile.user_id' ,  $this -> session -> userdata ( 'user_id' )); 
							 
						 
					
						
							
								
									
										
										
										
											2021-05-08 16:29:47 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$this -> db -> where_in ( 'COL_QSL_SENT' ,  array ( 'R' ,  'Q' )); 
							 
						 
					
						
							
								
									
										
										
										
											2023-10-25 12:53:03 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$this -> db -> order_by ( " COL_DXCC " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_CALL " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_SAT_NAME " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_SAT_MODE " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_BAND_RX " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_TIME_ON " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_MODE " ,  " ASC " ); 
							 
						 
					
						
							
								
									
										
										
										
											2021-05-08 16:29:47 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$query  =  $this -> db -> get ( $this -> config -> item ( 'table_name' )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										return  $query ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
									
										
										
										
											2021-05-22 14:45:24 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-07-22 23:16:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
									function  get_qsos_for_print_ajax ( $station_id )  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$query  =  $this -> get_qsos_for_print ( $station_id ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										return  $query ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
									
										
										
										
											2021-05-22 14:45:24 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-07-22 23:16:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
									function  delete_from_qsl_queue ( $id )  { 
							 
						 
					
						
							
								
									
										
										
										
											2021-11-18 05:30:20 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										// be sure that QSO belongs to user
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$CI  =&  get_instance (); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$CI -> load -> model ( 'logbook_model' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										if  ( ! $CI -> logbook_model -> check_qso_is_accessible ( $id ))  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											return ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-05-22 14:45:24 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$data  =  array ( 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											'COL_QSL_SENT'  =>  " N " , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> where ( " COL_PRIMARY_KEY " ,  $id ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> update ( $this -> config -> item ( 'table_name' ),  $data ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										return  true ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
									
										
										
										
											2021-07-28 17:10:15 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									function  add_qso_to_print_queue ( $id )  { 
							 
						 
					
						
							
								
									
										
										
										
											2021-11-18 05:30:20 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										// be sure that QSO belongs to user
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$CI  =&  get_instance (); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$CI -> load -> model ( 'logbook_model' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										if  ( ! $CI -> logbook_model -> check_qso_is_accessible ( $id ))  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											return ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-07-28 17:10:15 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$data  =  array ( 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											'COL_QSL_SENT'  =>  " R " , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> where ( " COL_PRIMARY_KEY " ,  $id ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> update ( $this -> config -> item ( 'table_name' ),  $data ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										return  true ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									function  open_qso_list ( $callsign )  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> join ( 'station_profile' ,  'station_profile.station_id = ' . $this -> config -> item ( 'table_name' ) . '.station_id' ); 
							 
						 
					
						
							
								
									
										
										
										
											2021-11-18 05:30:20 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										// always filter user. this ensures that no inaccesible QSOs will be returned
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> where ( 'station_profile.user_id' ,  $this -> session -> userdata ( 'user_id' )); 
							 
						 
					
						
							
								
									
										
										
										
											2023-12-07 08:18:24 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$this -> db -> where ( 'COL_CALL like "%/' . $callsign . '/%" OR COL_CALL like "%/' . $callsign . '" OR COL_CALL like "' . $callsign . '/%" OR COL_CALL = "' . $callsign . '"' ); 
							 
						 
					
						
							
								
									
										
										
										
											2021-07-28 17:10:15 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$this -> db -> where ( 'coalesce(COL_QSL_SENT, "") not in ("R", "Q")' ); 
							 
						 
					
						
							
								
									
										
										
										
											2023-10-25 12:53:03 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$this -> db -> order_by ( " COL_DXCC " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_CALL " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_SAT_NAME " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_SAT_MODE " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_BAND_RX " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_TIME_ON " ,  " ASC " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        	$this -> db -> order_by ( " COL_MODE " ,  " ASC " ); 
							 
						 
					
						
							
								
									
										
										
										
											2021-07-28 17:10:15 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										$query  =  $this -> db -> get ( $this -> config -> item ( 'table_name' )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										return  $query ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-11-16 01:29:33 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
									function  show_oqrs ( $id )  { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> select ( 'requesttime as "Request time", requestcallsign as "Requester", email as "Email", note as "Note"' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> join ( 'station_profile' ,  'station_profile.station_id = oqrs.station_id' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										// always filter user. this ensures that no inaccesible QSOs will be returned
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> where ( 'station_profile.user_id' ,  $this -> session -> userdata ( 'user_id' )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$this -> db -> where ( 'oqrs.id = '  . $id ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										$query  =  $this -> db -> get ( 'oqrs' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										return  $query -> result (); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-08-29 03:13:24 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-05-08 16:29:47 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								?>