|
@@ -152,19 +152,19 @@ class Reciveremote extends Base
|
|
|
$list[$k]['status'] = 0;
|
|
|
}
|
|
|
//申请医院
|
|
|
- $local_institution = DB::table('institution')->where('id',$v['local_institution_id'])->cache(300)->field('name')->find();
|
|
|
+ $local_institution = DB::table('institution')->where('id',$v['local_institution_id'])->field('name')->find();
|
|
|
$list[$k]['local_institution_name'] = $local_institution['name'];
|
|
|
//检查类型
|
|
|
- $check_class = DB::table('constant')->where('id',$v['exam_class'])->cache(300)->field('constant_value as name')->find();
|
|
|
+ $check_class = DB::table('constant')->where('id',$v['exam_class'])->field('constant_value as name')->find();
|
|
|
$list[$k]['class_name'] = $check_class['name'];
|
|
|
//检查子类
|
|
|
- $subclass_name = DB::table('exam_subclass')->where('id',$v['exam_sub_class'])->cache(300)->field('name')->find();
|
|
|
+ $subclass_name = DB::table('exam_subclass')->where('id',$v['exam_sub_class'])->field('name')->find();
|
|
|
$list[$k]['subclass_name'] = $subclass_name['name'];
|
|
|
//检查部位
|
|
|
- $body_part = DB::table('bodypart')->where('id',$v['body_part'])->cache(300)->field('name')->find();
|
|
|
+ $body_part = DB::table('bodypart')->where('id',$v['body_part'])->field('name')->find();
|
|
|
$list[$k]['body_name'] = $body_part['name'];
|
|
|
//检查设备
|
|
|
- $device = DB::table('device')->where('id',$v['device'])->cache(300)->field('name')->find();
|
|
|
+ $device = DB::table('device')->where('id',$v['device'])->field('name')->find();
|
|
|
$list[$k]['device_name'] = $device['name'];
|
|
|
//报告医生
|
|
|
$report_doctor = DB::table('doctors')->where('id',$v['report_doctor_id'])->field('realname')->find();
|