Esempio n. 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = TestType::find();
     $dataProvider = new ActiveDataProvider(['query' => $query, 'sort' => ['defaultOrder' => ['order' => SORT_ASC]]]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'count' => $this->count]);
     $query->andFilterWhere(['like', 'type', $this->type]);
     return $dataProvider;
 }
Esempio n. 2
0
 /**
  * @param  Test Type IDs $testTypeIds array()
  * @return Measure IDs $measureIds array()
  */
 public static function getMeasureIdsByTestTypeIds($testTypeIds)
 {
     $measureIds = array();
     foreach ($testTypeIds as $testTypeId) {
         $testType = TestType::find($testTypeId);
         $measureIds = array_merge($measureIds, $testType->measures->lists('id')->toArray());
     }
     return $measureIds;
 }
Esempio n. 3
0
?>

    <?php 
echo $form->field($model, 'masa_1000')->textInput(['maxlength' => true]);
?>

    <?php 
echo $form->field($model, 'klass')->textInput();
?>

    <?php 
echo $form->field($model, 'date_doc')->widget(DatePicker::classname(), ['value' => $model->date_doc ? $model->date_doc : (new DateTime())->format('Y-m-d'), 'dateFormat' => 'php:Y-m-d', 'options' => ['class' => 'form-control']]);
?>

    <?php 
echo $form->field($model, 'id_type')->dropDownList(ArrayHelper::map(TestType::find()->orderBy(['order' => SORT_ASC])->all(), 'id', 'type'))->label(Yii::t('test-type', 'Type'));
?>

    <?php 
echo $form->field($model, 'N_prev')->textInput();
?>

    <?php 
echo $form->field($model, 'v_rahunok')->textInput();
?>

    <div class="form-group">
        <?php 
echo Html::submitButton($model->isNewRecord ? Yii::t('app', 'Create') : Yii::t('app', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']);
?>
    </div>
Esempio n. 4
0
 /**
  * Display data after applying the filters on the report uses patient ID
  *
  * @return Response
  */
 public function cd4()
 {
     //  check if accredited
     $accredited = array();
     $from = Input::get('start');
     $to = Input::get('end');
     $pending = Input::get('pending');
     $date = date('Y-m-d');
     $error = '';
     //  Check dates
     if (!$from) {
         $from = date('Y-m-01');
     }
     if (!$to) {
         $to = $date;
     }
     //  Get columns
     $columns = array(Lang::choice('messages.cd4-less', 1), Lang::choice('messages.cd4-greater', 1));
     $rows = array(Lang::choice('messages.baseline', 1), Lang::choice('messages.follow-up', 1));
     //  Get test
     $test = TestType::find(TestType::getTestTypeIdByTestName('cd4'));
     $counts = array();
     foreach ($columns as $column) {
         foreach ($rows as $row) {
             if ($test != null) {
                 $counts[$column][$row] = $test->cd4($from, $to, $column, $row);
             } else {
                 $counts[$column][$row] = 0;
             }
         }
     }
     if (Input::has('word')) {
         $date = date("Ymdhi");
         $fileName = "cd4_report_" . $date . ".doc";
         $headers = array("Content-type" => "text/html", "Content-Disposition" => "attachment;Filename=" . $fileName);
         $content = view('reports.cd4.export')->with('columns', $columns)->with('rows', $rows)->with('accredited', $accredited)->with('test', $test)->with('counts', $counts)->withInput(Input::all());
         return Response::make($content, 200, $headers);
     } else {
         return view('reports.cd4.index')->with('columns', $columns)->with('rows', $rows)->with('accredited', $accredited)->with('test', $test)->with('counts', $counts)->withInput(Input::all());
     }
 }
Esempio n. 5
0
 public function process($labRequest)
 {
     //First: Check if patient exists, if true dont save again
     $patient = Patient::where('external_patient_number', '=', $labRequest->PatientNumber)->get();
     if (!$patient->first()) {
         $patient = new Patient();
         $patient->external_patient_number = $labRequest->PatientNumber;
         $patient->patient_number = $labRequest->PatientNumber;
         $patient->name = $labRequest->FullNames;
         $gender = array('M' => Patient::MALE, 'F' => Patient::FEMALE, 'U' => Patient::UNKNOWN);
         $patient->gender = $gender[$labRequest->Sex];
         $patient->dob = $this->getDobFromAge($labRequest->Age);
         $patient->address = $labRequest->PoBox;
         $patient->phone_number = $labRequest->PatientsContact;
         $patient->created_by = User::EXTERNAL_SYSTEM_USER;
     } else {
         $patient = $patient->first();
     }
     //We check if the test exists in our system if not we just save the request in stagingTable
     $testTypeId = TestType::getTestTypeIdByTestName($labRequest->investigation);
     if (is_null($testTypeId) && $labRequest->parentLabNo == '0') {
         $this->saveToExternalDump($labRequest, ExternalDump::TEST_NOT_FOUND);
         return;
     }
     //Check if visit exists, if true dont save again
     $visit = Visit::where('visit_number', '=', $labRequest->RevisitNumber)->get();
     if (!$visit->first()) {
         $visit = new Visit();
         $visit->visit_type = 'Out-patient';
         // We'll save Visit in a transaction a little bit below
     } else {
         $visit = $visit->first();
     }
     $test = null;
     //Check via the labno, if this is a duplicate request and we already saved the test
     $test = Test::where('external_id', '=', $labRequest->RequestID)->get();
     if (!$test->first()) {
         //Specimen
         $specimen = new Specimen();
         $specimen->specimen_type_id = TestType::find($testTypeId)->specimenTypes->lists('id')[0];
         // We'll save the Specimen in a transaction a little bit below
         $test = new Test();
         $test->test_type_id = $testTypeId;
         $test->test_status_id = Test::NOT_RECEIVED;
         $test->created_by = User::EXTERNAL_SYSTEM_USER;
         //Created by external system 0
         $test->requested_by = $labRequest->DoctorRequesting;
         $test->external_id = $labRequest->RequestID;
         DB::transaction(function () use($visit, $specimen, $test, $patient) {
             $patient->save();
             $visit->patient_id = $patient->id;
             $visit->visit_number = Visit::orderBy('id', 'desc')->first()->id + 1;
             //$labRequest->RevisitNumber;
             $visit->save();
             $specimen->save();
             $test->visit_id = $visit->id;
             $test->specimen_id = $specimen->id;
             $test->save();
         });
         $this->saveToExternalDump($labRequest, $test->id);
         return;
     }
     $this->saveToExternalDump($labRequest, null);
     mssql_close($connection);
 }
Esempio n. 6
0
 public function testCountPerStatus()
 {
     $this->withoutMiddleware();
     $this->call('POST', '/testtype', $this->testTypeData);
     $testTypestored = TestType::orderBy('id', 'desc')->first();
     $testTypeSaved = TestType::find($testTypestored->id);
     $count = $testTypeSaved->countPerStatus([Test::NOT_RECEIVED, Test::STARTED, Test::PENDING, Test::COMPLETED, Test::VERIFIED]);
     $this->assertEquals($testTypeSaved->tests->count(), $count);
 }
Esempio n. 7
0
 /**
  * Remove the specified resource from storage (soft delete).
  *
  * @param  int  $id
  * @return Response
  */
 public function delete($id)
 {
     //Soft delete the testtype
     $testtype = TestType::find($id);
     $inUseByTests = $testtype->tests->toArray();
     if (empty($inUseByTests)) {
         // The test type is not in use
         $testtype->delete();
     } else {
         // The test type is in use
         return view('testtype.index')->with('message', 'terms.failure-delete-record');
     }
     // redirect
     $url = session('SOURCE_URL');
     return redirect()->to($url)->with('message', trans('terms.record-successfully-deleted'));
 }
Esempio n. 8
0
 /**
  * Save a new Test.
  *
  * @return Response
  */
 public function saveNewTest(TestRequest $request)
 {
     //Create New Test
     $visitType = ['Out-patient', 'In-patient'];
     $activeTest = array();
     /*
      * - Create a visit
      * - Fields required: visit_type, patient_id
      */
     $visit = new Visit();
     $visit->patient_id = $request->patient_id;
     $visit->visit_type = $visitType[$request->visit_type];
     $visit->save();
     /*
      * - Create tests requested
      * - Fields required: visit_id, test_type_id, specimen_id, test_status_id, created_by, requested_by
      */
     $testTypes = $request->testtypes;
     if (is_array($testTypes)) {
         foreach ($testTypes as $value) {
             $testTypeID = (int) $value;
             // Create Specimen - specimen_type_id, accepted_by, referred_from, referred_to
             $specimen = new Specimen();
             $specimen->specimen_type_id = TestType::find($testTypeID)->specimenTypes->lists('id')[0];
             $specimen->accepted_by = Auth::user()->id;
             $specimen->save();
             $test = new Test();
             $test->visit_id = $visit->id;
             $test->test_type_id = $testTypeID;
             $test->specimen_id = $specimen->id;
             $test->test_status_id = Test::PENDING;
             $test->created_by = Auth::user()->id;
             $test->requested_by = Input::get('physician');
             $test->save();
             $activeTest[] = $test->id;
         }
     }
     $url = session('SOURCE_URL');
     return redirect()->to($url)->with('message', trans('messages.record-successfully-saved'))->with('active_test', $test->id);
 }
Esempio n. 9
0
 /**
  * Function for processing the requests we receive from the external system
  * and putting the data into our system.
  *
  * @var array lab_requests
  */
 public function process($labRequest)
 {
     //First: Check if patient exists, if true dont save again
     $patient = Patient::where('external_patient_number', '=', $labRequest->patient->id)->get();
     if (!$patient->first()) {
         $patient = new Patient();
         $patient->external_patient_number = $labRequest->patient->id;
         $patient->patient_number = $labRequest->patient->id;
         $patient->name = $labRequest->patient->fullName;
         $gender = array('Male' => Patient::MALE, 'Female' => Patient::FEMALE);
         $patient->gender = $gender[$labRequest->patient->gender];
         $patient->dob = $labRequest->patient->dateOfBirth;
         $patient->address = $labRequest->address->address;
         $patient->phone_number = $labRequest->address->phoneNumber;
         $patient->created_by = User::EXTERNAL_SYSTEM_USER;
         $patient->save();
     } else {
         $patient = $patient->first();
     }
     //We check if the test exists in our system if not we just save the request in stagingTable
     if ($labRequest->parentLabNo == '0') {
         $testTypeId = TestType::getTestTypeIdByTestName($labRequest->investigation);
     } else {
         $testTypeId = null;
     }
     if (is_null($testTypeId) && $labRequest->parentLabNo == '0') {
         $this->saveToExternalDump($labRequest, ExternalDump::TEST_NOT_FOUND);
         return;
     }
     //Check if visit exists, if true dont save again
     $visitType = array('ip' => 'In-patient', 'op' => 'Out-patient');
     //Should be a constant
     $visit = Visit::where('visit_number', '=', $labRequest->patientVisitNumber)->where('visit_type', '=', $visitType[$labRequest->orderStage])->get();
     if (!$visit->first()) {
         $visit = new Visit();
         $visit->patient_id = $patient->id;
         $visit->visit_type = $visitType[$labRequest->orderStage];
         $visit->visit_number = $labRequest->patientVisitNumber;
         // We'll save Visit in a transaction a little bit below
     } else {
         $visit = $visit->first();
         if (strcmp($visitType[$labRequest->orderStage], $visit->visit_type) != 0) {
             $visit = new Visit();
             $visit->patient_id = $patient->id;
             $visit->visit_type = $visitType[$labRequest->orderStage];
             $visit->visit_number = $labRequest->patientVisitNumber;
         }
     }
     $test = null;
     //Check if parentLabNO is 0 thus its the main test and not a measure
     if ($labRequest->parentLabNo == '0') {
         //Check via the labno, if this is a duplicate request and we already saved the test
         $test = Test::where('external_id', '=', $labRequest->labNo)->get();
         if (!$test->first()) {
             //Specimen
             $specimen = new Specimen();
             $specimen->specimen_type_id = TestType::find($testTypeId)->specimenTypes->lists('id')[0];
             // We'll save the Specimen in a transaction a little bit below
             $test = new Test();
             $test->test_type_id = $testTypeId;
             $test->test_status_id = Test::NOT_RECEIVED;
             $test->created_by = User::EXTERNAL_SYSTEM_USER;
             //Created by external system 0
             $test->requested_by = $labRequest->requestingClinician;
             $test->external_id = $labRequest->labNo;
             DB::transaction(function () use($visit, $specimen, $test) {
                 $visit->save();
                 $specimen->save();
                 $test->visit_id = $visit->id;
                 $test->specimen_id = $specimen->id;
                 $test->save();
             });
             $this->saveToExternalDump($labRequest, $test->id);
             return;
         }
     }
     $this->saveToExternalDump($labRequest, null);
 }