meta-edc 0.3.7__py3-none-any.whl → 0.3.50__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (411) hide show
  1. meta_ae/action_items.py +2 -2
  2. meta_ae/migrations/0017_auto_20221130_2257.py +12 -7
  3. meta_ae/tests/holidays.csv +1 -1
  4. meta_analytics/README.rst +17 -0
  5. meta_analytics/dataframes/__init__.py +19 -0
  6. meta_analytics/dataframes/constants.py +33 -0
  7. meta_analytics/dataframes/enrolled/__init__.py +1 -0
  8. meta_analytics/dataframes/enrolled/get_glucose_df.py +122 -0
  9. meta_analytics/dataframes/get_eos_df.py +26 -0
  10. meta_analytics/dataframes/get_last_imp_visits_df.py +101 -0
  11. meta_analytics/dataframes/glucose_endpoints/__init__.py +2 -0
  12. meta_analytics/dataframes/glucose_endpoints/endpoint_by_date.py +183 -0
  13. meta_analytics/dataframes/glucose_endpoints/glucose_endpoints_by_date.py +531 -0
  14. meta_analytics/dataframes/screening/__init__.py +2 -0
  15. meta_analytics/dataframes/screening/get_glucose_tested_only_df.py +20 -0
  16. meta_analytics/dataframes/screening/get_screening_df.py +163 -0
  17. meta_analytics/dataframes/utils.py +65 -0
  18. meta_analytics/get_tables.py +81 -0
  19. meta_analytics/tables/__init__.py +2 -0
  20. meta_analytics/tables/eligible.py +106 -0
  21. meta_analytics/tables/enrolled/__init__.py +0 -0
  22. meta_analytics/tables/enrolled/glucose.py +28 -0
  23. meta_analytics/tables/has_dm.py +61 -0
  24. meta_analytics/tests/__init__.py +0 -0
  25. meta_analytics/tests/test_endpoints_by_date.py +94 -0
  26. meta_auth/auth_objects.py +32 -3
  27. meta_auth/auths.py +18 -3
  28. meta_consent/action_items.py +18 -1
  29. meta_consent/admin/__init__.py +1 -0
  30. meta_consent/admin/subject_consent_v1_ext_admin.py +45 -0
  31. meta_consent/baker_recipes.py +5 -4
  32. meta_consent/consents.py +21 -2
  33. meta_consent/constants.py +1 -0
  34. meta_consent/forms/__init__.py +1 -0
  35. meta_consent/forms/subject_consent_v1_ext_form.py +16 -0
  36. meta_consent/locale/lg/LC_MESSAGES/django.po +69 -0
  37. meta_consent/locale/sw/LC_MESSAGES/django.po +12 -12
  38. meta_consent/migrations/0025_alter_historicalsubjectconsent_first_name_and_more.py +151 -0
  39. meta_consent/migrations/0026_historicalsubjectconsentv1ext_subjectconsentv1ext.py +544 -0
  40. meta_consent/migrations/0027_auto_20250111_0344.py +30 -0
  41. meta_consent/models/__init__.py +1 -0
  42. meta_consent/models/signals.py +34 -13
  43. meta_consent/models/subject_consent_v1.py +1 -3
  44. meta_consent/models/subject_consent_v1_ext.py +29 -0
  45. meta_consent/tests/holidays.csv +1 -1
  46. meta_consent/tests/tests/test_form_validators.py +1 -1
  47. meta_dashboard/locale/lg/LC_MESSAGES/django.po +30 -0
  48. meta_dashboard/locale/sw/LC_MESSAGES/django.po +11 -2
  49. meta_dashboard/navbars.py +3 -1
  50. meta_dashboard/templates/meta_dashboard/bootstrap3/buttons/eligibility_button.html +1 -1
  51. meta_dashboard/templates/meta_dashboard/bootstrap3/buttons/screening_button.html +1 -1
  52. meta_dashboard/templates/meta_dashboard/bootstrap3/screening/listboard.html +4 -4
  53. meta_dashboard/templates/meta_dashboard/bootstrap3/subject/dashboard/sidebar.html +24 -0
  54. meta_dashboard/templates/meta_dashboard/bootstrap3/subject/dashboard.html +3 -0
  55. meta_dashboard/templates/meta_dashboard/bootstrap3/subject/listboard.html +1 -2
  56. meta_dashboard/templatetags/meta_dashboard_extras.py +1 -1
  57. meta_dashboard/tests/holidays.csv +1 -1
  58. meta_dashboard/tests/urls.py +0 -1
  59. meta_dashboard/view_utils/__init__.py +6 -0
  60. meta_dashboard/view_utils/subject_screening_button.py +2 -2
  61. meta_dashboard/views/subject/dashboard/dashboard_view.py +38 -0
  62. meta_edc/__init__.py +7 -0
  63. meta_edc/celery.py +4 -13
  64. meta_edc/celery_live.py +18 -0
  65. meta_edc/celery_uat.py +24 -0
  66. meta_edc/management/commands/update_forms_reference.py +6 -2
  67. meta_edc/migrations/__init__.py +0 -0
  68. meta_edc/navbars.py +2 -1
  69. meta_edc/settings/debug.py +17 -9
  70. meta_edc/settings/defaults.py +82 -60
  71. meta_edc/settings/live.py +1 -9
  72. meta_edc/settings/uat.py +1 -14
  73. meta_edc/templates/meta_edc/bootstrap3/home.html +13 -7
  74. meta_edc/tests/tests/test_endpoints.py +22 -19
  75. meta_edc/urls.py +5 -2
  76. meta_edc/wsgi.py +1 -1
  77. meta_edc/wsgi_live.py +1 -1
  78. meta_edc/wsgi_uat.py +1 -1
  79. meta_edc-0.3.50.dist-info/AUTHORS +0 -0
  80. meta_edc-0.3.50.dist-info/METADATA +766 -0
  81. {meta_edc-0.3.7.dist-info → meta_edc-0.3.50.dist-info}/RECORD +400 -157
  82. {meta_edc-0.3.7.dist-info → meta_edc-0.3.50.dist-info}/WHEEL +1 -1
  83. {meta_edc-0.3.7.dist-info → meta_edc-0.3.50.dist-info}/top_level.txt +1 -0
  84. meta_pharmacy/admin/__init__.py +2 -0
  85. meta_pharmacy/admin/rx_admin.py +75 -0
  86. meta_pharmacy/admin/substitutions_admin.py +67 -0
  87. meta_pharmacy/admin_site.py +9 -0
  88. meta_pharmacy/apps.py +5 -0
  89. meta_pharmacy/constants.py +10 -0
  90. meta_pharmacy/forms/__init__.py +2 -0
  91. meta_pharmacy/forms/rx_form.py +16 -0
  92. meta_pharmacy/forms/substitutions_form.py +54 -0
  93. meta_pharmacy/label_configs.py +30 -0
  94. meta_pharmacy/labels/__init__.py +5 -0
  95. meta_pharmacy/labels/draw_label_for_subject_with_barcode.py +62 -0
  96. meta_pharmacy/labels/draw_label_for_subject_with_code128.py +14 -0
  97. meta_pharmacy/labels/draw_label_with_test_data.py +26 -0
  98. meta_pharmacy/labels/label_data.py +14 -0
  99. meta_pharmacy/labels/print_sheets.py +97 -0
  100. meta_pharmacy/list_data.py +8 -0
  101. meta_pharmacy/management/__init__.py +0 -0
  102. meta_pharmacy/management/commands/__init__.py +0 -0
  103. meta_pharmacy/management/commands/update_initial_pharmacy_data.py +10 -0
  104. meta_pharmacy/migrations/0002_initial.py +695 -0
  105. meta_pharmacy/migrations/0003_auto_20240909_2335.py +64 -0
  106. meta_pharmacy/migrations/0004_alter_historicalsubstitutions_report_datetime_and_more.py +23 -0
  107. meta_pharmacy/migrations/0005_auto_20240911_0352.py +17 -0
  108. meta_pharmacy/migrations/0006_lotnumber_label.py +289 -0
  109. meta_pharmacy/migrations/0007_lotnumber_medication.py +24 -0
  110. meta_pharmacy/migrations/0008_remove_lotnumber_medication_and_more.py +390 -0
  111. meta_pharmacy/migrations/0009_remove_historicalrx_slug.py +17 -0
  112. meta_pharmacy/models/__init__.py +3 -0
  113. meta_pharmacy/models/label_data.py +38 -0
  114. meta_pharmacy/models/rx.py +18 -0
  115. meta_pharmacy/models/rx_label.py +39 -0
  116. meta_pharmacy/models/substitutions.py +88 -0
  117. meta_pharmacy/urls.py +8 -0
  118. meta_pharmacy/utils/__init__.py +1 -0
  119. meta_pharmacy/utils/update_initial_pharmacy_data.py +146 -0
  120. meta_prn/action_items.py +52 -2
  121. meta_prn/admin/__init__.py +3 -0
  122. meta_prn/admin/dm_referral_admin.py +49 -0
  123. meta_prn/admin/offschedule_dm_referral_admin.py +47 -0
  124. meta_prn/admin/onschedule_dm_referral_admin.py +39 -0
  125. meta_prn/admin/pregnancy_notification_admin.py +6 -2
  126. meta_prn/baker_recipes.py +8 -1
  127. meta_prn/choices.py +2 -1
  128. meta_prn/constants.py +4 -1
  129. meta_prn/forms/__init__.py +2 -0
  130. meta_prn/forms/dm_referral_form.py +40 -0
  131. meta_prn/forms/offschedule_dm_referral_form.py +35 -0
  132. meta_prn/forms/offschedule_form.py +6 -0
  133. meta_prn/migrations/0034_auto_20220630_1110.py +3 -3
  134. meta_prn/migrations/0035_auto_20220630_1140.py +59 -56
  135. meta_prn/migrations/0057_historicalonscheduledmreferral_and_more.py +1156 -0
  136. meta_prn/migrations/0058_dmreferral_referral_note_and_more.py +29 -0
  137. meta_prn/migrations/0059_alter_historicaloffstudymedication_reason_and_more.py +53 -0
  138. meta_prn/models/__init__.py +13 -2
  139. meta_prn/models/dm_referral.py +39 -0
  140. meta_prn/models/offschedule.py +15 -1
  141. meta_prn/models/onschedule.py +6 -0
  142. meta_prn/models/signals.py +41 -1
  143. meta_prn/tests/tests/test_dm_referral.py +203 -0
  144. meta_reports/__init__.py +1 -0
  145. meta_reports/admin/__init__.py +15 -0
  146. meta_reports/admin/dbviews/__init__.py +14 -0
  147. meta_reports/admin/dbviews/glucose_summary_admin.py +116 -0
  148. meta_reports/admin/dbviews/imp_substitutions_admin.py +101 -0
  149. meta_reports/admin/dbviews/missing_screening_ogtt_admin/__init__.py +2 -0
  150. meta_reports/admin/dbviews/missing_screening_ogtt_admin/note_model_admin.py +53 -0
  151. meta_reports/admin/dbviews/missing_screening_ogtt_admin/unmanaged_model_admin.py +84 -0
  152. meta_reports/admin/dbviews/on_study_missing_lab_values_admin/__init__.py +1 -0
  153. meta_reports/admin/dbviews/on_study_missing_lab_values_admin/unmanaged_model_admin.py +13 -0
  154. meta_reports/admin/dbviews/on_study_missing_values_admin/__init__.py +1 -0
  155. meta_reports/admin/dbviews/on_study_missing_values_admin/unmanaged_model_admin.py +13 -0
  156. meta_reports/admin/dbviews/patient_history_missing_baseline_cd4_admin.py +58 -0
  157. meta_reports/admin/dbviews/unattended_three_in_row2_admin.py +47 -0
  158. meta_reports/admin/dbviews/unattended_three_in_row_admin.py +35 -0
  159. meta_reports/admin/dbviews/unattended_two_in_row_admin.py +34 -0
  160. meta_reports/admin/endpoints_admin.py +14 -0
  161. meta_reports/admin/endpoints_all_admin.py +13 -0
  162. meta_reports/admin/last_imp_refill_admin.py +181 -0
  163. meta_reports/admin/list_filters.py +30 -0
  164. meta_reports/admin/modeladmin_mixins.py +112 -0
  165. meta_reports/admin_site.py +5 -0
  166. meta_reports/apps.py +1 -16
  167. meta_reports/forms/__init__.py +1 -0
  168. meta_reports/forms/missing_ogtt_note_form.py +33 -0
  169. meta_reports/management/__init__.py +0 -0
  170. meta_reports/management/commands/__init__.py +0 -0
  171. meta_reports/management/commands/generate_endpoints.py +13 -0
  172. meta_reports/migrations/0001_initial.py +87 -0
  173. meta_reports/migrations/0002_patienthistorymissingbaselinecd4_and_more.py +64 -0
  174. meta_reports/migrations/0003_auto_20240618_0505.py +12 -0
  175. meta_reports/migrations/0004_alter_patienthistorymissingbaselinecd4_table.py +17 -0
  176. meta_reports/migrations/0005_endpoints.py +47 -0
  177. meta_reports/migrations/0006_endpoints_baseline_datetime.py +18 -0
  178. meta_reports/migrations/0007_alter_endpoints_endpoint_label_and_more.py +43 -0
  179. meta_reports/migrations/0008_alter_endpoints_endpoint_label.py +18 -0
  180. meta_reports/migrations/0009_alter_endpoints_options.py +21 -0
  181. meta_reports/migrations/0010_alter_patienthistorymissingbaselinecd4_options_and_more.py +49 -0
  182. meta_reports/migrations/0011_auto_20240813_0156.py +54 -0
  183. meta_reports/migrations/0012_auto_20240813_1516.py +48 -0
  184. meta_reports/migrations/0013_auto_20240813_1516.py +48 -0
  185. meta_reports/migrations/0014_auto_20240813_1517.py +48 -0
  186. meta_reports/migrations/0015_alter_endpoints_site.py +22 -0
  187. meta_reports/migrations/0016_missingscreeningogtt.py +47 -0
  188. meta_reports/migrations/0017_auto_20240819_1711.py +166 -0
  189. meta_reports/migrations/0018_auto_20240819_1713.py +54 -0
  190. meta_reports/migrations/0019_auto_20240819_1721.py +54 -0
  191. meta_reports/migrations/0020_auto_20240819_1811.py +54 -0
  192. meta_reports/migrations/0021_auto_20240819_1817.py +54 -0
  193. meta_reports/migrations/0022_auto_20240819_1832.py +54 -0
  194. meta_reports/migrations/0023_endpoints_meta_report_subject_a56b22_idx.py +20 -0
  195. meta_reports/migrations/0024_glucosesummary.py +38 -0
  196. meta_reports/migrations/0025_auto_20240822_0115.py +87 -0
  197. meta_reports/migrations/0026_auto_20240822_0120.py +54 -0
  198. meta_reports/migrations/0027_auto_20240822_0140.py +54 -0
  199. meta_reports/migrations/0028_alter_glucosesummary_options.py +22 -0
  200. meta_reports/migrations/0029_auto_20240822_0149.py +54 -0
  201. meta_reports/migrations/0030_auto_20240822_1637.py +54 -0
  202. meta_reports/migrations/0031_endpointsproxy.py +25 -0
  203. meta_reports/migrations/0032_alter_endpointsproxy_options.py +21 -0
  204. meta_reports/migrations/0033_auto_20240823_0012.py +54 -0
  205. meta_reports/migrations/0034_auto_20240823_1642.py +54 -0
  206. meta_reports/migrations/0035_historicalmissingogttnote_missingogttnote.py +457 -0
  207. meta_reports/migrations/0036_historicalmissingogttnote_fasting_and_more.py +86 -0
  208. meta_reports/migrations/0037_historicalmissingogttnote_result_status_and_more.py +51 -0
  209. meta_reports/migrations/0038_alter_historicalmissingogttnote_fasting_and_more.py +33 -0
  210. meta_reports/migrations/0039_onstudymissingvalues.py +44 -0
  211. meta_reports/migrations/0040_auto_20240824_0412.py +282 -0
  212. meta_reports/migrations/0041_auto_20240828_2229.py +14 -0
  213. meta_reports/migrations/0042_onstudymissinglabvalues.py +43 -0
  214. meta_reports/migrations/0043_auto_20240828_2309.py +88 -0
  215. meta_reports/migrations/0044_auto_20240828_2323.py +93 -0
  216. meta_reports/migrations/0045_auto_20240829_0248.py +54 -0
  217. meta_reports/migrations/0046_auto_20240829_0250.py +54 -0
  218. meta_reports/migrations/0047_impsubstitutions.py +56 -0
  219. meta_reports/migrations/0048_auto_20240909_2338.py +48 -0
  220. meta_reports/migrations/0049_auto_20240911_0327.py +54 -0
  221. meta_reports/migrations/0050_alter_endpoints_created.py +19 -0
  222. meta_reports/migrations/0051_remove_endpoints_baseline_datetime_and_more.py +40 -0
  223. meta_reports/migrations/0052_lastimpvisit.py +57 -0
  224. meta_reports/migrations/0053_rename_lastimpvisit_lastimprefill_and_more.py +31 -0
  225. meta_reports/models/__init__.py +16 -0
  226. meta_reports/models/dbviews/README +14 -0
  227. meta_reports/models/dbviews/__init__.py +9 -0
  228. meta_reports/models/dbviews/glucose_summary/__init__.py +2 -0
  229. meta_reports/models/dbviews/glucose_summary/unmanaged_model.py +35 -0
  230. meta_reports/models/dbviews/glucose_summary/view_definition.py +28 -0
  231. meta_reports/models/dbviews/imp_substitutions/__init__.py +1 -0
  232. meta_reports/models/dbviews/imp_substitutions/unmanaged_model.py +41 -0
  233. meta_reports/models/dbviews/imp_substitutions/view_definition.py +21 -0
  234. meta_reports/models/dbviews/missing_screening_ogtt/__init__.py +2 -0
  235. meta_reports/models/dbviews/missing_screening_ogtt/note_model.py +57 -0
  236. meta_reports/models/dbviews/missing_screening_ogtt/unmanaged_model.py +41 -0
  237. meta_reports/models/dbviews/missing_screening_ogtt/view_definition.py +20 -0
  238. meta_reports/models/dbviews/on_study_missing_lab_values/__init__.py +1 -0
  239. meta_reports/models/dbviews/on_study_missing_lab_values/qa_cases.py +53 -0
  240. meta_reports/models/dbviews/on_study_missing_lab_values/unmanged_model.py +20 -0
  241. meta_reports/models/dbviews/on_study_missing_lab_values/view_definition.py +17 -0
  242. meta_reports/models/dbviews/on_study_missing_values/__init__.py +1 -0
  243. meta_reports/models/dbviews/on_study_missing_values/qa_cases.py +54 -0
  244. meta_reports/models/dbviews/on_study_missing_values/unmanged_model.py +20 -0
  245. meta_reports/models/dbviews/on_study_missing_values/view_definition.py +17 -0
  246. meta_reports/models/dbviews/patient_history_missing_baseline_cd4/__init__.py +1 -0
  247. meta_reports/models/dbviews/patient_history_missing_baseline_cd4/unmanaged_model.py +31 -0
  248. meta_reports/models/dbviews/patient_history_missing_baseline_cd4/view_definition.py +21 -0
  249. meta_reports/models/dbviews/unattended_three_in_row/__init__.py +1 -0
  250. meta_reports/models/dbviews/unattended_three_in_row/unmanaged_model.py +29 -0
  251. meta_reports/models/dbviews/unattended_three_in_row/view_definition.py +31 -0
  252. meta_reports/models/dbviews/unattended_three_in_row2/__init__.py +1 -0
  253. meta_reports/models/dbviews/unattended_three_in_row2/unmanaged_model.py +29 -0
  254. meta_reports/models/dbviews/unattended_three_in_row2/view_definition.py +50 -0
  255. meta_reports/models/dbviews/unattended_two_in_row/__init__.py +1 -0
  256. meta_reports/models/dbviews/unattended_two_in_row/unmanaged_model.py +27 -0
  257. meta_reports/models/dbviews/unattended_two_in_row/view_definition.py +30 -0
  258. meta_reports/models/endpoints.py +31 -0
  259. meta_reports/models/endpoints_proxy.py +11 -0
  260. meta_reports/models/last_imp_refill.py +34 -0
  261. meta_reports/tasks.py +12 -0
  262. meta_reports/templates/meta_reports/columns/subject_identifier_column.html +1 -0
  263. meta_reports/templates/meta_reports/endpoints_all_change_list_note.html +12 -0
  264. meta_reports/templates/meta_reports/endpoints_change_list_note.html +12 -0
  265. meta_reports/tests/test_sql_gen.py +5 -0
  266. meta_reports/urls.py +8 -0
  267. meta_reports/utils.py +0 -0
  268. meta_screening/admin/subject_screening_admin.py +1 -0
  269. meta_screening/form_validators/screening_part_two.py +1 -1
  270. meta_screening/migrations/0062_remove_icpreferral_site_and_more.py +27 -0
  271. meta_screening/migrations/0063_alter_historicalscreeningpartone_fasting_duration_str_and_more.py +184 -0
  272. meta_screening/migrations/0064_remove_historicalscreeningpartone_fasting_duration_minutes_and_more.py +126 -0
  273. meta_screening/migrations/0065_auto_20240516_0352.py +31 -0
  274. meta_screening/migrations/0066_alter_historicalscreeningpartone_fasting_duration_delta_and_more.py +103 -0
  275. meta_screening/migrations/0067_alter_historicalscreeningpartone_report_datetime_and_more.py +84 -0
  276. meta_screening/models/__init__.py +1 -1
  277. meta_screening/tests/holidays.csv +1 -1
  278. meta_screening/tests/meta_test_case_mixin.py +17 -2
  279. meta_screening/tests/options.py +3 -3
  280. meta_sites/__init__.py +0 -1
  281. meta_sites/sites.py +8 -7
  282. meta_sites/tests/test_sites.py +1 -1
  283. meta_subject/action_items.py +25 -2
  284. meta_subject/admin/__init__.py +2 -1
  285. meta_subject/admin/birth_outcome_admin.py +4 -3
  286. meta_subject/admin/blood_results/__init__.py +1 -1
  287. meta_subject/admin/blood_results/{blood_results_lipid_admin.py → blood_results_lipids_admin.py} +7 -7
  288. meta_subject/admin/delivery_admin.py +0 -1
  289. meta_subject/admin/diabetes/__init__.py +2 -0
  290. meta_subject/admin/diabetes/dm_endpoint_admin.py +35 -0
  291. meta_subject/admin/{dm_referral_followup_admin.py → diabetes/dm_followup_admin.py} +15 -8
  292. meta_subject/admin/glucose_admin.py +1 -1
  293. meta_subject/admin/glucose_fbg_admin.py +38 -8
  294. meta_subject/admin/other_arv_regimens_admin.py +2 -0
  295. meta_subject/admin/study_medication_admin.py +10 -0
  296. meta_subject/admin/subject_visit_admin.py +4 -1
  297. meta_subject/baker_recipes.py +6 -0
  298. meta_subject/choices.py +8 -0
  299. meta_subject/constants.py +2 -1
  300. meta_subject/form_validators/__init__.py +2 -1
  301. meta_subject/form_validators/dm_endpoint_form_validator.py +35 -0
  302. meta_subject/form_validators/{dm_referral_followup_form_validator.py → dm_followup_form_validator.py} +41 -2
  303. meta_subject/forms/__init__.py +2 -1
  304. meta_subject/forms/blood_results/__init__.py +1 -1
  305. meta_subject/forms/blood_results/{blood_results_lipid_form.py → blood_results_lipids_form.py} +5 -5
  306. meta_subject/forms/diabetes/__init__.py +2 -0
  307. meta_subject/forms/diabetes/dm_endpoint_form.py +13 -0
  308. meta_subject/forms/diabetes/dm_followup_form.py +25 -0
  309. meta_subject/forms/glucose_fbg_form.py +38 -16
  310. meta_subject/forms/study_medication_form.py +35 -0
  311. meta_subject/forms/subject_visit_form.py +16 -0
  312. meta_subject/locale/lg/LC_MESSAGES/django.po +470 -0
  313. meta_subject/locale/sw/LC_MESSAGES/django.po +191 -89
  314. meta_subject/metadata_rules/metadata_rules.py +21 -0
  315. meta_subject/metadata_rules/predicates.py +67 -8
  316. meta_subject/migrations/0107_auto_20220415_0043.py +28 -22
  317. meta_subject/migrations/0126_auto_20220719_2142.py +4 -4
  318. meta_subject/migrations/0131_auto_20220722_0411.py +28 -23
  319. meta_subject/migrations/0132_auto_20220722_1825.py +10 -6
  320. meta_subject/migrations/0135_auto_20220722_2212.py +39 -35
  321. meta_subject/migrations/0150_auto_20220914_0039.py +15 -11
  322. meta_subject/migrations/0181_dmreferralfollowup_action_identifier_and_more.py +143 -0
  323. meta_subject/migrations/0182_rename_dmreferralfollowup_dmfollowup_and_more.py +54 -0
  324. meta_subject/migrations/0183_alter_dmfollowup_on_dm_medications_and_more.py +31 -0
  325. meta_subject/migrations/0184_alter_glucose_options_and_more.py +31 -0
  326. meta_subject/migrations/0185_alter_bloodresultsins_fasting_duration_str_and_more.py +82 -0
  327. meta_subject/migrations/0186_healtheconomicsupdate_singleton_field_and_more.py +55 -0
  328. meta_subject/migrations/0187_dmdiagnosis_historicaldmdiagnosis_dmdxresult_and_more.py +451 -0
  329. meta_subject/migrations/0188_historicaldmdxresult_dmdxresult.py +403 -0
  330. meta_subject/migrations/0189_alter_dmdxresult_options_and_more.py +116 -0
  331. meta_subject/migrations/0190_dmdiagnosis_dx_no_tmg_reason_and_more.py +65 -0
  332. meta_subject/migrations/0191_alter_dmdiagnosis_dx_no_tmg_reason_and_more.py +70 -0
  333. meta_subject/migrations/0192_rename_glucose_quantifier_glucosefbg_fbg_quantifier_and_more.py +44 -0
  334. meta_subject/migrations/0193_alter_glucosefbg_fbg_value_and_more.py +44 -0
  335. meta_subject/migrations/0194_remove_glucosefbg_assay_datetime_and_more.py +166 -0
  336. meta_subject/migrations/0195_alter_glucosefbg_fbg_datetime_and_more.py +27 -0
  337. meta_subject/migrations/0196_glucosefbg_fbg_not_performed_reason_and_more.py +49 -0
  338. meta_subject/migrations/0197_glucosefbg_fasting_duration_estimated_and_more.py +33 -0
  339. meta_subject/migrations/0198_alter_glucosefbg_fasting_duration_estimated_and_more.py +33 -0
  340. meta_subject/migrations/0199_auto_20240516_0247.py +18 -0
  341. meta_subject/migrations/0200_rename_fasting_duration_minutes_bloodresultsins_fasting_duration_delta_and_more.py +43 -0
  342. meta_subject/migrations/0201_alter_bloodresultsins_fasting_duration_delta_and_more.py +58 -0
  343. meta_subject/migrations/0202_auto_20240516_0315.py +32 -0
  344. meta_subject/migrations/0203_alter_bloodresultsins_fasting_duration_delta_and_more.py +67 -0
  345. meta_subject/migrations/0204_glucosefbg_repeat_fbg_date_and_more.py +27 -0
  346. meta_subject/migrations/0205_historicalsubjectrequisition_crf_status_and_more.py +80 -0
  347. meta_subject/migrations/0206_bloodresultsfbc_crf_status_and_more.py +62 -0
  348. meta_subject/migrations/0207_alter_historicalphysicalexam_waist_circumference_and_more.py +46 -0
  349. meta_subject/migrations/0208_birthoutcomes_crf_status_and_more.py +62 -0
  350. meta_subject/migrations/0209_remove_historicaldmdxresult_dm_diagnosis_and_more.py +37 -0
  351. meta_subject/migrations/0210_remove_dmdxresult_dm_diagnosis_and_more.py +123 -0
  352. meta_subject/migrations/0211_dmendpoint_endpoint_reached_and_more.py +45 -0
  353. meta_subject/migrations/0212_auto_20240827_2222.py +23 -0
  354. meta_subject/migrations/0213_rename_bloodresultslipid_bloodresultslipids_and_more.py +35 -0
  355. meta_subject/migrations/0214_historicalstudymedication_stock_codes_and_more.py +44 -0
  356. meta_subject/migrations/0215_alter_historicalstudymedication_stock_codes_and_more.py +46 -0
  357. meta_subject/model_mixins/arv_history_model_mixin.py +3 -3
  358. meta_subject/models/__init__.py +3 -2
  359. meta_subject/models/birth_outcomes.py +6 -1
  360. meta_subject/models/blood_results/__init__.py +1 -1
  361. meta_subject/models/blood_results/blood_results_fbc.py +3 -2
  362. meta_subject/models/blood_results/blood_results_hba1c.py +2 -0
  363. meta_subject/models/blood_results/blood_results_ins.py +2 -0
  364. meta_subject/models/blood_results/blood_results_lft.py +2 -0
  365. meta_subject/models/blood_results/{blood_results_lipid.py → blood_results_lipids.py} +5 -3
  366. meta_subject/models/blood_results/blood_results_rft.py +2 -0
  367. meta_subject/models/diabetes/__init__.py +2 -0
  368. meta_subject/models/diabetes/dm_endpoint.py +61 -0
  369. meta_subject/models/{dm_referral_followup.py → diabetes/dm_followup.py} +18 -6
  370. meta_subject/models/glucose.py +7 -14
  371. meta_subject/models/glucose_fbg.py +40 -51
  372. meta_subject/models/health_economics/health_economics_update.py +2 -0
  373. meta_subject/models/physical_exam.py +1 -0
  374. meta_subject/models/signals.py +19 -0
  375. meta_subject/models/subject_requisition.py +3 -4
  376. meta_subject/models/todo.txt +1 -1
  377. meta_subject/static/meta_subject/slider.css +1 -1
  378. meta_subject/templates/meta_subject/endpoint_review_instructions.html +1 -1
  379. meta_subject/templates/meta_subject/widgets/slider.html +0 -1
  380. meta_subject/tests/holidays.csv +1 -1
  381. meta_subject/tests/tests/test_egfr.py +6 -5
  382. meta_subject/tests/tests/test_medication_adherence.py +5 -1
  383. meta_subject/tests/tests/test_metadata_rules.py +34 -4
  384. meta_subject/tests/tests/test_mnsi.py +212 -121
  385. meta_subject/tests/tests/test_sf12.py +0 -12
  386. meta_visit_schedule/constants.py +7 -1
  387. meta_visit_schedule/tests/tests/test_schedule.py +4 -0
  388. meta_visit_schedule/visit_schedules/phase_three/crfs.py +87 -14
  389. meta_visit_schedule/visit_schedules/phase_three/requisitions.py +12 -0
  390. meta_visit_schedule/visit_schedules/phase_three/schedule.py +65 -2
  391. meta_visit_schedule/visit_schedules/phase_three/schedule_dm_referral.py +60 -0
  392. meta_visit_schedule/visit_schedules/phase_three/visit_schedule.py +2 -0
  393. tests/etc/randomization_list.csv +1 -1
  394. {meta_edc/tests → tests}/etc/randomization_list_phase_three.csv +4 -4
  395. tests/holidays.csv +1 -1
  396. tests/test_settings.py +186 -0
  397. meta_edc/tests/etc/user-aes-local.key +0 -1
  398. meta_edc/tests/etc/user-aes-restricted.key +0 -0
  399. meta_edc/tests/etc/user-rsa-local-private.pem +0 -27
  400. meta_edc/tests/etc/user-rsa-local-public.pem +0 -9
  401. meta_edc/tests/etc/user-rsa-restricted-private.pem +0 -27
  402. meta_edc/tests/etc/user-rsa-restricted-public.pem +0 -9
  403. meta_edc/tests/etc/user-salt-local.key +0 -0
  404. meta_edc/tests/etc/user-salt-restricted.key +0 -0
  405. meta_edc-0.3.7.dist-info/METADATA +0 -87
  406. meta_reports/tests/holidays.csv +0 -15
  407. meta_subject/forms/dm_referral_followup.py +0 -18
  408. /meta_edc-0.3.7.dist-info/AUTHORS → /meta_analytics/__init__.py +0 -0
  409. /meta_pharmacy/models.py → /meta_analytics/constants.py +0 -0
  410. /meta_reports/models.py → /meta_analytics/notebooks/cleaning/__init__.py +0 -0
  411. {meta_edc-0.3.7.dist-info → meta_edc-0.3.50.dist-info}/LICENSE +0 -0
meta_reports/tasks.py ADDED
@@ -0,0 +1,12 @@
1
+ from celery import shared_task
2
+
3
+
4
+ @shared_task
5
+ def update_endpoints_table(subject_identifiers: list[str] | None = None):
6
+ from meta_analytics.dataframes import GlucoseEndpointsByDate
7
+
8
+ if len(subject_identifiers) > 5:
9
+ subject_identifiers = []
10
+ cls = GlucoseEndpointsByDate(subject_identifiers=subject_identifiers)
11
+ cls.run()
12
+ return cls.to_model()
@@ -0,0 +1 @@
1
+ <a title="{{ title }}" href="{{ url }}?q={{ subject_identifier }}">{{ label|default:subject_identifier }}</a>
@@ -0,0 +1,12 @@
1
+ Endpoints report shows subjects who have reached the protocol endpoint.
2
+ <BR>
3
+ <i>This report INCLUDES subjects who are no longer on-study. See also the <a href="{% url 'meta_reports_admin:meta_reports_endpoints_changelist' %}">Endpoints (DM)</a> report.</i>
4
+ <BR>
5
+ Pay attention to the "LAST_UPDATED" column. This tells you the last time the report was updated per subject.
6
+ <BR>
7
+ <BR>
8
+ Unlike other reports, this report does not automatically update, but you can update it :
9
+ <UL>
10
+ <LI>Place a check mark next to one or more subjects and select 'Regenerate selected report data' from the Action menu.</LI>
11
+ <li>If you select more than 5 subjects, records for ALL subjects will be refreshed.</li>
12
+ </UL>
@@ -0,0 +1,12 @@
1
+ Endpoints report shows subjects who have reached the protocol endpoint and should enroll to the DM Referral Schedule.
2
+ <BR>
3
+ <i>The report EXCLUDES subjects who are no longer on-study. See also the <a href="{% url 'meta_reports_admin:meta_reports_endpointsproxy_changelist' %}">Endpoints (DM): All</a> report.</i></i>
4
+ <BR>
5
+ Pay attention to the "LAST_UPDATED" column. This tells you the last time the report was updated per subject.
6
+ <BR>
7
+ <BR>
8
+ Unlike other reports, this report does not automatically update, but you can update it :
9
+ <UL>
10
+ <LI>Place a check mark next to one or more subjects and select 'Regenerate selected report data' from the Action menu.</LI>
11
+ <li>If you select more than 5 subjects, records for ALL subjects will be refreshed.</li>
12
+ </UL>
@@ -0,0 +1,5 @@
1
+ from django.test import TestCase
2
+
3
+
4
+ class TestSqlGen(TestCase):
5
+ pass
meta_reports/urls.py ADDED
@@ -0,0 +1,8 @@
1
+ from django.urls.conf import path
2
+ from django.views.generic import RedirectView
3
+
4
+ app_name = "meta_reports"
5
+
6
+ urlpatterns = [
7
+ path("", RedirectView.as_view(url=f"/{app_name}/admin/"), name="home_url"),
8
+ ]
meta_reports/utils.py ADDED
File without changes
@@ -79,6 +79,7 @@ class SubjectScreeningAdmin(ModelAdminSubjectDashboardMixin, SimpleHistoryAdmin)
79
79
  "hospital_identifier",
80
80
  "initials",
81
81
  "reasons_ineligible",
82
+ "id",
82
83
  )
83
84
 
84
85
  readonly_fields = (
@@ -80,7 +80,7 @@ class ScreeningPartTwoFormValidator(PrnFormValidatorMixin, FormValidator):
80
80
  {
81
81
  self.report_datetime_field_attr: (
82
82
  "Cannot be before `Part One` report datetime. "
83
- f"Expected date after {dte}."
83
+ f"Expected date after {dte}. Got {self.report_datetime}"
84
84
  )
85
85
  },
86
86
  INVALID_ERROR,
@@ -0,0 +1,27 @@
1
+ # Generated by Django 4.2.11 on 2024-03-27 19:41
2
+
3
+ from django.db import migrations
4
+
5
+
6
+ class Migration(migrations.Migration):
7
+
8
+ dependencies = [
9
+ ("meta_screening", "0061_alter_historicalicpreferral_site_and_more"),
10
+ ]
11
+
12
+ operations = [
13
+ migrations.RemoveField(
14
+ model_name="icpreferral",
15
+ name="site",
16
+ ),
17
+ migrations.RemoveField(
18
+ model_name="icpreferral",
19
+ name="subject_screening",
20
+ ),
21
+ migrations.DeleteModel(
22
+ name="HistoricalIcpReferral",
23
+ ),
24
+ migrations.DeleteModel(
25
+ name="IcpReferral",
26
+ ),
27
+ ]
@@ -0,0 +1,184 @@
1
+ # Generated by Django 5.0.4 on 2024-04-18 23:46
2
+
3
+ import django.core.validators
4
+ from django.db import migrations, models
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("meta_screening", "0062_remove_icpreferral_site_and_more"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="historicalscreeningpartone",
16
+ name="fasting_duration_str",
17
+ field=models.CharField(
18
+ blank=True,
19
+ help_text="As reported by patient. Duration of fast. Format is `HHhMMm`. For example 1h23m, 12h7m, etc",
20
+ max_length=8,
21
+ null=True,
22
+ validators=[
23
+ django.core.validators.RegexValidator(
24
+ "^([0-9]{1,3}h([0-5]?[0-9]m)?)$",
25
+ message="Invalid format. Expected something like 1h20m, 11h5m, etc. No spaces allowed.",
26
+ )
27
+ ],
28
+ verbose_name="How long have they fasted in hours and/or minutes?",
29
+ ),
30
+ ),
31
+ migrations.AlterField(
32
+ model_name="historicalscreeningpartone",
33
+ name="repeat_fasting_duration_str",
34
+ field=models.CharField(
35
+ blank=True,
36
+ help_text="As reported by patient. Duration of fast. Format is `HHhMMm`. For example 1h23m, 12h7m, etc",
37
+ max_length=8,
38
+ null=True,
39
+ validators=[
40
+ django.core.validators.RegexValidator(
41
+ "^([0-9]{1,3}h([0-5]?[0-9]m)?)$",
42
+ message="Invalid format. Expected something like 1h20m, 11h5m, etc. No spaces allowed.",
43
+ )
44
+ ],
45
+ verbose_name="How long have they fasted in hours and/or minutes?",
46
+ ),
47
+ ),
48
+ migrations.AlterField(
49
+ model_name="historicalscreeningpartthree",
50
+ name="fasting_duration_str",
51
+ field=models.CharField(
52
+ blank=True,
53
+ help_text="As reported by patient. Duration of fast. Format is `HHhMMm`. For example 1h23m, 12h7m, etc",
54
+ max_length=8,
55
+ null=True,
56
+ validators=[
57
+ django.core.validators.RegexValidator(
58
+ "^([0-9]{1,3}h([0-5]?[0-9]m)?)$",
59
+ message="Invalid format. Expected something like 1h20m, 11h5m, etc. No spaces allowed.",
60
+ )
61
+ ],
62
+ verbose_name="How long have they fasted in hours and/or minutes?",
63
+ ),
64
+ ),
65
+ migrations.AlterField(
66
+ model_name="historicalscreeningpartthree",
67
+ name="repeat_fasting_duration_str",
68
+ field=models.CharField(
69
+ blank=True,
70
+ help_text="As reported by patient. Duration of fast. Format is `HHhMMm`. For example 1h23m, 12h7m, etc",
71
+ max_length=8,
72
+ null=True,
73
+ validators=[
74
+ django.core.validators.RegexValidator(
75
+ "^([0-9]{1,3}h([0-5]?[0-9]m)?)$",
76
+ message="Invalid format. Expected something like 1h20m, 11h5m, etc. No spaces allowed.",
77
+ )
78
+ ],
79
+ verbose_name="How long have they fasted in hours and/or minutes?",
80
+ ),
81
+ ),
82
+ migrations.AlterField(
83
+ model_name="historicalscreeningparttwo",
84
+ name="fasting_duration_str",
85
+ field=models.CharField(
86
+ blank=True,
87
+ help_text="As reported by patient. Duration of fast. Format is `HHhMMm`. For example 1h23m, 12h7m, etc",
88
+ max_length=8,
89
+ null=True,
90
+ validators=[
91
+ django.core.validators.RegexValidator(
92
+ "^([0-9]{1,3}h([0-5]?[0-9]m)?)$",
93
+ message="Invalid format. Expected something like 1h20m, 11h5m, etc. No spaces allowed.",
94
+ )
95
+ ],
96
+ verbose_name="How long have they fasted in hours and/or minutes?",
97
+ ),
98
+ ),
99
+ migrations.AlterField(
100
+ model_name="historicalscreeningparttwo",
101
+ name="repeat_fasting_duration_str",
102
+ field=models.CharField(
103
+ blank=True,
104
+ help_text="As reported by patient. Duration of fast. Format is `HHhMMm`. For example 1h23m, 12h7m, etc",
105
+ max_length=8,
106
+ null=True,
107
+ validators=[
108
+ django.core.validators.RegexValidator(
109
+ "^([0-9]{1,3}h([0-5]?[0-9]m)?)$",
110
+ message="Invalid format. Expected something like 1h20m, 11h5m, etc. No spaces allowed.",
111
+ )
112
+ ],
113
+ verbose_name="How long have they fasted in hours and/or minutes?",
114
+ ),
115
+ ),
116
+ migrations.AlterField(
117
+ model_name="historicalsubjectscreening",
118
+ name="fasting_duration_str",
119
+ field=models.CharField(
120
+ blank=True,
121
+ help_text="As reported by patient. Duration of fast. Format is `HHhMMm`. For example 1h23m, 12h7m, etc",
122
+ max_length=8,
123
+ null=True,
124
+ validators=[
125
+ django.core.validators.RegexValidator(
126
+ "^([0-9]{1,3}h([0-5]?[0-9]m)?)$",
127
+ message="Invalid format. Expected something like 1h20m, 11h5m, etc. No spaces allowed.",
128
+ )
129
+ ],
130
+ verbose_name="How long have they fasted in hours and/or minutes?",
131
+ ),
132
+ ),
133
+ migrations.AlterField(
134
+ model_name="historicalsubjectscreening",
135
+ name="repeat_fasting_duration_str",
136
+ field=models.CharField(
137
+ blank=True,
138
+ help_text="As reported by patient. Duration of fast. Format is `HHhMMm`. For example 1h23m, 12h7m, etc",
139
+ max_length=8,
140
+ null=True,
141
+ validators=[
142
+ django.core.validators.RegexValidator(
143
+ "^([0-9]{1,3}h([0-5]?[0-9]m)?)$",
144
+ message="Invalid format. Expected something like 1h20m, 11h5m, etc. No spaces allowed.",
145
+ )
146
+ ],
147
+ verbose_name="How long have they fasted in hours and/or minutes?",
148
+ ),
149
+ ),
150
+ migrations.AlterField(
151
+ model_name="subjectscreening",
152
+ name="fasting_duration_str",
153
+ field=models.CharField(
154
+ blank=True,
155
+ help_text="As reported by patient. Duration of fast. Format is `HHhMMm`. For example 1h23m, 12h7m, etc",
156
+ max_length=8,
157
+ null=True,
158
+ validators=[
159
+ django.core.validators.RegexValidator(
160
+ "^([0-9]{1,3}h([0-5]?[0-9]m)?)$",
161
+ message="Invalid format. Expected something like 1h20m, 11h5m, etc. No spaces allowed.",
162
+ )
163
+ ],
164
+ verbose_name="How long have they fasted in hours and/or minutes?",
165
+ ),
166
+ ),
167
+ migrations.AlterField(
168
+ model_name="subjectscreening",
169
+ name="repeat_fasting_duration_str",
170
+ field=models.CharField(
171
+ blank=True,
172
+ help_text="As reported by patient. Duration of fast. Format is `HHhMMm`. For example 1h23m, 12h7m, etc",
173
+ max_length=8,
174
+ null=True,
175
+ validators=[
176
+ django.core.validators.RegexValidator(
177
+ "^([0-9]{1,3}h([0-5]?[0-9]m)?)$",
178
+ message="Invalid format. Expected something like 1h20m, 11h5m, etc. No spaces allowed.",
179
+ )
180
+ ],
181
+ verbose_name="How long have they fasted in hours and/or minutes?",
182
+ ),
183
+ ),
184
+ ]
@@ -0,0 +1,126 @@
1
+ # Generated by Django 4.2.11 on 2024-05-16 00:51
2
+
3
+ from django.db import migrations, models
4
+
5
+
6
+ class Migration(migrations.Migration):
7
+
8
+ dependencies = [
9
+ (
10
+ "meta_screening",
11
+ "0063_alter_historicalscreeningpartone_fasting_duration_str_and_more",
12
+ ),
13
+ ]
14
+
15
+ operations = [
16
+ migrations.RemoveField(
17
+ model_name="historicalscreeningpartone",
18
+ name="fasting_duration_minutes",
19
+ ),
20
+ migrations.RemoveField(
21
+ model_name="historicalscreeningpartone",
22
+ name="repeat_fasting_duration_minutes",
23
+ ),
24
+ migrations.RemoveField(
25
+ model_name="historicalscreeningpartthree",
26
+ name="fasting_duration_minutes",
27
+ ),
28
+ migrations.RemoveField(
29
+ model_name="historicalscreeningpartthree",
30
+ name="repeat_fasting_duration_minutes",
31
+ ),
32
+ migrations.RemoveField(
33
+ model_name="historicalscreeningparttwo",
34
+ name="fasting_duration_minutes",
35
+ ),
36
+ migrations.RemoveField(
37
+ model_name="historicalscreeningparttwo",
38
+ name="repeat_fasting_duration_minutes",
39
+ ),
40
+ migrations.RemoveField(
41
+ model_name="historicalsubjectscreening",
42
+ name="fasting_duration_minutes",
43
+ ),
44
+ migrations.RemoveField(
45
+ model_name="historicalsubjectscreening",
46
+ name="repeat_fasting_duration_minutes",
47
+ ),
48
+ migrations.RemoveField(
49
+ model_name="subjectscreening",
50
+ name="fasting_duration_minutes",
51
+ ),
52
+ migrations.RemoveField(
53
+ model_name="subjectscreening",
54
+ name="repeat_fasting_duration_minutes",
55
+ ),
56
+ migrations.AddField(
57
+ model_name="historicalscreeningpartone",
58
+ name="fasting_duration_delta",
59
+ field=models.DurationField(
60
+ blank=True, help_text="system calculated value", null=True
61
+ ),
62
+ ),
63
+ migrations.AddField(
64
+ model_name="historicalscreeningpartone",
65
+ name="repeat_fasting_duration_delta",
66
+ field=models.DurationField(
67
+ blank=True, help_text="system calculated value", null=True
68
+ ),
69
+ ),
70
+ migrations.AddField(
71
+ model_name="historicalscreeningpartthree",
72
+ name="fasting_duration_delta",
73
+ field=models.DurationField(
74
+ blank=True, help_text="system calculated value", null=True
75
+ ),
76
+ ),
77
+ migrations.AddField(
78
+ model_name="historicalscreeningpartthree",
79
+ name="repeat_fasting_duration_delta",
80
+ field=models.DurationField(
81
+ blank=True, help_text="system calculated value", null=True
82
+ ),
83
+ ),
84
+ migrations.AddField(
85
+ model_name="historicalscreeningparttwo",
86
+ name="fasting_duration_delta",
87
+ field=models.DurationField(
88
+ blank=True, help_text="system calculated value", null=True
89
+ ),
90
+ ),
91
+ migrations.AddField(
92
+ model_name="historicalscreeningparttwo",
93
+ name="repeat_fasting_duration_delta",
94
+ field=models.DurationField(
95
+ blank=True, help_text="system calculated value", null=True
96
+ ),
97
+ ),
98
+ migrations.AddField(
99
+ model_name="historicalsubjectscreening",
100
+ name="fasting_duration_delta",
101
+ field=models.DurationField(
102
+ blank=True, help_text="system calculated value", null=True
103
+ ),
104
+ ),
105
+ migrations.AddField(
106
+ model_name="historicalsubjectscreening",
107
+ name="repeat_fasting_duration_delta",
108
+ field=models.DurationField(
109
+ blank=True, help_text="system calculated value", null=True
110
+ ),
111
+ ),
112
+ migrations.AddField(
113
+ model_name="subjectscreening",
114
+ name="fasting_duration_delta",
115
+ field=models.DurationField(
116
+ blank=True, help_text="system calculated value", null=True
117
+ ),
118
+ ),
119
+ migrations.AddField(
120
+ model_name="subjectscreening",
121
+ name="repeat_fasting_duration_delta",
122
+ field=models.DurationField(
123
+ blank=True, help_text="system calculated value", null=True
124
+ ),
125
+ ),
126
+ ]
@@ -0,0 +1,31 @@
1
+ # Generated by Django 4.2.11 on 2024-05-16 00:52
2
+ from django.db import migrations
3
+ from edc_model.utils import duration_hm_to_timedelta
4
+ from tqdm import tqdm
5
+
6
+
7
+ def update_duration(apps, schema_editor):
8
+ model_cls = apps.get_model("meta_screening.subjectscreening")
9
+ qs = model_cls.objects.all()
10
+ total = qs.count()
11
+ for obj in tqdm(qs, total=total):
12
+ if obj.fasting_duration_str:
13
+ tdelta = duration_hm_to_timedelta(obj.fasting_duration_str)
14
+ obj.fasting_duration_delta = tdelta
15
+ obj.save_base(update_fields=["fasting_duration_delta"])
16
+ if obj.repeat_fasting_duration_str:
17
+ tdelta = duration_hm_to_timedelta(obj.repeat_fasting_duration_str)
18
+ obj.repeat_fasting_duration_delta = tdelta
19
+ obj.save_base(update_fields=["repeat_fasting_duration_delta"])
20
+
21
+
22
+ class Migration(migrations.Migration):
23
+
24
+ dependencies = [
25
+ (
26
+ "meta_screening",
27
+ "0064_remove_historicalscreeningpartone_fasting_duration_minutes_and_more",
28
+ ),
29
+ ]
30
+
31
+ operations = [migrations.RunPython(update_duration)]
@@ -0,0 +1,103 @@
1
+ # Generated by Django 4.2.11 on 2024-05-16 01:21
2
+
3
+ from django.db import migrations, models
4
+
5
+
6
+ class Migration(migrations.Migration):
7
+
8
+ dependencies = [
9
+ ("meta_screening", "0065_auto_20240516_0352"),
10
+ ]
11
+
12
+ operations = [
13
+ migrations.AlterField(
14
+ model_name="historicalscreeningpartone",
15
+ name="fasting_duration_delta",
16
+ field=models.DurationField(
17
+ blank=True,
18
+ help_text="system calculated to microseconds. (hours=microseconds/3.6e+9)",
19
+ null=True,
20
+ ),
21
+ ),
22
+ migrations.AlterField(
23
+ model_name="historicalscreeningpartone",
24
+ name="repeat_fasting_duration_delta",
25
+ field=models.DurationField(
26
+ blank=True,
27
+ help_text="system calculated to microseconds. (hours=microseconds/3.6e+9)",
28
+ null=True,
29
+ ),
30
+ ),
31
+ migrations.AlterField(
32
+ model_name="historicalscreeningpartthree",
33
+ name="fasting_duration_delta",
34
+ field=models.DurationField(
35
+ blank=True,
36
+ help_text="system calculated to microseconds. (hours=microseconds/3.6e+9)",
37
+ null=True,
38
+ ),
39
+ ),
40
+ migrations.AlterField(
41
+ model_name="historicalscreeningpartthree",
42
+ name="repeat_fasting_duration_delta",
43
+ field=models.DurationField(
44
+ blank=True,
45
+ help_text="system calculated to microseconds. (hours=microseconds/3.6e+9)",
46
+ null=True,
47
+ ),
48
+ ),
49
+ migrations.AlterField(
50
+ model_name="historicalscreeningparttwo",
51
+ name="fasting_duration_delta",
52
+ field=models.DurationField(
53
+ blank=True,
54
+ help_text="system calculated to microseconds. (hours=microseconds/3.6e+9)",
55
+ null=True,
56
+ ),
57
+ ),
58
+ migrations.AlterField(
59
+ model_name="historicalscreeningparttwo",
60
+ name="repeat_fasting_duration_delta",
61
+ field=models.DurationField(
62
+ blank=True,
63
+ help_text="system calculated to microseconds. (hours=microseconds/3.6e+9)",
64
+ null=True,
65
+ ),
66
+ ),
67
+ migrations.AlterField(
68
+ model_name="historicalsubjectscreening",
69
+ name="fasting_duration_delta",
70
+ field=models.DurationField(
71
+ blank=True,
72
+ help_text="system calculated to microseconds. (hours=microseconds/3.6e+9)",
73
+ null=True,
74
+ ),
75
+ ),
76
+ migrations.AlterField(
77
+ model_name="historicalsubjectscreening",
78
+ name="repeat_fasting_duration_delta",
79
+ field=models.DurationField(
80
+ blank=True,
81
+ help_text="system calculated to microseconds. (hours=microseconds/3.6e+9)",
82
+ null=True,
83
+ ),
84
+ ),
85
+ migrations.AlterField(
86
+ model_name="subjectscreening",
87
+ name="fasting_duration_delta",
88
+ field=models.DurationField(
89
+ blank=True,
90
+ help_text="system calculated to microseconds. (hours=microseconds/3.6e+9)",
91
+ null=True,
92
+ ),
93
+ ),
94
+ migrations.AlterField(
95
+ model_name="subjectscreening",
96
+ name="repeat_fasting_duration_delta",
97
+ field=models.DurationField(
98
+ blank=True,
99
+ help_text="system calculated to microseconds. (hours=microseconds/3.6e+9)",
100
+ null=True,
101
+ ),
102
+ ),
103
+ ]
@@ -0,0 +1,84 @@
1
+ # Generated by Django 4.2.11 on 2024-06-03 16:46
2
+
3
+ from django.db import migrations, models
4
+ import edc_model.validators.date
5
+ import edc_protocol.validators
6
+ import edc_utils.date
7
+
8
+
9
+ class Migration(migrations.Migration):
10
+
11
+ dependencies = [
12
+ (
13
+ "meta_screening",
14
+ "0066_alter_historicalscreeningpartone_fasting_duration_delta_and_more",
15
+ ),
16
+ ]
17
+
18
+ operations = [
19
+ migrations.AlterField(
20
+ model_name="historicalscreeningpartone",
21
+ name="report_datetime",
22
+ field=models.DateTimeField(
23
+ default=edc_utils.date.get_utcnow,
24
+ help_text="Date and time of report.",
25
+ validators=[
26
+ edc_protocol.validators.datetime_not_before_study_start,
27
+ edc_model.validators.date.datetime_not_future,
28
+ ],
29
+ verbose_name="Report Date and Time",
30
+ ),
31
+ ),
32
+ migrations.AlterField(
33
+ model_name="historicalscreeningpartthree",
34
+ name="report_datetime",
35
+ field=models.DateTimeField(
36
+ default=edc_utils.date.get_utcnow,
37
+ help_text="Date and time of report.",
38
+ validators=[
39
+ edc_protocol.validators.datetime_not_before_study_start,
40
+ edc_model.validators.date.datetime_not_future,
41
+ ],
42
+ verbose_name="Report Date and Time",
43
+ ),
44
+ ),
45
+ migrations.AlterField(
46
+ model_name="historicalscreeningparttwo",
47
+ name="report_datetime",
48
+ field=models.DateTimeField(
49
+ default=edc_utils.date.get_utcnow,
50
+ help_text="Date and time of report.",
51
+ validators=[
52
+ edc_protocol.validators.datetime_not_before_study_start,
53
+ edc_model.validators.date.datetime_not_future,
54
+ ],
55
+ verbose_name="Report Date and Time",
56
+ ),
57
+ ),
58
+ migrations.AlterField(
59
+ model_name="historicalsubjectscreening",
60
+ name="report_datetime",
61
+ field=models.DateTimeField(
62
+ default=edc_utils.date.get_utcnow,
63
+ help_text="Date and time of report.",
64
+ validators=[
65
+ edc_protocol.validators.datetime_not_before_study_start,
66
+ edc_model.validators.date.datetime_not_future,
67
+ ],
68
+ verbose_name="Report Date and Time",
69
+ ),
70
+ ),
71
+ migrations.AlterField(
72
+ model_name="subjectscreening",
73
+ name="report_datetime",
74
+ field=models.DateTimeField(
75
+ default=edc_utils.date.get_utcnow,
76
+ help_text="Date and time of report.",
77
+ validators=[
78
+ edc_protocol.validators.datetime_not_before_study_start,
79
+ edc_model.validators.date.datetime_not_future,
80
+ ],
81
+ verbose_name="Report Date and Time",
82
+ ),
83
+ ),
84
+ ]
@@ -1,4 +1,4 @@
1
- from .icp_referral import IcpReferral
1
+ # from .icp_referral import IcpReferral
2
2
  from .proxy_models import ScreeningPartOne, ScreeningPartThree, ScreeningPartTwo
3
3
  from .signals import update_p3_ltfu_on_post_save
4
4
  from .subject_refusal import SubjectRefusal
@@ -12,4 +12,4 @@
12
12
  2019-12-01,Mawlid Day,tanzania
13
13
  2019-12-09,Independence Day,tanzania
14
14
  2019-12-25,Christmas Day,tanzania
15
- 2019-12-26,Boxing Day,tanzania
15
+ 2019-12-26,Boxing Day,tanzania