Module: EmrOhspInterface::EmrOhspInterfaceService

Extended by:
Utils
Defined in:
app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb

Class Method Summary collapse

Methods included from Utils

lab_results

Class Method Details

.admitted_patient_died(patient) ⇒ Object



200
201
202
203
204
205
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 200

def admitted_patient_died(patient)
  visit_type = patient['visit_type']
  dead = patient['dead']

  visit_type == 'ADMISSION DIAGNOSIS' && dead
end

.calculate_age(dob) ⇒ Object

Age calculator



792
793
794
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 792

def calculate_age(dob)
  age = ((Date.today-dob.to_date).to_i)/365 rescue 0
end

.disaggregate(disaggregate_key, concept_ids, start_date, end_date, type) ⇒ Object



523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 523

def disaggregate(disaggregate_key, concept_ids, start_date, end_date, type)
  options = {"ids"=>nil}
  data = Encounter.where('encounter_datetime BETWEEN ? AND ?
  AND encounter_type = ? AND value_coded IN (?)
  AND concept_id IN(6543, 6542)',
  start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
  end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
  joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
  INNER JOIN person p ON p.person_id = encounter.patient_id').\
  select('encounter.encounter_type, obs.value_coded, p.*')

  if disaggregate_key == "less"
  options["ids"] = data.select{|record| calculate_age(record["birthdate"]) < 5 }.\
  collect{|record| record["person_id"]}
  else 
    if disaggregate_key == "greater"
      options["ids"] = data.select{|record| calculate_age(record["birthdate"]) >= 5 }.\
      collect{|record| record["person_id"]}
    end
  end

  options
end

.generate_hmis_15_report(start_date = nil, end_date = nil) ⇒ Object



366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 366

def generate_hmis_15_report(start_date=nil,end_date=nil)

  diag_map = settings["hmis_15_map"]
    
  #pull the data
  type = EncounterType.find_by_name 'Outpatient diagnosis'
  collection = {}
    
  special_indicators = ["Malaria - new cases (under 5)",
    "Malaria - new cases (5 & over)",
    "HIV confirmed positive (15-49 years) new cases",
    "Diarrhoea non - bloody -new cases (under5)",
    "Malnutrition - new case (under 5)",
    "Acute respiratory infections - new cases (U5)"
  ]
    
  diag_map.each do |key,value|
    options = {"ids"=>nil}
    concept_ids = ConceptName.where(name: value).collect{|cn| cn.concept_id}
    
    if !special_indicators.include?(key)
      data = Encounter.where('encounter_datetime BETWEEN ? AND ?
      AND encounter_type = ? AND value_coded IN (?)
      AND concept_id IN(6543, 6542)',
      start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
      end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
      joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
      INNER JOIN person p ON p.person_id = encounter.patient_id').\
      select('encounter.encounter_type, obs.value_coded, p.*')
    
      # #under_five
      # under_five = data.select{|record| calculate_age(record["birthdate"]) < 5}.       #             collect{|record| record.person_id}
      # options["<5yrs"] = under_five
      # #above 5 years
      # over_five = data.select{|record| calculate_age(record["birthdate"]) >=5 }.       #             collect{|record| record.person_id}
    
      # options[">=5yrs"] =  over_five
    
      all = data.collect{|record| record.person_id}
    
    
      options["ids"] = all
    
      collection[key] = options
    else
      if key.eql?("Malaria - new cases (under 5)")
        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')
    
        under_five = data.select{|record| calculate_age(record["birthdate"]) < 5 }.\
                      collect{|record| record["person_id"]}
    
        options["ids"] = under_five
    
        collection[key] = options
      end
    
      if key.eql?("Malaria - new cases (5 & over)")
        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')
    
        over_and_five = data.select{|record| calculate_age(record["birthdate"])  >= 5 }.\
                      collect{|record| record["person_id"]}
    
        options["ids"] = over_and_five
    
        collection[key] = options
      end
    
      if key.eql?("HIV confirmed positive (15-49 years) new cases")
        data =  ActiveRecord::Base.connection.select_all(
          "SELECT * FROM temp_earliest_start_date
            WHERE date_enrolled BETWEEN '#{start_date}' AND '#{end_date}'
            AND date_enrolled = earliest_start_date
            GROUP BY patient_id" )
    
        over_and_15_49 = data.select{|record| calculate_age(record["birthdate"])  >= 15 && calculate_age(record["birthdate"]) <=49 }.\
               collect{|record| record["patient_id"]}
    
        options["ids"] = over_and_15_49
    
        collection[key] = options
      end

      if key.eql?("Diarrhoea non - bloody -new cases (under5)")
        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')
    
        under_five = data.select{|record| calculate_age(record["birthdate"]) < 5 }.\
                      collect{|record| record["person_id"]}
    
        options["ids"] = under_five

        collection[key] = options
      end

      if key.eql?("Malnutrition - new case (under 5)")
        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')
    
        under_five = data.select{|record| calculate_age(record["birthdate"]) < 5 }.\
                      collect{|record| record["person_id"]}
    
        options["ids"] = under_five

        collection[key] = options
      end

      if key.eql?("Acute respiratory infections - new cases (U5)")
        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')
    
        under_five = data.select{|record| calculate_age(record["birthdate"]) < 5 }.\
                      collect{|record| record["person_id"]}
    
        options["ids"] = under_five

        collection[key] = options
      end

  end
  end
   collection
end

.generate_hmis_17_report(start_date = nil, end_date = nil) ⇒ Object



547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 547

def generate_hmis_17_report(start_date=nil,end_date=nil)

  diag_map = settings["hmis_17_map"]
    
  #pull the data
  type = EncounterType.find_by_name 'Outpatient diagnosis'
  collection = {}
    
  special_indicators = [
    "Referals from other institutions",
    "OPD total attendance",
    "Referal to other institutions",
    "Malaria 5 years and older - new",
    "HIV/AIDS - new"
  ]

  special_under_five_indicators = [
    "Measles under five years - new",
    "Pneumonia under 5 years- new",
    "Dysentery under 5 years - new",
    "Diarrhoea non - bloody -new cases (under5)",
    "Malaria under 5 years - new"
  ]

  diag_map.each do |key,value|
    options = {"ids"=>nil}
    concept_ids = ConceptName.where(name: value).collect{|cn| cn.concept_id}
    
    if !special_indicators.include?(key) && !special_under_five_indicators.include?(key)
      data = Encounter.where('encounter_datetime BETWEEN ? AND ?
      AND encounter_type = ? AND value_coded IN (?)
      AND concept_id IN(6543, 6542)',
      start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
      end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
      joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
      INNER JOIN person p ON p.person_id = encounter.patient_id').\
      select('encounter.encounter_type, obs.value_coded, p.*')
    
      all = data.collect{|record| record.person_id}
    
    
      options["ids"] = all
    
      collection[key] = options
    else
      if key.eql?("Referals from other institutions") 
        _type = EncounterType.find_by_name 'PATIENT REGISTRATION'
        visit_type = ConceptName.find_by_name 'Type of visit'

        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IS NOT NULL
        AND obs.concept_id = ?', start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),_type.id, visit_type.concept_id).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id
        INNER JOIN concept_name c ON c.concept_id = 6541').\
        select('encounter.encounter_type, obs.value_coded, obs.obs_datetime, p.*, c.name visit_type').\
        group('p.person_id, encounter.encounter_id')

        all = data.collect{|record| record.person_id}
    
        options["ids"] = all

        collection[key] = options
      end

      if key.eql?("OPD total attendance")
        programID = Program.find_by_name 'OPD Program'
        data = Encounter.find_by_sql(
          "SELECT patient_id, DATE_FORMAT(encounter_datetime,'%Y-%m-%d') enc_date
          FROM encounter e
          LEFT OUTER JOIN person p ON p.person_id = e.patient_id
          WHERE e.voided = 0 AND encounter_datetime BETWEEN '" + start_date.to_date.strftime('%Y-%m-%d 00:00:00') +"'
            AND '" + end_date.to_date.strftime('%Y-%m-%d 23:59:59') + "'
            AND program_id ='" + programID.program_id.to_s + "'
          GROUP BY enc_date"
        ).map{|e| e. patient_id}
  
        options["ids"] = data
        collection[key] = options
      end

      if key.eql?("Referal to other institutions")
        data = Observation.where("obs_datetime BETWEEN ? AND ?
        AND concept_id = ?",start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),'7414').\
        joins('LEFT JOIN location l ON l.location_id = obs.value_text').\
        select('obs.person_id').order('obs_datetime DESC')
        all = data.collect{|record| record.person_id}
        options["ids"] = all
        collection[key] = options
      end

      if key.eql?("HIV/AIDS - new")
        data =  ActiveRecord::Base.connection.select_all(
          "SELECT * FROM temp_earliest_start_date
          WHERE date_enrolled BETWEEN '#{start_date}' AND '#{end_date}'
          AND date_enrolled = earliest_start_date
          GROUP BY patient_id" )
        all = data.collect{|record| record["patient_id"]}
        options["ids"] = all
        collection[key] = options
      end

      if key.eql?("Measles under five years - new")
        collection[key] = disaggregate('less',concept_ids, start_date, end_date, type)
      end

      if key.eql?("Pneumonia under 5 years- new")
        collection[key] = disaggregate('less', concept_ids, start_date, end_date, type)
      end

      if key.eql?("Malaria under 5 years - new")
        collection[key] = disaggregate('less', concept_ids, start_date, end_date, type)
      end

      if key.eql?("Malaria 5 years and older - new")
        collection[key] = disaggregate('greater',concept_ids, start_date, end_date, type)
      end

      if key.eql?("Dysentery under 5 years - new")
        collection[key] = disaggregate('less', concept_ids, start_date, end_date, type)
      end

      if key.eql?("Diarrhoea non - bloody -new cases (under5)")
        collection[key] = disaggregate('less', concept_ids, start_date, end_date, type)
      end

    end
  end

  collection

end

.generate_monthly_idsr_report(request = nil, start_date = nil, end_date = nil) ⇒ Object

idsr monthly report



208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 208

def generate_monthly_idsr_report(request=nil,start_date=nil,end_date=nil)
  diag_map = settings["monthly_idsr_map"]
  epi_month = months_generator.first.first.strip
  start_date = months_generator.first.last[1].split("to").first.strip if start_date.nil?
  end_date =  months_generator.first.last[1].split("to").last.strip if end_date.nil?
  type = EncounterType.find_by_name 'Outpatient diagnosis'
  collection = {}

  special_indicators = ["Malaria in Pregnancy",
                        "HIV New Initiated on ART",
                        "Diarrhoea In Under 5",
                        "Malnutrition In Under 5",
                        "Underweight Newborns < 2500g in Under 5 Cases",
                        "Severe Pneumonia in under 5 cases"]

  diag_map.each do |key,value|
    options = {"<5yrs"=>nil,">=5yrs"=>nil}
    concept_ids = ConceptName.where(name: value).collect{|cn| cn.concept_id}
    if !special_indicators.include?(key)
        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')

        #under_five
        under_five = data.select{|record| calculate_age(record["birthdate"]) < 5}.\
                    collect{|record| record.person_id}.uniq
        options["<5yrs"] = under_five
        #above 5 years
        over_five = data.select{|record| calculate_age(record["birthdate"]) >=5 }.\
                    collect{|record| record.person_id}.uniq

        options[">=5yrs"] =  over_five

        collection[key] = options
    else
      if key.eql?("Malaria in Pregnancy")
        mal_patient_id = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')

        mal_patient_id=   mal_patient_id.collect{|record| record.person_id}
        #find those that are pregnant
        preg = Observation.where(["concept_id = 6131 AND obs_datetime
                                   BETWEEN ? AND ? AND person_id IN(?)
                                    AND value_coded =1065",
                                    start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
                                    end_date.to_date.strftime('%Y-%m-%d 23:59:59'),mal_patient_id ])

         options[">=5yrs"] =   preg.collect{|record| record.person_id} rescue 0
         collection[key] = options
      end

      if key.eql?("HIV New Initiated on ART")
       data =  ActiveRecord::Base.connection.select_all(
                  "SELECT * FROM temp_earliest_start_date
                      WHERE date_enrolled BETWEEN '#{start_date}' AND '#{end_date}'
                      AND date_enrolled = earliest_start_date
                       GROUP BY patient_id" )

        under_five = data.select{|record| calculate_age(record["birthdate"]) < 5 }.\
                       collect{|record| record["patient_id"]}

        over_five = data.select{|record| calculate_age(record["birthdate"]) >=5 }.\
                       collect{|record| record["patient_id"]}

        options["<5yrs"] = under_five
        options[">=5yrs"] =  over_five

        collection[key] = options
      end

      if key.eql?("Diarrhoea In Under 5")
        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')

        #under_five
        under_five = data.select{|record| calculate_age(record["birthdate"]) < 5}.\
                    collect{|record| record.person_id}
        options["<5yrs"] = under_five
        collection[key] = options
      end


      if key.eql?("Malnutrition In Under 5")
        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')

        #under_five
        under_five = data.select{|record| calculate_age(record["birthdate"]) < 5}.\
                    collect{|record| record.person_id}
        options["<5yrs"] = under_five
        collection[key] = options
      end


      if key.eql?("Underweight Newborns < 2500g in Under 5 Cases")
        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')

        #under_five
        under_five = data.select{|record| calculate_age(record["birthdate"]) < 5}.\
                    collect{|record| record.person_id}
        options["<5yrs"] = under_five
        collection[key] = options
      end

      if key.eql?("Severe Pneumonia in under 5 cases")
        data = Encounter.where('encounter_datetime BETWEEN ? AND ?
        AND encounter_type = ? AND value_coded IN (?)
        AND concept_id IN(6543, 6542)',
        start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
        end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
        joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
        INNER JOIN person p ON p.person_id = encounter.patient_id').\
        select('encounter.encounter_type, obs.value_coded, p.*')

        #under_five
        under_five = data.select{|record| calculate_age(record["birthdate"]) < 5}.\
                    collect{|record| record.person_id}
        options["<5yrs"] = under_five
        collection[key] = options
      end
    end
  end
    if request == nil
     response = send_data(collection,"monthly")
    end
  return collection
end

.generate_notifiable_disease_conditions_report(start_date = nil, end_date = nil) ⇒ Object



682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 682

def generate_notifiable_disease_conditions_report(start_date=nil,end_date=nil)
  diag_map = settings["notifiable_disease_conditions"]

  start_date = Date.today.strftime("%Y-%m-%d") if start_date.nil?
  end_date = Date.today.strftime("%Y-%m-%d") if end_date.nil?

  type = EncounterType.find_by_name 'Outpatient diagnosis'
  collection = {}
  concept_name_for_sms_portal = {}

  diag_map.each do |key,value|
    options = {"<5yrs"=>nil,">=5yrs"=>nil}
    concept_ids = ConceptName.where(name: value).collect{|cn| cn.concept_id}

    data = Encounter.where('encounter_datetime BETWEEN ? AND ?
    AND encounter_type = ? AND value_coded IN (?)
    AND concept_id IN(6543, 6542)',
    start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
    end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
    joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
    INNER JOIN person p ON p.person_id = encounter.patient_id').\
    select('encounter.encounter_type, obs.value_coded, p.*')

    #under_five
    under_five = data.select{|record| calculate_age(record["birthdate"]) < 5}.\
                collect{|record| record.person_id}
    options["<5yrs"] = under_five
    #above 5 years
    over_five = data.select{|record| calculate_age(record["birthdate"]) >=5 }.\
                collect{|record| record.person_id}

    options[">=5yrs"] =  over_five

    collection[key] = options

    concept_name_for_sms_portal[key] = concept_ids
  end
  send_data_to_sms_portal(collection, concept_name_for_sms_portal)
  return collection
end

.generate_quarterly_idsr_report(request = nil, start_date = nil, end_date = nil) ⇒ Object



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 107

def generate_quarterly_idsr_report(request=nil,start_date=nil,end_date=nil)
  epi_month = quarters_generator.first.first.strip
  start_date = quarters_generator.first.last[1].split("to").first.strip if start_date.nil?
  end_date =  quarters_generator.first.last[1].split("to").last.strip if end_date.nil?
  indicators = [
    'Diabetes Mellitus',
    'Cervical Cancer',
    'Hypertension',
    'Onchocerciasis',
    'Trachoma',
    'Lymphatic Filariasis',
    'Tuberculosis',
    'Trypanosomiasis',
    'Epilepsy',
    'Depression',
    'Suicide',
    'Psychosis'
  ]

  diagnosis_concepts = ['Primary Diagnosis','Secondary Diagnosis']
  encounters = ['OUTPATIENT DIAGNOSIS','ADMISSION DIAGNOSIS']

  report_struct = indicators.each_with_object({}) do |indicator, report|
    report[indicator.downcase] = ['<5 yrs','>=5 yrs'].each_with_object({}) do |group, sub_report|
      sub_report[group] = {
        outpatient_cases: [],
        inpatient_cases: [],
        inpatient_cases_death: [],
        tested_malaria: [],
        tested_positive_malaria: []
      }
    end
  end

  diagonised = ActiveRecord::Base.connection.select_all "    SELECT\n      e.patient_id,\n      p.birthdate,\n      d.name diagnosis,\n      et.name visit_type\n    FROM\n      encounter e\n    INNER JOIN\n      obs ON obs.encounter_id = e.encounter_id\n    INNER JOIN\n      person p ON p.person_id = e.patient_id\n    INNER JOIN concept_name d ON d.concept_id = obs.value_coded\n    INNER JOIN \n      encounter_type et ON et.encounter_type_id = e.encounter_type\n    WHERE\n      e.encounter_type IN (\#{EncounterType.where(name: encounters).pluck(:encounter_type_id).join(',')})\n      AND DATE(e.encounter_datetime) > '\#{start_date}'\n      AND DATE(e.encounter_datetime) < '\#{end_date}'\n      AND obs.concept_id IN (\#{ConceptName.where(name: diagnosis_concepts).pluck(:concept_id).join(',')})\n      AND obs.value_coded IN (\#{ConceptName.where(name: indicators).pluck(:concept_id).join(',')})\n    GROUP BY\n      p.person_id, obs.concept_id\n  SQL\n\n  malaria_tests = lab_results(test_types: ['Malaria Screening'], start_date: start_date, end_date: end_date)\n\n  tested_patient_ids = malaria_tests.map{|patient| patient['patient_id']}\n\n  diagonised.each do |patient|\n    diagnosis = patient['diagnosis']&.downcase\n    visit_type = patient['visit_type']\n    patient_id = patient['patient_id']\n    birthdate = patient['birthdate']\n\n    five_plus = '>=5 yrs'\n    less_than_5 = '<5 yrs'\n\n    age_group = birthdate > 5.years.ago ? less_than_5 : five_plus\n    \n    report_struct[diagnosis][age_group][:outpatient_cases] << patient_id if visit_type == 'OUTPATIENT DIAGNOSIS'\n    report_struct[diagnosis][age_group][:inpatient_cases] << patient_id if visit_type == 'ADMISSION DIAGNOSIS'\n    report_struct[diagnosis][age_group][:tested_malaria] << patient_id if tested_patient_ids.include?(patient_id)\n    report_struct[diagnosis][age_group][:tested_positive_malaria] << patient_id if tested_positive(tested_patient_ids, patient)\n    report_struct[diagnosis][age_group][:inpatient_cases_death] << patient_id if admitted_patient_died(patient)\n  end\n  \n  report_struct\n    \nend\n"

.generate_weekly_idsr_report(request = nil, start_date = nil, end_date = nil) ⇒ Object



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 63

def generate_weekly_idsr_report(request=nil,start_date=nil,end_date=nil)

  diag_map = settings["weekly_idsr_map"]

  epi_week = weeks_generator.last.first.strip
  start_date = weeks_generator.last.last.split("to")[0].strip if start_date.nil?
  end_date = weeks_generator.last.last.split("to")[1].strip if end_date.nil?

  #pull the data
  type = EncounterType.find_by_name 'Outpatient diagnosis'
  collection = {}

  diag_map.each do |key,value|
    options = {"<5yrs"=>nil,">=5yrs"=>nil}
    concept_ids = ConceptName.where(name: value).collect{|cn| cn.concept_id}

    data = Encounter.where('encounter_datetime BETWEEN ? AND ?
    AND encounter_type = ? AND value_coded IN (?)
    AND concept_id IN(6543, 6542)',
    start_date.to_date.strftime('%Y-%m-%d 00:00:00'),
    end_date.to_date.strftime('%Y-%m-%d 23:59:59'),type.id,concept_ids).\
    joins('INNER JOIN obs ON obs.encounter_id = encounter.encounter_id
    INNER JOIN person p ON p.person_id = encounter.patient_id').\
    select('encounter.encounter_type, obs.value_coded, p.*')

    #under_five
    under_five = data.select{|record| calculate_age(record["birthdate"]) < 5}.\
                collect{|record| record.person_id}
    options["<5yrs"] = under_five
    #above 5 years
    over_five = data.select{|record| calculate_age(record["birthdate"]) >=5 }.\
                collect{|record| record.person_id}

    options[">=5yrs"] =  over_five

    collection[key] = options
  end
    if request == nil
     response = send_data(collection,"weekly")
    end
    
  return collection
end

.get_data_set_id(type) ⇒ Object



53
54
55
56
57
58
59
60
61
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 53

def get_data_set_id(type)
  if type == "weekly"
    file = File.open(Rails.root.join("db","idsr_metadata","idsr_weekly_ohsp_ids.csv"))
  else
    file = File.open(Rails.root.join("db","idsr_metadata","idsr_monthly_ohsp_ids.csv"))
  end
  data = CSV.parse(file,headers: true)
  data_set_id = data.first["Data Set ID"]
end

.get_ohsp_de_ids(de, type) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 28

def get_ohsp_de_ids(de,type)
  #this method returns an array ohsp report line ids
  result = []
  #["waoQ016uOz1", "r1AT49VBKqg", "FPN4D0s6K3m", "zE8k2BtValu"]
  #  ds,              de_id     ,  <5yrs       ,  >=5yrs
  puts de
  if type == "weekly"
  file = File.open(Rails.root.join("db","idsr_metadata","idsr_weekly_ohsp_ids.csv"))
  else
  file = File.open(Rails.root.join("db","idsr_metadata","idsr_monthly_ohsp_ids.csv"))
  end
  data = CSV.parse(file,headers: true)
  row = data.select{|row| row["Data Element Name"].strip.downcase.eql?(de.downcase.strip)}
  ohsp_ds_id = row[0]["Data Set ID"]
  result << ohsp_ds_id
  ohsp_de_id = row[0]["UID"]
  result << ohsp_de_id
  option1 = row[0]["<5Yrs"]
  result << option1
  option2 = row[0][">=5Yrs"]
  result << option2

  return result
end

.get_ohsp_facility_idObject



20
21
22
23
24
25
26
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 20

def get_ohsp_facility_id
  file = File.open(Rails.root.join("db","idsr_metadata","emr_ohsp_facility_map.csv"))
  data = CSV.parse(file,headers: true)
  emr_facility_id = Location.current_health_center.id
  facility = data.select{|row| row["EMR_Facility_ID"].to_i == emr_facility_id}
  ohsp_id = facility[0]["OrgUnit ID"]
end

.months_generatorObject

helper menthod



724
725
726
727
728
729
730
731
732
733
734
735
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 724

def months_generator
    months = Hash.new
    count = 1
    curr_date = Date.today
    while count < 13 do
        curr_date = curr_date - 1.month
        months[curr_date.strftime("%Y%m")] = [curr_date.strftime("%B-%Y"),\
                                  (curr_date.beginning_of_month.to_s+" to " + curr_date.end_of_month.to_s)]
        count +=  1
    end
    return months.to_a
end

.quarters_generatorObject



737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 737

def quarters_generator
  quarters = Hash.new

  to_quarter = Proc.new do |date|
    ((date.month - 1) / 3) + 1
  end

  init_quarter = Date.today.beginning_of_year - 2.years

  while init_quarter <= Date.today do
    quarter = init_quarter.strftime("%Y")+" Q"+to_quarter.call(init_quarter).to_s
    dates = "#{(init_quarter.beginning_of_quarter).to_s} to #{(init_quarter.end_of_quarter).to_s}"
    quarters[quarter] = dates
    init_quarter = init_quarter + 3.months
  end

  return quarters.to_a
end

.send_data(data, type) ⇒ Object



796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 796

def send_data(data,type)
  # method used to post data to the server
  #prepare payload here
  conn = server_config['ohsp']
  payload = {
    "dataSet" =>get_data_set_id(type),
    "period"=>(type.eql?("weekly") ? weeks_generator.last[0] : months_generator.first[0]),
    "orgUnit"=> get_ohsp_facility_id,
    "dataValues"=> []
  }
   special = ["Severe Pneumonia in under 5 cases","Malaria in Pregnancy",
             "Underweight Newborns < 2500g in Under 5 Cases","Diarrhoea In Under 5"]

  data.each do |key,value|
    if !special.include?(key)
        option1 =  {"dataElement"=>get_ohsp_de_ids(key,type)[1],
                    "categoryOptionCombo"=> get_ohsp_de_ids(key,type)[2],
                    "value"=>value["<5yrs"].size } rescue {}

        option2 = {"dataElement"=>get_ohsp_de_ids(key,type)[1],
                    "categoryOptionCombo"=> get_ohsp_de_ids(key,type)[3],
                    "value"=>value[">=5yrs"].size} rescue {}

      #fill data values array
        payload["dataValues"] << option1
        payload["dataValues"] << option2
    else
        case key
          when special[0]
            option1 =  {"dataElement"=>get_ohsp_de_ids(key,type)[1],
                        "categoryOptionCombo"=> get_ohsp_de_ids(key,type)[2],
                        "value"=>value["<5yrs"].size } rescue {}

            payload["dataValues"] << option1
          when special[1]
            option2 = {"dataElement"=>get_ohsp_de_ids(key,type)[1],
                        "categoryOptionCombo"=> get_ohsp_de_ids(key,type)[3],
                        "value"=>value[">=5yrs"].size } rescue {}

            payload["dataValues"] << option2
          when special[2]
            option1 =  {"dataElement"=>get_ohsp_de_ids(key,type)[1],
                        "categoryOptionCombo"=> get_ohsp_de_ids(key,type)[2],
                        "value"=>value["<5yrs"].size } rescue {}

            payload["dataValues"] << option1
          when special[3]
            option1 =  {"dataElement"=>get_ohsp_de_ids(key,type)[1],
                        "categoryOptionCombo"=> get_ohsp_de_ids(key,type)[2],
                        "value"=>value["<5yrs"].size} rescue {}

            payload["dataValues"] << option1
        end
    end
  end

  puts "now sending these values: #{payload.to_json}"
  url = "#{conn["url"]}/api/dataValueSets"
  puts url
  puts "pushing #{type} IDSR Reports"
  send = RestClient::Request.execute(method: :post,
                                      url: url,
                                      headers:{'Content-Type'=> 'application/json'},
                                      payload: payload.to_json,
                                      #headers: {accept: :json},
                                      user: conn["username"],
                                      password: conn["password"])

  puts send
end

.send_data_to_sms_portal(data, concept_name_collection) ⇒ Object



867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 867

def send_data_to_sms_portal(data, concept_name_collection)
conn2 = server_config['idsr_sms']
data = data.select {|k,v| v.select {|kk,vv| vv.length > 0}.length > 0}
payload = {
  "email"=> conn2["username"],
  "password" => conn2["password"],
  "emr_facility_id" => Location.current_health_center.id,
  "emr_facility_name" => Location.current_health_center.name,
  "payload" => data,
  "concept_name_collection" => concept_name_collection
}
      
     
      
begin
  response = RestClient::Request.execute(method: :post,
    url: conn2["url"],
    headers:{'Content-Type'=> 'application/json'},
    payload: payload.to_json
  )
rescue RestClient::ExceptionWithResponse => res
  if res.class == RestClient::Forbidden
    puts "error: #{res.class}"
  end
end
      
if response.class != NilClass
  if response.code == 200
    puts "success: #{response}"
  end
end

end

.server_configObject



16
17
18
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 16

def server_config
  config =YAML.load_file("#{Rails.root}/config/application.yml")
end

.settingsObject



11
12
13
14
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 11

def settings
  file = File.read(Rails.root.join("db","idsr_metadata","idsr_ohsp_settings.json"))
  config = JSON.parse(file)
end

.tested_positive(ids, patient) ⇒ Object



192
193
194
195
196
197
198
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 192

def tested_positive(ids, patient)
  patient_id = patient['patient_id']
  return false unless ids.include?(patient_id)

  results = malaria_tests.find{|test| test['patient_id'] == patient_id}['results']
  ['positive', 'parasites seen'].include?(results)
end

.weeks_generatorObject

helper menthod



757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
# File 'app/services/emr_ohsp_interface/emr_ohsp_interface_service.rb', line 757

def weeks_generator

  weeks = Hash.new
  first_day = (Date.today - (11).month).at_beginning_of_month
  wk_of_first_day = first_day.cweek

  if wk_of_first_day > 1
    wk = first_day.prev_year.year.to_s+"W"+wk_of_first_day.to_s
    dates = "#{(first_day-first_day.wday+1).to_s} to #{((first_day-first_day.wday+1)+6).to_s}"
    weeks[wk] = dates
  end

  #get the firt monday of the year
  while !first_day.monday? do
    first_day = first_day+1
  end
  first_monday = first_day
  #generate week numbers and date ranges

  while first_monday <= Date.today do
      wk = (first_monday.year).to_s+"W"+(first_monday.cweek).to_s
      dates =  "#{first_monday.to_s} to #{(first_monday+6).to_s}"
      #add to the hash
      weeks[wk] = dates
      #step by week
      first_monday += 7
  end
#remove the last week
this_wk = (Date.today.year).to_s+"W"+(Date.today.cweek).to_s
weeks = weeks.delete_if{|key,value| key==this_wk}

return weeks.to_a
end