-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravail_et_accouchement_migration.sql
2906 lines (2677 loc) · 156 KB
/
travail_et_accouchement_migration.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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
106
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
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
365
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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
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
681
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
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
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
790
791
792
793
794
795
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
866
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
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DELIMITER $$
DROP PROCEDURE IF EXISTS travailAccMigration$$
CREATE PROCEDURE travailAccMigration()
BEGIN
/*Delete all inserted discontinuations data if the script fail*/
SET SQL_SAFE_UPDATES = 0;
SET FOREIGN_KEY_CHECKS=0;
DELETE FROM obs WHERE encounter_id IN
(
SELECT en.encounter_id FROM encounter en, encounter_type ent
WHERE en.encounter_type=ent.encounter_type_id
AND ent.uuid='d95b3540-a39f-4d1e-a301-8ee0e03d5eab'
);
SET SQL_SAFE_UPDATES = 1;
SET FOREIGN_KEY_CHECKS=1;
SET SQL_SAFE_UPDATES = 0;
/*End of delete all inserted discontinuations data*/
/*Start migration for Travailleur Accouchement Form*/
/*Start migration for Grossesse suivie:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1622,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1
WHEN ito.value_numeric=2 THEN 2
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70523;
/*End migration for Grossesse suivie:*/
/*Start migration for Poids*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_numeric,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,5089,c.encounter_id,c.encounter_datetime,c.location_id,FindNumericValue(ito.value_text),1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7842
AND FindNumericValue(ito.value_text) > 0;
/*End migration for Poids*/
/*Start migration for G (Gravida)*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_numeric,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,5624,c.encounter_id,c.encounter_datetime,c.location_id,FindNumericValue(v.gravida),1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.vitals v
WHERE c.uuid = e.encGuid and
e.patientID = v.patientID and e.siteCode = v.siteCode
AND (v.gravida<>"" AND v.gravida is not null)
AND e.encounterType=26
AND FindNumericValue(v.gravida) > 0;
/*End migration for G (Gravida)*/
/*Start migration for P (Para)*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_numeric,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1053,c.encounter_id,c.encounter_datetime,c.location_id,FindNumericValue(v.para),1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.vitals v
WHERE c.uuid = e.encGuid and
e.patientID = v.patientID and e.siteCode = v.siteCode
AND (v.para<>"" AND v.para is not null)
AND e.encounterType=26
AND FindNumericValue(v.para) > 0;
/*End migraion for P (Para)*/
/*Start migration for Aborta*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_numeric,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1823,c.encounter_id,c.encounter_datetime,c.location_id,FindNumericValue(v.aborta),1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.vitals v
WHERE c.uuid = e.encGuid and
e.patientID = v.patientID and e.siteCode = v.siteCode
AND (v.aborta<>"" AND v.aborta is not null)
AND e.encounterType=26
AND FindNumericValue(v.aborta) > 0;
/*End migration for Aborta*/
/*Start migration for EV (Enfants Vivants)*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_numeric,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1825,c.encounter_id,c.encounter_datetime,c.location_id,FindNumericValue(ito.value_text),1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7870
AND FindNumericValue(ito.value_text) > 0;
/*End migration for EV (Enfants Vivants)*/
/*Start migration for Grossesse désirée:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,163085,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 122933
WHEN ito.value_numeric=2 THEN 123572
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71275;
/*End migration for Grossesse désirée:*/
/*Start migration for Référence:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1648,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1
WHEN ito.value_numeric=2 THEN 2
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71276;
/*End migration for Référence:*/
/*Start migration for Si oui: (matrone ou autre)*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,160482,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1578
WHEN ito.value_numeric=2 THEN 5622
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71277;
/*End migration for Si oui: (matrone ou autre)*/
/*Start migration for Prophylaxie contre la Malaria:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159610,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1
WHEN ito.value_numeric=2 THEN 2
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71278;
/*End migration for Prophylaxie contre la Malaria:*/
/*Start migration for Heure d'admission:*/
/*End migration for Heure d'admission:*/
/*Start migration for Grossesse:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159949,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 159913
WHEN ito.value_numeric=2 THEN 159914
WHEN ito.value_numeric=4 THEN 115491
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70531;
/*End migration for Grossesse:*/
/*Start migration for DEBUT DU TRAVAIL(Date et Heure)*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_datetime,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,163444,c.encounter_id,c.encounter_datetime,c.location_id,ito.value_datetime,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7802;
/*End migration for DEBUT DU TRAVAIL (Date et Heure)*/
/*Start migration for Age gestationnel*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_numeric,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1409,c.encounter_id,c.encounter_datetime,c.location_id,FindNumericValue(ito.value_text),1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7803
AND FindNumericValue(ito.value_text) > 0;
/*End migration for Age gestationnel*/
/*Start migration for Hauteur utérine*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_numeric,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1439,c.encounter_id,c.encounter_datetime,c.location_id,FindNumericValue(ito.value_text),1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7804
AND FindNumericValue(ito.value_text) > 0;
/*End migration for Hauteur utérine*/
/*Start migration for Présentation:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,160090,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 160091
WHEN ito.value_numeric=2 THEN 139814
WHEN ito.value_numeric=4 THEN 112259
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7805;
/*End migration for Présentation:*/
/*Start migration for précisez (Céphalique, Précisez=70532)(Transversale, Précisez=70533):*/
/*End migration for précisez :*/
/*Start migration for Rythme Cardiaque Foetal*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_numeric,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1440,c.encounter_id,c.encounter_datetime,c.location_id,FindNumericValue(ito.value_text),1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7806
AND FindNumericValue(ito.value_text) > 0;
/*End migration for Rythme Cardiaque Foetal*/
/*Start migration for Fièvre:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,140238,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7807;
/*End migration for Fièvre:*/
/*Start migration for Rupture des membranes: (A verifier)*/
/*INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,140238,c.encounter_id,
CASE WHEN (e.visitDateYy is null AND e.visitDateMm < 1 AND e.visitDateDd < 1) THEN NULL
WHEN(e.visitDateMm < 1 AND e.visitDateDd > 0) THEN
DATE_FORMAT(concat(e.visitDateYy,"-",01,"-",e.visitDateDd),"%Y-%m-%d")
WHEN(e.visitDateMm > 0 AND e.visitDateDd < 1) THEN
DATE_FORMAT(concat(e.visitDateYy,"-",e.visitDateMm,"-",01),"%Y-%m-%d")
ELSE
DATE_FORMAT(concat(e.visitDateYy,"-",e.visitDateMm,"-",e.visitDateDd),"%Y-%m-%d")
END,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=;*/
/*End migration for Rupture des membranes:*/
/*Start migration for Date et Heure:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_datetime,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,160710,c.encounter_id,c.encounter_datetime,c.location_id,ito.value_datetime,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7809;
/*End migration for Date et Heure:*/
/*Start migration for Liquide amniotique :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,163446,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1115
WHEN ito.value_numeric=2 THEN 155311
WHEN ito.value_numeric=4 THEN 134488
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7810;
/*End migration for Liquide amniotique :*/
/*Start migration for Dystocie :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,163449,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 163447
WHEN ito.value_numeric=2 THEN 163448
WHEN ito.value_numeric=4 THEN 5622
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71279;
/*End migration for Dystocie*/
/*Start migration for Procidence du cordon :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,128420,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71280;
/*End migration for Procidence du cordon :*/
/*Start migration for Hémorragie vaginale:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,147232,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7828;
/*End migration for Hémorragie vaginale:*/
/*Start migration for Si oui, précisez:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,147232,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 130108
WHEN ito.value_numeric=2 THEN 138902
WHEN ito.value_numeric=4 THEN 127259
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70534;
/*End migration for Si oui, précisez:*/
/*Start migration for Autre, précisez :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,comments,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,147232,c.encounter_id,c.encounter_datetime,c.location_id,5622,ito.value_text,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70535
AND (ito.value_text<>"" AND ito.value_text is not null) ;
/*End migration for Autre, précisez :*/
/*Start migration for Perte sanguine estimée à:*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_numeric,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,161928,c.encounter_id,c.encounter_datetime,c.location_id,FindNumericValue(ito.value_text),1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70518
AND FindNumericValue(ito.value_text) > 0;
/*End migration for Perte sanguine estimée à:*/
/*Start migration for Transfusion :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1063,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1
WHEN ito.value_numeric=2 THEN 2
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7829;
/*End migration for Transfusion :*/
/*Start migration for HTA*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1284,c.encounter_id,c.encounter_datetime,c.location_id,113858,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70525
AND ito.value_numeric=1;
/*End migration for HTA*/
/*Start migration for Pré Eclampsie Sévère*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1284,c.encounter_id,c.encounter_datetime,c.location_id,113006,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70529
AND ito.value_numeric=1;
/*End migration for Pré Eclampsie Sévère*/
/*Start migration for Eclampsie*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1284,c.encounter_id,c.encounter_datetime,c.location_id,118744,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71281
AND ito.value_numeric=1;
/*End migration for Eclampsie*/
/*Start migration for Si VIH positif: TAR*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,160117,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 160119
WHEN ito.value_numeric=2 THEN 1461
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71129;
/*End migration for Si VIH positif: TAR*/
/*Start migration for Accouchement part*/
/*Start migration for Date et Heure*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_datetime,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,5599,c.encounter_id,c.encounter_datetime,c.location_id,ito.value_datetime,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7819;
/*End migration for Date et Heure*/
/*Start migration for Lieu Accouchement :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1572,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 163266
WHEN ito.value_numeric=2 THEN 1501
WHEN ito.value_numeric=4 THEN 1502
WHEN ito.value_numeric=8 THEN 5622
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71282;
/*End migration for Lieu Accouchement :*/
/*Start migration for Si accouchement à domicile, assisté par Matrone :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1573,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1578
WHEN ito.value_numeric=2 THEN 1107
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7823;
/*End migration for Si accouchement à domicile, assisté par Matrone :*/
/*Start migration for Vaginal :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,1170,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71137;
/*End migration for Vaginal :*/
/*Start migration for Forceps :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159901,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70524;
/*End migration for Forceps :*/
/*Start migration for Vacuum :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159902,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7822;
/*End migration for Vacuum :*/
/*Start migration for Ligature tardive du cordon : (A Corriger dans eclipse)*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,163450,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71283;
/*End migration for Ligature tardive du cordon :*/
/*Start migration for Délivrance :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,163453,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 163451
WHEN ito.value_numeric=2 THEN 163452
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7824;
/*End migration for Délivrance :*/
/*Start migration for Placenta :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,163454,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 163455
WHEN ito.value_numeric=2 THEN 163456
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7827;
/*End migration for Placenta :*/
/*Start migration for Membranes complètes : */
/*End migration for Membranes complètes : */
/*Start migration for Rétention placentaire : */
/*End migration for Rétention placentaire : */
/*Start migration for Lacération du périnée :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,160084,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 112253
WHEN ito.value_numeric=2 THEN 1115
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7825;
/*End migration for Lacération du périnée :*/
/*Start migration for Si oui Réparation :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,163457,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7826;
/*End migration for Si oui Réparation :*/
/*Start migration for Césarienne :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,5630,c.encounter_id,c.encounter_datetime,c.location_id,1171,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7820
AND ito.value_numeric=2;
/*End migration for Césarienne : Indication = 70519*/
/*Start migration for Section Césarienne + Hystérectomie*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,5630,c.encounter_id,c.encounter_datetime,c.location_id,161848,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7820
AND ito.value_numeric=4;
/*End migration for Section Césarienne + Hystérectomie*/
/*Start migration for Counseling sur la Nutrition du Nouveau-né :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,161070,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=7835;
/*End migration for Counseling sur la Nutrition du Nouveau-né :*/
/*End migration for Accouchement part*/
/*Start migration for Prophylaxie ARV Nouveau-né :*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,5665,c.encounter_id,c.encounter_datetime,c.location_id,
CASE WHEN ito.value_numeric=1 THEN 1065
WHEN ito.value_numeric=2 THEN 1066
END,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70528;
/*End migration for Prophylaxie ARV Nouveau-né :*/
/*Start migration for TABLEAU DE NAISSANCE Part*/
/*Start migration for Naissance Vivante*/
/*Inserting concept group*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='5a30a073-1102-4450-aa53-56c0ba58d305'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70500
AND ito.value_numeric=1;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='5a30a073-1102-4450-aa53-56c0ba58d305'
GROUP BY openmrs.obs.person_id,encounter_id;
/*Inserting the concept*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,151849,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70500
AND ito.value_numeric=1;
/*======================================================================================*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='ea404f7d-0434-4894-82dc-a7df5627ea61'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70501
AND ito.value_numeric=1;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='ea404f7d-0434-4894-82dc-a7df5627ea61'
GROUP BY openmrs.obs.person_id,encounter_id;
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,151849,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70501
AND ito.value_numeric=1;
/*=====================================================================================*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='3ec025a5-1d98-4761-9ca5-e56bb41b7547'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70502
AND ito.value_numeric=1;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='3ec025a5-1d98-4761-9ca5-e56bb41b7547'
GROUP BY openmrs.obs.person_id,encounter_id;
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,151849,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70502
AND ito.value_numeric=1;
/*=====================================================================================*/
/*concept group*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='955122a5-c40a-4d20-85ef-c87da9c26486'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70503
AND ito.value_numeric=1;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='955122a5-c40a-4d20-85ef-c87da9c26486'
GROUP BY openmrs.obs.person_id,encounter_id;
/*concept*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,151849,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70503
AND ito.value_numeric=1;
/*End migration for Naissance Vivante*/
/*Start migration for Macérée*/
/*concept group*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='5a30a073-1102-4450-aa53-56c0ba58d305'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70500
AND ito.value_numeric=2;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='5a30a073-1102-4450-aa53-56c0ba58d305'
GROUP BY openmrs.obs.person_id,encounter_id;
/*concept*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,135436,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70500
AND ito.value_numeric=2;
/*=============================================================*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='ea404f7d-0434-4894-82dc-a7df5627ea61'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70501
AND ito.value_numeric=2;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='ea404f7d-0434-4894-82dc-a7df5627ea61'
GROUP BY openmrs.obs.person_id,encounter_id;
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,135436,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70501
AND ito.value_numeric=2;
/*=================================================================*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='3ec025a5-1d98-4761-9ca5-e56bb41b7547'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70502
AND ito.value_numeric=2;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='3ec025a5-1d98-4761-9ca5-e56bb41b7547'
GROUP BY openmrs.obs.person_id,encounter_id;
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,135436,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70502
AND ito.value_numeric=2;
/*=====================================================================*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='955122a5-c40a-4d20-85ef-c87da9c26486'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70503
AND ito.value_numeric=2;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='955122a5-c40a-4d20-85ef-c87da9c26486'
GROUP BY openmrs.obs.person_id,encounter_id;
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,c.location_id,
og.obs_id,135436,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70503
AND ito.value_numeric=2;
/*End migration for Macérée*/
/*Start migration for Mort Foetale Non Macérée*/
/*concept group*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='5a30a073-1102-4450-aa53-56c0ba58d305'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70500
AND ito.value_numeric=4;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='5a30a073-1102-4450-aa53-56c0ba58d305'
GROUP BY openmrs.obs.person_id,encounter_id;
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,159916,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70500
AND ito.value_numeric=4;
/*==========================================================================*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='ea404f7d-0434-4894-82dc-a7df5627ea61'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70501
AND ito.value_numeric=4;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='ea404f7d-0434-4894-82dc-a7df5627ea61'
GROUP BY openmrs.obs.person_id,encounter_id;
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,159916,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70501
AND ito.value_numeric=4;
/*========================================================================*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='3ec025a5-1d98-4761-9ca5-e56bb41b7547'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70502
AND ito.value_numeric=4;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='3ec025a5-1d98-4761-9ca5-e56bb41b7547'
GROUP BY openmrs.obs.person_id,encounter_id;
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,159916,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70502
AND ito.value_numeric=4;
/*=========================================================================*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='955122a5-c40a-4d20-85ef-c87da9c26486'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=70503
AND ito.value_numeric=4;
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='955122a5-c40a-4d20-85ef-c87da9c26486'
GROUP BY openmrs.obs.person_id,encounter_id;
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,obs_group_id,value_coded,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,159917,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,159916,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=70503
AND ito.value_numeric=4;
/*End migration for Mort Foetale Non Macérée*/
/*Start migration for Date et Heure*/
/*concept group*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='5a30a073-1102-4450-aa53-56c0ba58d305'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71284
AND (ito.value_datetime is not null OR ito.value_datetime <> '');
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='5a30a073-1102-4450-aa53-56c0ba58d305'
GROUP BY openmrs.obs.person_id,encounter_id;
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
obs_group_id,value_datetime,creator,date_created,uuid)
SELECT DISTINCT c.patient_id,5599,c.encounter_id,c.encounter_datetime,
c.location_id,og.obs_id,ito.value_datetime,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito, itech.obs_concept_group og
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND c.patient_id = og.person_id
AND c.encounter_id = og.encounter_id
AND ito.concept_id=71284
AND (ito.value_datetime is not null OR ito.value_datetime <> '');
/*=======================================================================*/
/*concept group*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,
creator,date_created,uuid)
SELECT DISTINCT c.patient_id,
(select concept_id from concept where uuid='ea404f7d-0434-4894-82dc-a7df5627ea61'),
c.encounter_id,c.encounter_datetime,c.location_id,1,e.createDate, UUID()
from encounter c, itech.encounter e, itech.obs ito
WHERE c.uuid = e.encGuid and e.siteCode = ito.location_id
and e.encounter_id = ito.encounter_id
AND ito.concept_id=71285
AND (ito.value_datetime is not null OR ito.value_datetime <> '');
delete from itech.obs_concept_group where 1;
INSERT INTO itech.obs_concept_group (obs_id,person_id,concept_id,encounter_id)
SELECT MAX(openmrs.obs.obs_id) as obs_id,openmrs.obs.person_id,openmrs.obs.concept_id,openmrs.obs.encounter_id
FROM openmrs.obs,openmrs.concept c
WHERE openmrs.obs.concept_id=c.concept_id and c.uuid='ea404f7d-0434-4894-82dc-a7df5627ea61'
GROUP BY openmrs.obs.person_id,encounter_id;
/*concept*/
INSERT INTO obs(person_id,concept_id,encounter_id,obs_datetime,location_id,