|
@@ -133,6 +133,8 @@ class Dcquery extends Controller
|
|
|
if($study_id && strlen($study_id) == '16') {
|
|
|
$study_info = DB::table('studies')->where('id',$study_id)->field('id,studyuid,studyid,patient_id')->find();
|
|
|
} else if($study_uid) {
|
|
|
+ var_dump($study_uid);
|
|
|
+ die;
|
|
|
$study_info = DB::table('studies')->where('studyuid', $study_uid)->field('id,studyuid,studyid,patient_id')->find();
|
|
|
} else if($acc_num) {
|
|
|
$study_info = DB::table('studies')->where('accession_num', $acc_num)->field('id,studyuid,studyid,patient_id')->find();
|