-
Notifications
You must be signed in to change notification settings - Fork 0
/
script_olmis3.py
executable file
·1169 lines (1104 loc) · 59.1 KB
/
script_olmis3.py
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
#!c:\python27\python.exe
import pymssql
import psycopg2
import psycopg2.extras
import datetime
from time import time
import uuid
#--------------------------------NOTES------------------------------------------#
"""
- -Pending insert to reg_person_orgunits
- Review insert into reg_org_unit
"""
#---------------------------------END NOTES-------------------------------------#
#------------------------------TRANSLATOR---------------------------------------#
""" NOTES """
# 1. XXXX represents failed translations because the values don't exist in
# the postgres look_up table.
def translator(x, value):
# translate look_ups(Service)
conn2 = psycopg2.connect(
"dbname='cpims' user='postgres' host='localhost' password='postgres'")
if x == 0:
fields = {'domain': 'ERR', 'service': 'ERR'}
cur2 = conn2.cursor()
cur2.execute("SELECT item_id, item_description, item_description_short, item_category, item_sub_category, field_name FROM list_general " +
"WHERE LOWER(item_description) LIKE '" + value.lower() + "%' AND item_category='Service' AND field_name LIKE 'olmis%'")
if cur2.rowcount > 0:
for row in cur2.fetchall():
fields['service'] = row[0]
field_name = row[5]
if 'olmis_shelter' in field_name:
fields['domain'] = 'DSHC'
if 'olmis_pss' in field_name:
fields['domain'] = 'DPSS'
if 'olmis_protection' in field_name:
fields['domain'] = 'DPRO'
if 'olmis_hes' in field_name:
fields['domain'] = 'DHES'
if 'olmis_health' in field_name:
fields['domain'] = 'DHNU'
if 'olmis_education' in field_name:
fields['domain'] = 'DEDU'
else:
fields = {'domain': 'XXXX', 'service': 'XXXX'}
value = fields
return value
# translate subdomains
if x == 1:
if 'Food Security' in value:
value = 'HNU1'
if 'Nutrition and Growth' in value:
value = 'HNU2'
if 'Wellness' in value:
value = 'HNU3'
if 'Healthcare Services' in value:
value = 'HNU4'
if 'Shelter' in value:
value = 'SHC1'
if 'Care' in value:
value = 'SHC2'
if 'Abuse and Exploitation' in value:
value = 'PRO1'
if 'Legal Protection' in value:
value = 'PRO2'
if 'Emotional Health' in value:
value = 'PSS1'
if 'Social Behavior' in value:
value = 'PSS2'
if 'Performance' in value:
value = 'EDU1'
if 'Education and Work' in value:
value = 'EDU2'
return value
# translate goal ids
if x == 2:
if value == '4 - Good':
value = 'GOOD'
if value == '3 - Fair':
value = 'FAIR'
if value == '2 - Bad':
value = 'GBAD'
if value == '1 - Very Bad':
value = 'VBAD'
return value
# translate look_ups(Assessments)
if x == 3:
fields = {'domain': 'ERR', 'service': 'ERR', 'service_status': 'ERR'}
cur1 = conn2.cursor()
cur2 = conn2.cursor()
cur1.execute("SELECT item_id, item_description, item_description_short, item_category, item_sub_category, field_name FROM list_general " +
"WHERE LOWER(item_description) = '" + value.lower() + "' AND item_category='Monitor' AND field_name LIKE 'olmis%'")
if cur1.rowcount > 0:
for row in cur1.fetchall():
fields['service'] = row[0]
field_name = row[5]
if 'olmis_shelter' in field_name:
fields['domain'] = 'DSHC'
if 'olmis_pss' in field_name:
fields['domain'] = 'DPSS'
if 'olmis_protection' in field_name:
fields['domain'] = 'DPRO'
if 'olmis_hes' in field_name:
fields['domain'] = 'DHES'
if 'olmis_health' in field_name:
fields['domain'] = 'DHNU'
if 'olmis_education' in field_name:
fields['domain'] = 'DEDU'
else:
fields = {'domain': 'XXXX', 'service': 'XXXX'}
value = fields
return value
# translate look_ups(Generic)
if x == 4:
fields = {'domain': 'ERR', 'service': 'ERR'}
cur1 = conn2.cursor()
cur1.execute("SELECT item_id, item_description, item_description_short, item_category, item_sub_category, field_name FROM list_general " +
"WHERE LOWER(item_description) LIKE '" + value.lower() + "%' AND field_name LIKE 'olmis%'")
if cur1.rowcount > 0:
for row in cur1.fetchall():
fields['service'] = row[0]
else:
fields = {'domain': 'XXXX', 'service': 'XXXX'}
value = fields
return value
# translate look_ups(HHVA)
if x == 5:
response = (value[0]).strip()
response_id = int(value[1])
hhva_code = (value[2]).strip()
amount = str(value[3])
condition_size = str(value[4])
fields = []
# HA1.2.3.4
if int(response_id) == 1:
fields.append({
'entity': 'HA1F',
'attribute': 'HA1F',
'value': amount,
'value_for': ''
})
if int(response_id) == 2:
fields.append({
'entity': 'HA1M',
'attribute': 'HA1M',
'value': amount,
'value_for': ''
})
if int(response_id) == 3:
fields.append({
'entity': 'HA2F',
'attribute': 'HA2F',
'value': amount,
'value_for': ''
})
if int(response_id) == 4:
fields.append({
'entity': 'HA2M',
'attribute': 'HA2M',
'value': amount,
'value_for': ''
})
if int(response_id) == 5:
fields.append({
'entity': 'HA3F',
'attribute': 'HA3F',
'value': amount,
'value_for': ''
})
if int(response_id) == 6:
fields.append({
'entity': 'HA3M',
'attribute': 'HA3M',
'value': amount,
'value_for': ''
})
if int(response_id) == 7:
fields.append({
'entity': 'HA4F',
'attribute': 'HA4F',
'value': amount,
'value_for': ''
})
if int(response_id) == 8:
fields.append({
'entity': 'HA4M',
'attribute': 'HA4M',
'value': amount,
'value_for': ''
})
cur1 = conn2.cursor()
cur1.execute("SELECT item_id, item_description, item_description_short, item_category, item_sub_category, field_name FROM list_general " +
"WHERE LOWER(item_description) LIKE '" + response.lower() + "%' AND field_name LIKE 'olmis%'")
if cur1.rowcount > 0:
for row in cur1.fetchall():
if(hhva_code == 'HA5'):
fields.append({
'entity': 'HA5',
'attribute': 'HA5',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA6'):
fields.append({
'entity': 'HA6',
'attribute': 'HA6',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA7'):
fields.append({
'entity': 'HA7',
'attribute': 'HA7',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA8'):
fields.append({
'entity': 'HA8',
'attribute': 'HA8',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA9'):
fields.append({
'entity': 'HA9',
'attribute': 'HA9',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA10'):
condition = condition_size
number = amount
field = translator(4, condition)
fields.append({
'entity': 'HA10',
'attribute': 'HA10',
'value': field['service'],
'value_for': 'CONDITION'
})
fields.append({
'entity': 'HA10',
'attribute': 'HA10',
'value': number,
'value_for': 'NUMBER'
})
if(hhva_code == 'HA11'):
fields.append({
'entity': 'HA11',
'attribute': 'HA11',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA12'):
fields.append({
'entity': 'HA12',
'attribute': 'HA12',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA13'):
fields.append({
'entity': 'HA13',
'attribute': 'HA13',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA14'):
fields.append({
'entity': 'HA14',
'attribute': 'HA14',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA15'):
condition = condition_size
number = amount
fields.append({
'entity': 'HA15',
'attribute': 'HA15',
'value': condition,
'value_for': 'SIZE'
})
fields.append({
'entity': 'HA15',
'attribute': 'HA15',
'value': number,
'value_for': 'NUMBER'
})
if(hhva_code == 'HA16'):
fields.append({
'entity': 'HA16',
'attribute': 'HA16',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA17'):
fields.append({
'entity': 'HA17',
'attribute': 'HA17',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA18'):
fields.append({
'entity': 'HA18',
'attribute': 'HA18',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA19'):
fields.append({
'entity': 'HA19',
'attribute': 'HA19',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA20'):
fields.append({
'entity': 'HA20',
'attribute': 'HA20',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA21'):
fields.append({
'entity': 'HA21',
'attribute': 'HA21',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA22'):
fields.append({
'entity': 'HA22',
'attribute': 'HA22',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA23'):
fields.append({
'entity': 'HA23',
'attribute': 'HA23',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA24'):
fields.append({
'entity': 'HA24',
'attribute': 'HA24',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA25'):
fields.append({
'entity': 'HA25',
'attribute': 'HA25',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA26' and response == 'Male'):
fields.append({
'entity': 'HA26M',
'attribute': 'HA26M',
'value': amount,
'value_for': ''
})
if(hhva_code == 'HA26' and response == 'Female'):
fields.append({
'entity': 'HA26F',
'attribute': 'HA26F',
'value': amount,
'value_for': ''
})
if(hhva_code == 'HA27' and response == 'Male'):
fields.append({
'entity': 'HA27M',
'attribute': 'HA27M',
'value': amount,
'value_for': ''
})
if(hhva_code == 'HA27' and response == 'Female'):
fields.append({
'entity': 'HA27F',
'attribute': 'HA27F',
'value': amount,
'value_for': ''
})
if(hhva_code == 'HA28'):
fields.append({
'entity': 'HA28',
'attribute': 'HA28',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA29'):
fields.append({
'entity': 'HA29',
'attribute': 'HA29',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA30'):
fields.append({
'entity': 'HA30',
'attribute': 'HA30',
'value': row[0],
'value_for': ''
})
if(hhva_code == 'HA31'):
fields.append({
'entity': 'HA31',
'attribute': 'HA31',
'value': row[0],
'value_for': ''
})
else:
fields.append({
'entity': hhva_code,
'attribute': hhva_code,
'value': 'XXXX',
'value_for': 'XXXX'
})
value = fields
return value
# translate look_ups for service_provider
if x == 6:
if value == 'Religious Organization':
value = 'PROG'
elif value == 'GoK':
value = 'PGOK'
elif value == 'WEZESHA':
value = 'PUSG'
else:
value = 'PUSG'
return value
# translate look_ups list_geo (county)
if x == 7:
conn2 = psycopg2.connect(
"dbname='cpims' user='postgres' host='localhost' password='postgres'")
fields = {'area_id': '1'}
cur2 = conn2.cursor()
cur2.execute("SELECT area_id FROM list_geo " +
"WHERE area_type_id='GWRD' AND LOWER(area_name) = '" + value.lower() + "'")
if cur2.rowcount > 0:
for row in cur2.fetchall():
fields['area_id'] = row[0]
else:
fields = {'area_id': '1'}
value = fields
return value
##--------------------------------END TRANSLATOR-----------------------------------#
##--------------------------------DATA SCRIPTS ------------------------------------#
""" System Variables """
OVCCareEvents_CSI = []
OVCCareEvents_F1A = []
OVCCareEvents_HHVA = []
NeedsAssessmentPKs = []
ServicePKs = []
HHVAPKs = []
HouseHoldheadIDs = []
CBONames = []
OVCID_MATRIX = []
OVCIDS = []
dictXarray = []
mssql_conn = None
pgsql_conn = None
try:
# connect to SQL SERVER & Postgresql >> DESKTOP-N2TORCL\Palladium
# mssql_conn = pymssql.connect(host='localhost', user='.\William Watembo', password='H48tgj3q!', database='APHIAMAINDB')
mssql_conn = pymssql.connect(host='(local)', user='sa', password='root', database='APHIAMAINDB')
mssql_cursor = mssql_conn.cursor(as_dict=True)
print 'connected to SQL SERVER! (APHIAMAINDB)'
pgsql_conn = psycopg2.connect("dbname='cpims_olmis' user='postgres' host='localhost' password='postgres'")
pgsql_cursor = pgsql_conn.cursor()
print 'connected to PostgreSQL!'
# flatten dataset/push to temp_table
mssql_query_select = ("SELECT TOP (1) Clientdetails.ClientID AS ClientID, Clientdetails.OVCID AS OVCID, Clientdetails.FirstName AS ClientFirstName," +
"Clientdetails.MiddleName AS ClientMiddleName, Clientdetails.Surname AS ClientSurname, Clientdetails.Gender AS ClientGender," +
"Clientdetails.DateofBirth AS ClientDateofBirth, Clientdetails.BirthCert AS ClientBirthCert,Clientdetails.ClientType AS ClientType," +
"Clientdetails.Cbo AS ClientCbo, Clientdetails.District AS ClientDistrict, Clientdetails.Location AS ClientLocation,"
"Clientdetails.Facility AS ClientFacility, Clientdetails.VolunteerId AS ClientVolunteerId, Clientdetails.SchoolLevel AS ClientSchoolLevel," +
"Clientdetails.HIVStatus AS ClientHivStatus, Clientdetails.ARTStatus AS ClientARTStatus,Clientdetails.GuardianID AS ClientGuardianID," +
"Clientdetails.FatherID AS ClientFatherID, Clientdetails.MotherID AS ClientMotherID, Clientdetails.HouseHoldheadID AS ClientHouseHoldheadID," +
"Clientdetails.CareTaker AS ClientCareTaker, Clientdetails.Exited AS ClientExited, Clientdetails.ReasonforExit AS ClientReasonforExit," +
"Clientdetails.DateofRegistration AS ClientDateofRegistration,Clientdetails.DateofVisit AS ClientDateofVisit, Clientdetails.DateofExit AS ClientDateofExit," +
"Clientdetails.School AS ClientSchool, Clientdetails.class AS ClientClass, Clientdetails.EligibilityCriteria AS ClientEligibilityCriteria," +
"Clientdetails.HHVulnerabilityStatus AS ClientHHVulnerabilityStatus, Clientdetails.Immunization AS ClientImmunization, Clientdetails.IsEnrolment AS ClientIsEnrolment," +
"Clientdetails.SchoolingType AS ClientSchoolingType, Clientdetails.DateofLinkage AS ClientDateofLinkage,Clientdetails.bcertnumber AS ClientBirthCertNumber," +
"Clientdetails.IsDisabled AS ClientIsDisabled, Clientdetails.NCPWDNumber AS ClientNCPWNumber, Clientdetails.CCCNumber AS ClientCCCNumber," +
"ParentDetails.ParentId AS ParentId, ParentDetails.IDNumber AS ParentIDNumber, ParentDetails.FirstName AS ParentFirstName," +
"ParentDetails.MiddleName AS ParentMiddleName, ParentDetails.Surname AS ParentSurname, ParentDetails.DateofBirth AS ParentDateofBirth," +
"ParentDetails.IsDead AS ParentIsDead, ParentDetails.CauseofDeath AS ParentCauseofDeath,ParentDetails.HIVStatus AS ParentHIVStatus, ParentDetails.Gender AS ParentGender," +
"ParentDetails.MobileNumber AS ParentMobileNumber, ParentDetails.Relationship AS ParentRelationship, ParentDetails.AgeRange AS ParentAgeRange," +
"ParentDetails.DateofVisit AS ParentDateofVisit, ParentDetails.IsHCBCClient AS ParentIsHCBCClient, ParentDetails.District AS ParentDistrict," +
"ParentDetails.Location AS ParentLocation, ParentDetails.MaritalStatus AS ParentMaritalStatus,ParentDetails.TypeofEmployment AS ParentTypeofEmployment," +
"ParentDetails.Schoollevel AS ParentSchoolLevel, ParentDetails.ChildreninHousehold AS ParentChildreninHousehold, ParentDetails.ChildreninOVCProg AS ParentChildrenInOVCProg," +
"ParentDetails.YearconfirmedHIV AS ParentYearconfirmedHIV,ParentDetails.HBCProgram AS ParentHBCProgram, ParentDetails.YearsinHBC AS ParentYearsinHBC," +
"ParentDetails.CHW AS ParentCHW, ParentDetails.ARTStatus AS ParentARTStatus, ParentDetails.Facility AS ParentFacility, ParentDetails.CCCNo AS ParentCCCNo," +
"ParentDetails.DateofRegistration AS ParentDateofRegistration, ParentDetails.ovccbo AS ParentCbo, County.County AS County," +
"District.District AS District, CBO.CBO AS CBOName, Wards.Ward AS WardName INTO TEMPORARY_FLAT_TABLE " +
"FROM District INNER JOIN " +
"CBO ON District.DistrictID = CBO.DistrictID INNER JOIN " +
"Location ON Location.DistrictID = CBO.DistrictID INNER JOIN " +
"County ON District.Countyid = County.CountyID INNER JOIN " +
"Clientdetails INNER JOIN " +
"ParentDetails ON Clientdetails.HouseHoldheadID = ParentDetails.ParentId ON CBO.CBOID = ParentDetails.ovccbo INNER JOIN "+
"Wards ON Location.Wardid = Wards.Wardid")
tic = time()
mssql_cursor.execute(mssql_query_select)
mssql_conn.commit()
toc = time()
print 'flattening dataset/buffering to temp_table in (%s) secs ...' % (toc - tic)
# interface with PostgreSQL
tic = time()
mssql_temp_query_select = (
"SELECT * FROM dbo.TEMPORARY_FLAT_TABLE ORDER BY OVCID ASC")
mssql_cursor.execute(mssql_temp_query_select)
hrcnt, thrcnt=0, mssql_cursor.rowcount
for row in mssql_cursor:
hrcnt+=1
print 'OVC registration record number ', hrcnt, '/', thrcnt
# harvest OVCIDS
OVCIDS.append(str(row['OVCID']))
# insert reg_person_client
OVCID = row['OVCID']
is_void = False
created_at = datetime.datetime.now()
cfirst_name = row['ClientFirstName']
cother_names = row['ClientMiddleName']
csurname = row['ClientSurname']
cdesignation = 'COVC'
csex_id = 'SMAL' if str(row['ClientGender']) == 'Male' else 'SFEM'
cdate_of_birth = row['ClientDateofBirth']
pgsql_cursor.execute("INSERT INTO reg_person(first_name, other_names, surname, designation, sex_id, date_of_birth, is_void, created_at) VALUES(%s, %s, %s, %s, %s, %s, %s, %s) RETURNING id;",
(cfirst_name, cother_names, csurname, cdesignation, csex_id, cdate_of_birth, is_void, created_at))
person_pk = pgsql_cursor.fetchone()[0]
# print 'inserting records into reg_person(ovc) . . .'
# insert reg_persons_types_client
person_type_id = 'TBVC'
date_began = created_at
date_ended = None
person_id = person_pk
pgsql_cursor.execute("INSERT INTO reg_persons_types(person_type_id, date_began, date_ended, person_id, is_void) VALUES(%s, %s, %s, %s, %s) RETURNING id;",
(person_type_id, date_began, date_ended, person_id, is_void))
# print 'inserting records into reg_persons_types(ovc) . . .'
# insert into reg_persons_geo_client
date_linked = created_at
date_delinked = None
area_type = 'GWRD'
fields = translator(7, row['WardName'])
area_id = fields['area_id']
person_id = person_pk
pgsql_cursor.execute("INSERT INTO reg_persons_geo(date_linked, date_delinked, area_type, area_id, person_id, is_void) VALUES(%s, %s, %s, %s, %s, %s) RETURNING id;",
(date_linked, date_delinked, area_type, area_id, person_id, is_void))
# print 'inserting records into reg_persons_geo(ovc) . . .'
if not (row['ClientHouseHoldheadID']) in HouseHoldheadIDs:
# insert into reg_person_parent
pfirst_name = row['ParentFirstName']
pother_names = row['ParentMiddleName']
psurname = row['ParentSurname']
pdesignation = 'CCGV'
psex_id = 'SMAL' if str(row['ParentGender']) == 'Male' else 'SFEM'
pdate_of_birth = row['ParentDateofBirth']
pgsql_cursor.execute("INSERT INTO reg_person(first_name, other_names, surname, designation, sex_id, date_of_birth, is_void, created_at) VALUES(%s, %s, %s, %s, %s, %s, %s, %s) RETURNING id;",
(pfirst_name, pother_names, psurname, pdesignation, psex_id, pdate_of_birth, is_void, created_at))
# conn2.commit()
parent_pk = pgsql_cursor.fetchone()[0]
# print 'inserting records into reg_person(parent) . . .'
# insert into reg_person_parent
identifier_type_id = 'INTL'
identifier = row['ParentIDNumber']
person_id = parent_pk
pgsql_cursor.execute("INSERT INTO reg_persons_external_ids(identifier_type_id, identifier, is_void, person_id) VALUES(%s, %s, %s, %s) RETURNING id;",
(identifier_type_id, identifier, is_void, person_id))
# conn2.commit()
# print 'inserting records into reg_persons_external_ids . . .'
# insert into ovc_household
hash_key = uuid.uuid4()
psycopg2.extras.register_uuid()
head_identifier = '11_INTL'
head_person_id = parent_pk
pgsql_cursor.execute("INSERT INTO ovc_household(id, head_identifier, created_at, is_void, head_person_id) VALUES(%s, %s, %s, %s, %s) RETURNING id;",
(hash_key, head_identifier, created_at, is_void, head_person_id))
# conn2.commit()
household_pk = pgsql_cursor.fetchone()[0]
HouseHoldheadIDs.append(row['ClientHouseHoldheadID'])
dictXarray.append({
'child_person_id': person_pk,
'householdhead_id': row['ClientHouseHoldheadID'],
'household_id': household_pk,
'parent_id': parent_pk
})
# print 'inserting records into ovc_household . . .'
hash_key = uuid.uuid4()
psycopg2.extras.register_uuid()
hh_head = False
member_type = 'CCGV'
member_alive = 'AYES'
death_cause = None
date_linked = created_at
date_delinked = None
house_hold_id = household_pk
person_id = parent_pk
pgsql_cursor.execute("INSERT INTO ovc_household_members(id, hh_head, member_type, member_alive, death_cause, date_linked, date_delinked, is_void,house_hold_id, person_id) VALUES(%s, %s, %s, %s, %s, %s,%s, %s, %s, %s) RETURNING id;",
(hash_key, hh_head, member_type, member_alive, death_cause, date_linked, date_delinked, is_void, house_hold_id, person_id))
# conn2.commit()
# print 'inserting records into ovc_household_members (parent) . . .'
# insert reg_persons_types_parent
person_type_id = 'TBGR'
date_began = created_at
date_ended = None
person_id = parent_pk
pgsql_cursor.execute("INSERT INTO reg_persons_types(person_type_id, date_began, date_ended, person_id, is_void) VALUES(%s, %s, %s, %s, %s) RETURNING id;",
(person_type_id, date_began, date_ended, person_id, is_void))
# conn2.commit()
# print 'inserting records into reg_persons_types . . .'
# insert into reg_persons_geo_parent
date_linked = created_at
date_delinked = None
area_type = 'GPRV'
fields = translator(7, row['County'])
area_id = fields['area_id']
person_id = parent_pk
pgsql_cursor.execute("INSERT INTO reg_persons_geo(date_linked, date_delinked, area_type, area_id, person_id, is_void) VALUES(%s, %s, %s, %s, %s, %s) RETURNING id;",
(date_linked, date_delinked, area_type, area_id, person_id, is_void))
# conn2.commit()
# print 'inserting records into reg_persons_geo(parent) . . .'
# insert into reg_persons_guardians
date_linked = created_at
date_delinked = None
relationship = 'CGPF' if row[
'ClientCareTaker'] == 'Father' else 'CGPM'
child_headed = False
child_person_id = person_pk
guardian_person_id = parent_pk
pgsql_cursor.execute("INSERT INTO reg_persons_guardians(date_linked, date_delinked, relationship, child_headed, child_person_id, guardian_person_id, is_void) VALUES(%s, %s, %s, %s, %s, %s, %s) RETURNING id;",
(date_linked, date_delinked, relationship, child_headed, child_person_id, guardian_person_id, is_void))
# conn2.commit()
# print 'inserting records into reg_persons_guardians . . .'
# insert into reg_persons_siblings.insert into ovc_household_members
date_linked = created_at
date_delinked = None
remarks = ''
child_person_id = None
sibling_person_id = person_pk
if dictXarray:
for d in dictXarray:
if d['householdhead_id'] == row['ClientHouseHoldheadID']:
child_person_id = d['child_person_id']
if child_person_id != person_pk:
pgsql_cursor.execute("INSERT INTO reg_persons_siblings(date_linked, date_delinked, remarks, child_person_id, sibling_person_id, is_void) VALUES(%s, %s, %s, %s, %s, %s) RETURNING id;",
(date_linked, date_delinked, remarks, d['child_person_id'], sibling_person_id, is_void))
# conn2.commit()
# print 'inserting records into reg_persons_siblings . . .'
hash_key = uuid.uuid4()
psycopg2.extras.register_uuid()
hh_head = False
member_type = 'TBVC'
member_alive = 'AYES'
death_cause = None
date_linked = created_at
date_delinked = None
house_hold_id = d['household_id']
person_id = person_pk
pgsql_cursor.execute("INSERT INTO ovc_household_members(id, hh_head, member_type, member_alive, death_cause, date_linked, date_delinked, is_void,house_hold_id, person_id) VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s) RETURNING id;",
(hash_key, hh_head, member_type, member_alive, death_cause, date_linked, date_delinked, is_void, house_hold_id, person_id))
# conn2.commit()
# print 'inserting records into ovc_household_members(ovc). . .'
# insert into reg_org_unit
org_unit_id = None
org_unit_name = None
pgsql_cursor.execute(
"SELECT id, org_unit_id_vis, org_unit_name FROM reg_org_unit WHERE org_unit_name='" + row['CBOName'] + "'")
if pgsql_cursor.rowcount > 0:
for r in pgsql_cursor:
org_unit_id = r[0]
org_unit_name = r[2]
else:
org_unit_id_vis = 'U000000'
org_unit_name = row['CBOName']
org_unit_type_id = 'TNCB'
date_operational = None
date_closed = None
handle_ovc = True
parent_org_unit_id = 1
created_by_id = 5
org_unit_name = row['CBOName']
pgsql_cursor.execute("INSERT INTO reg_org_unit(org_unit_id_vis, org_unit_name, org_unit_type_id, date_operational, date_closed, handle_ovc, is_void, parent_org_unit_id, created_at, created_by_id) VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s) RETURNING id;",
(org_unit_id_vis, org_unit_name, org_unit_type_id, date_operational, date_closed, handle_ovc, is_void, parent_org_unit_id, created_at, created_by_id))
# conn2.commit()
org_unit_pk = pgsql_cursor.fetchone()[0]
org_unit_name = row['CBOName']
# CBONames.append(org_unit_name)
# print 'inserting records into reg_org_unit . . .'
# insert into reg_org_units_geo
date_linked = created_at
date_delinked = None
fields = translator(7, row['County'])
area_id = fields['area_id']
org_unit_id = org_unit_pk
pgsql_cursor.execute("INSERT INTO reg_org_units_geo(date_linked, date_delinked, area_id, org_unit_id, is_void) VALUES(%s, %s, %s, %s, %s) RETURNING id;",
(date_linked, date_delinked, area_id, org_unit_id, is_void))
# conn2.commit()
# print 'inserting records into reg_org_units_geo . . .'
# insert into ovc_registration
registration_date = row['ClientDateofRegistration']
has_bcert = True if int(row['ClientBirthCert']) == 0 else False
is_disabled = True if row['ClientIsDisabled'] != None else False
hiv_status = None
if int(row['ClientHivStatus'])==1:
hiv_status = 'HSTP'
elif int(row['ClientHivStatus'])==2:
hiv_status = 'HSTN'
elif int(row['ClientHivStatus'])==3:
hiv_status = 'HSKN'
else:
hiv_status = 'XXXX'
school_level = None
if int(row['ClientSchoolLevel'])==1:
school_level = 'SLEC'
elif int(row['ClientSchoolLevel'])==2:
school_level = 'SLPR'
elif int(row['ClientSchoolLevel'])==3:
school_level = 'SLSE'
elif int(row['ClientSchoolLevel'])==4:
school_level = 'SLTV'
elif int(row['ClientSchoolLevel'])==5:
school_level = 'SLNS'
else:
school_level = 'XXXX'
immunization_status = None
if int(row['ClientImmunization'])==1:
immunization_status = 'IMFI'
elif int(row['ClientImmunization'])==2:
immunization_status = 'IMNC'
elif int(row['ClientImmunization'])==3:
immunization_status = 'IMNI'
elif int(row['ClientImmunization'])==4:
immunization_status = 'IMKN'
else:
immunization_status = 'XXXX'
org_unique_id = org_unit_id
exit_date = row['ClientDateofExit']
caretaker_id = row['ClientHouseHoldheadID']
child_cbo_id = org_unit_id
child_chv_id = 1
hash_key = uuid.uuid4()
psycopg2.extras.register_uuid()
pgsql_cursor.execute("INSERT INTO ovc_registration(id, registration_date, has_bcert, is_disabled, hiv_status, school_level, immunization_status, org_unique_id, exit_date, created_at, is_void, caretaker_id, child_cbo_id, child_chv_id, person_id) VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
(hash_key, registration_date, has_bcert, is_disabled, hiv_status, school_level, immunization_status, org_unique_id, exit_date, created_at, is_void, parent_pk, child_cbo_id, child_chv_id, person_pk))
# conn2.commit()
# print 'inserting records into ovc_registration . . .'
OVCID_MATRIX.append({
'person_pk': person_pk,
'OVCID': OVCID,
'household_pk': household_pk
})
### --------------- MIGRATE CSI DATA ------------------- ###
for data in OVCID_MATRIX:
person_pk = data['person_pk']
OVCID = data['OVCID']
mssql_cursor.execute("SELECT NeedsAssessmentMain.NeedsAssessmentID AS NeedsAssessmentID, NeedsAssessmentMain.DateofAssessment AS DateofAssessment, NeedsAssessmentMain.Is_InitialAssessment AS Is_InitialAssessment FROM NeedsAssessmentMain WHERE NeedsAssessmentMain.OVCID='" + OVCID + "'")
for row in mssql_cursor.fetchall():
OVCCareEvents_CSI.append({
'person_pk': person_pk,
'needs_assessment_pk': row['NeedsAssessmentID'],
'date_of_assessment': row['DateofAssessment'],
'is_initial': row['Is_InitialAssessment']})
cscnt, tcscnt=0, len(OVCCareEvents_CSI)
for OVCCareEvents in OVCCareEvents_CSI:
cscnt+=1
print 'events record number ', cscnt, '/', tcscnt
NeedsAssessmentPK = OVCCareEvents['needs_assessment_pk']
# insert into ovc_care_events
hash_key = uuid.uuid4()
hash_key2 = uuid.uuid4()
psycopg2.extras.register_uuid()
event_type_id = 'FCSI'
event_counter = 0 if OVCCareEvents['is_initial'] == True else 1
event_score = 0
date_of_event = OVCCareEvents['date_of_assessment']
created_by = 1
timestamp_created = datetime.datetime.now()
is_void = False
sync_id = None
# app_user = models.ForeignKey(AppUser, default=1)
person = OVCCareEvents['person_pk']
house_hold = None
pgsql_cursor.execute("INSERT INTO ovc_care_events(event, event_type_id, event_counter, event_score, date_of_event, is_void, person_id, house_hold_id, timestamp_created, created_by, sync_id) VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) RETURNING event;",
(hash_key, event_type_id, event_counter, event_score, date_of_event, is_void, person, house_hold, timestamp_created, created_by, hash_key2))
# conn2.commit()
event_pk = pgsql_cursor.fetchone()[0]
# print 'inserting records into ovc_care_events(CSI) . . .'
# TAB1
mssql_cursor.execute("SELECT NeedsAssessmentMain.NeedsAssessmentID AS NeedsAssessmentID, NeedsAssessmentMain.OVCID AS OVCID, NeedsAssessmentMain.DateofAssessment AS DateofAssessment, " +
"NeedsAssessmentMain.Is_InitialAssessment AS Is_InitialAssessment, NeedsAssessment.DomainID, NeedsAssessment.SubdomainID, Domain.Domain AS Domain, Goal.Goal AS Goal, " +
"SubDomain.Subdomain AS SubDomain FROM NeedsAssessmentMain INNER JOIN " +
"NeedsAssessment ON NeedsAssessmentMain.NeedsAssessmentID = NeedsAssessment.NeedsAssessmentID INNER JOIN " +
"Domain ON NeedsAssessment.DomainID = Domain.DomainID INNER JOIN " +
"Goal ON NeedsAssessment.GoalID = Goal.GoalID INNER JOIN " +
"SubDomain ON NeedsAssessment.SubdomainID = SubDomain.SubdomainID " +
"WHERE NeedsAssessmentMain.NeedsAssessmentID='" + NeedsAssessmentPK + "'")
for row in mssql_cursor:
# insert into ovc_care_eav
hash_key = uuid.uuid4()
hash_key2 = uuid.uuid4()
psycopg2.extras.register_uuid()
eav_id = hash_key
entity = translator(1, row['SubDomain'])
attribute = 'FCSI'
value = translator(2, row['Goal'])
value_for = None
event = event_pk
is_void = False
sync_id = hash_key2
pgsql_cursor.execute("INSERT INTO ovc_care_eav(eav_id, entity, attribute, value, value_for, event_id, is_void, sync_id) VALUES(%s, %s, %s, %s, %s, %s, %s, %s) RETURNING eav_id;",
(eav_id, entity, attribute, value, value_for, event, is_void, sync_id))
# conn2.commit()
# print 'inserting records into ovc_care_eav(CSI) . . .'
# TAB2
mssql_cursor.execute("SELECT NeedsAssessmentMain.NeedsAssessmentID, NeedsAssessmentMain.OVCID, NeedsAssessmentMain.DateofAssessment," +
"NeedsAssessmentMain.Is_InitialAssessment, PriorityNeeds.PriorityID," +
"ServiceStatus.ServiceStatus AS ServiceStatus, ServicesProvided.Domainid, ServicesProvided.Providerid, Provider.Provider AS ServiceProvider " +
"FROM NeedsAssessmentMain INNER JOIN " +
"PriorityNeeds ON NeedsAssessmentMain.NeedsAssessmentID = PriorityNeeds.NeedsAssessmentID INNER JOIN " +
"ServiceStatus ON PriorityNeeds.PriorityID = ServiceStatus.SSID INNER JOIN " +
"ServicesProvided ON NeedsAssessmentMain.NeedsAssessmentID = ServicesProvided.NeedsAssessmentId INNER JOIN " +
"Provider ON ServicesProvided.Providerid = Provider.ProviderID " +
"WHERE NeedsAssessmentMain.NeedsAssessmentID='" + NeedsAssessmentPK + "'")
for row in mssql_cursor:
hash_key = uuid.uuid4()
hash_key2 = uuid.uuid4()
hash_key3 = uuid.uuid4()
psycopg2.extras.register_uuid()
priority_id = hash_key
fields = translator(0, row['ServiceStatus'])
domain = fields['domain']
service = fields['service']
event = event_pk
service_grouping_id = hash_key3
is_void = False
sync_id = hash_key2
pgsql_cursor.execute("INSERT INTO ovc_care_priority(priority_id, domain, service, service_grouping_id, event_id, is_void, sync_id) VALUES(%s, %s, %s, %s, %s, %s, %s) RETURNING priority_id;",
(priority_id, domain, service, service_grouping_id, event, is_void, sync_id))
# conn2.commit()
# print 'inserting records into ovc_care_priority(CSI) . . .'
# TAB3
mssql_cursor.execute("SELECT NeedsAssessmentMain.NeedsAssessmentID, NeedsAssessmentMain.OVCID, NeedsAssessmentMain.DateofAssessment," +
"NeedsAssessmentMain.Is_InitialAssessment, ServiceStatus.ServiceStatus AS ServiceStatus," +
"ServicesProvided.Domainid, Provider.Provider AS ServiceProvider " +
"FROM NeedsAssessmentMain INNER JOIN " +
"ServicesProvided ON NeedsAssessmentMain.NeedsAssessmentID = ServicesProvided.NeedsAssessmentId INNER JOIN " +
"ServiceStatus ON ServicesProvided.SSID = ServiceStatus.SSID INNER JOIN " +
"Provider ON ServicesProvided.Providerid = Provider.ProviderID " +
"WHERE NeedsAssessmentMain.NeedsAssessmentID='" + NeedsAssessmentPK + "'")
for row in mssql_cursor:
hash_key = uuid.uuid4()
hash_key2 = uuid.uuid4()
hash_key3 = uuid.uuid4()
psycopg2.extras.register_uuid()
service_id = hash_key
fields = translator(0, row['ServiceStatus'])
service_provided = fields['service']
# service_provider = translator(6, row['ServiceProvider'])
service_provider = 'PUSG'
place_of_service = org_unit_name
date_of_encounter_event = None
event = event_pk
service_grouping_id = hash_key2
is_void = False
sync_id = hash_key3
pgsql_cursor.execute("INSERT INTO ovc_care_services(service_id, service_provided, service_provider, place_of_service, date_of_encounter_event, service_grouping_id, event_id, is_void, sync_id) VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s) RETURNING service_id;",
(service_id, service_provided, service_provider, place_of_service, date_of_encounter_event, service_grouping_id, event, is_void, sync_id))
# conn2.commit()
# print 'inserting records into ovc_care_services(CSI) . . .'
### --------------- MIGRATE F1A DATA ------------------- ###
for data in OVCID_MATRIX:
person_pk = data['person_pk']
OVCID = data['OVCID']
mssql_cursor.execute(
"SELECT SSVID, DateofVisit, VisitType FROM StatusAndServiceVisit WHERE OVCID='" + OVCID + "'")
for row in mssql_cursor.fetchall():
OVCCareEvents_F1A.append({
'person_pk': person_pk,
'service_pk': row['SSVID'],
'date_of_visit': row['DateofVisit'],
'visit_type': row['VisitType']})
crcnt, tcrcnt=0, len(OVCCareEvents_F1A)
for OVCCareEvents in OVCCareEvents_F1A:
crcnt+=1
print 'F1A record number ', crcnt, '/', tcrcnt
ServicePK = OVCCareEvents['service_pk']
# insert into ovc_care_events
hash_key = uuid.uuid4()
hash_key2 = uuid.uuid4()
psycopg2.extras.register_uuid()
event_type_id = 'FSAM'
event_counter = 0
event_score = 0
date_of_event = OVCCareEvents['date_of_visit']
created_by = 1
timestamp_created = datetime.datetime.now()
is_void = False
sync_id = None
# app_user = models.ForeignKey(AppUser, default=1)
person = OVCCareEvents['person_pk']
house_hold = None
pgsql_cursor.execute("INSERT INTO ovc_care_events(event, event_type_id, event_counter, event_score, date_of_event, is_void, person_id, house_hold_id, timestamp_created, created_by, sync_id) VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) RETURNING event;",
(hash_key, event_type_id, event_counter, event_score, date_of_event, is_void, person, house_hold, timestamp_created, created_by, hash_key2))
# conn2.commit()
event_pk = pgsql_cursor.fetchone()[0]
# print 'inserting records into ovc_care_events(F1A) . . .'
# TAB 1
mssql_cursor.execute("SELECT StatusAndServiceVisit.SSVID, StatusAndServiceVisit.OVCID, StatusAndServiceVisit.DateofVisit, StatusAndServiceVisit.VisitType, StatusAndServiceMonitoring_Assessment.SSID," +
"ServiceStatus.ServiceStatus AS ServiceStatus, ServiceStatus.CSID, CoreServices.CoreService AS CoreService, Domain.Domain FROM StatusAndServiceVisit INNER JOIN " +
"StatusAndServiceMonitoring_Assessment ON StatusAndServiceVisit.SSVID = StatusAndServiceMonitoring_Assessment.SSVID INNER JOIN " +
"ServiceStatus ON StatusAndServiceMonitoring_Assessment.SSID = ServiceStatus.SSID INNER JOIN " +
"CoreServices ON ServiceStatus.CSID = CoreServices.CSID INNER JOIN " +
"Domain ON CoreServices.Domainid = Domain.DomainID " +
"WHERE (StatusAndServiceVisit.VisitType = 'monitor') AND StatusAndServiceVisit.SSVID ='" + ServicePK + "'")
for row in mssql_cursor:
hash_key = uuid.uuid4()
hash_key2 = uuid.uuid4()
hash_key3 = uuid.uuid4()
psycopg2.extras.register_uuid()
assessment_id = hash_key
fields = translator(3, row['ServiceStatus'])
domain = fields['domain']
service = fields['service']
fields = translator(3, row['CoreService'])
service_status = fields['service']
event = event_pk
service_grouping_id = hash_key2
is_void = True
sync_id = hash_key3
pgsql_cursor.execute("INSERT INTO ovc_care_assessment(assessment_id, domain, service, service_status, service_grouping_id, is_void, sync_id, event_id) VALUES(%s, %s, %s, %s, %s, %s, %s, %s) RETURNING assessment_id;",
(assessment_id, domain, service, service_status, service_grouping_id, is_void, sync_id, event))
# conn2.commit()
# print 'inserting records into ovc_care_assessment(F1A) . . .'
# TAB2
mssql_cursor.execute("SELECT StatusAndServiceVisit.SSVID, StatusAndServiceVisit.OVCID, StatusAndServiceVisit.DateofVisit," +
"OVCVisitsCriticalEvents.CriticalEventID, CriticalEvents.EventName AS EventName FROM StatusAndServiceVisit INNER JOIN " +
"OVCVisitsCriticalEvents ON StatusAndServiceVisit.SSVID = OVCVisitsCriticalEvents.SSVID INNER JOIN " +
"CriticalEvents ON OVCVisitsCriticalEvents.CriticalEventID = CriticalEvents.CriticalEventsID " +
"WHERE StatusAndServiceVisit.SSVID ='" + ServicePK + "'")
for row in mssql_cursor:
# insert into ovc_care_eav