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.
- meta_ae/action_items.py +2 -2
- meta_ae/migrations/0017_auto_20221130_2257.py +12 -7
- meta_ae/tests/holidays.csv +1 -1
- meta_analytics/README.rst +17 -0
- meta_analytics/dataframes/__init__.py +19 -0
- meta_analytics/dataframes/constants.py +33 -0
- meta_analytics/dataframes/enrolled/__init__.py +1 -0
- meta_analytics/dataframes/enrolled/get_glucose_df.py +122 -0
- meta_analytics/dataframes/get_eos_df.py +26 -0
- meta_analytics/dataframes/get_last_imp_visits_df.py +101 -0
- meta_analytics/dataframes/glucose_endpoints/__init__.py +2 -0
- meta_analytics/dataframes/glucose_endpoints/endpoint_by_date.py +183 -0
- meta_analytics/dataframes/glucose_endpoints/glucose_endpoints_by_date.py +531 -0
- meta_analytics/dataframes/screening/__init__.py +2 -0
- meta_analytics/dataframes/screening/get_glucose_tested_only_df.py +20 -0
- meta_analytics/dataframes/screening/get_screening_df.py +163 -0
- meta_analytics/dataframes/utils.py +65 -0
- meta_analytics/get_tables.py +81 -0
- meta_analytics/tables/__init__.py +2 -0
- meta_analytics/tables/eligible.py +106 -0
- meta_analytics/tables/enrolled/__init__.py +0 -0
- meta_analytics/tables/enrolled/glucose.py +28 -0
- meta_analytics/tables/has_dm.py +61 -0
- meta_analytics/tests/__init__.py +0 -0
- meta_analytics/tests/test_endpoints_by_date.py +94 -0
- meta_auth/auth_objects.py +32 -3
- meta_auth/auths.py +18 -3
- meta_consent/action_items.py +18 -1
- meta_consent/admin/__init__.py +1 -0
- meta_consent/admin/subject_consent_v1_ext_admin.py +45 -0
- meta_consent/baker_recipes.py +5 -4
- meta_consent/consents.py +21 -2
- meta_consent/constants.py +1 -0
- meta_consent/forms/__init__.py +1 -0
- meta_consent/forms/subject_consent_v1_ext_form.py +16 -0
- meta_consent/locale/lg/LC_MESSAGES/django.po +69 -0
- meta_consent/locale/sw/LC_MESSAGES/django.po +12 -12
- meta_consent/migrations/0025_alter_historicalsubjectconsent_first_name_and_more.py +151 -0
- meta_consent/migrations/0026_historicalsubjectconsentv1ext_subjectconsentv1ext.py +544 -0
- meta_consent/migrations/0027_auto_20250111_0344.py +30 -0
- meta_consent/models/__init__.py +1 -0
- meta_consent/models/signals.py +34 -13
- meta_consent/models/subject_consent_v1.py +1 -3
- meta_consent/models/subject_consent_v1_ext.py +29 -0
- meta_consent/tests/holidays.csv +1 -1
- meta_consent/tests/tests/test_form_validators.py +1 -1
- meta_dashboard/locale/lg/LC_MESSAGES/django.po +30 -0
- meta_dashboard/locale/sw/LC_MESSAGES/django.po +11 -2
- meta_dashboard/navbars.py +3 -1
- meta_dashboard/templates/meta_dashboard/bootstrap3/buttons/eligibility_button.html +1 -1
- meta_dashboard/templates/meta_dashboard/bootstrap3/buttons/screening_button.html +1 -1
- meta_dashboard/templates/meta_dashboard/bootstrap3/screening/listboard.html +4 -4
- meta_dashboard/templates/meta_dashboard/bootstrap3/subject/dashboard/sidebar.html +24 -0
- meta_dashboard/templates/meta_dashboard/bootstrap3/subject/dashboard.html +3 -0
- meta_dashboard/templates/meta_dashboard/bootstrap3/subject/listboard.html +1 -2
- meta_dashboard/templatetags/meta_dashboard_extras.py +1 -1
- meta_dashboard/tests/holidays.csv +1 -1
- meta_dashboard/tests/urls.py +0 -1
- meta_dashboard/view_utils/__init__.py +6 -0
- meta_dashboard/view_utils/subject_screening_button.py +2 -2
- meta_dashboard/views/subject/dashboard/dashboard_view.py +38 -0
- meta_edc/__init__.py +7 -0
- meta_edc/celery.py +4 -13
- meta_edc/celery_live.py +18 -0
- meta_edc/celery_uat.py +24 -0
- meta_edc/management/commands/update_forms_reference.py +6 -2
- meta_edc/migrations/__init__.py +0 -0
- meta_edc/navbars.py +2 -1
- meta_edc/settings/debug.py +17 -9
- meta_edc/settings/defaults.py +82 -60
- meta_edc/settings/live.py +1 -9
- meta_edc/settings/uat.py +1 -14
- meta_edc/templates/meta_edc/bootstrap3/home.html +13 -7
- meta_edc/tests/tests/test_endpoints.py +22 -19
- meta_edc/urls.py +5 -2
- meta_edc/wsgi.py +1 -1
- meta_edc/wsgi_live.py +1 -1
- meta_edc/wsgi_uat.py +1 -1
- meta_edc-0.3.50.dist-info/AUTHORS +0 -0
- meta_edc-0.3.50.dist-info/METADATA +766 -0
- {meta_edc-0.3.7.dist-info → meta_edc-0.3.50.dist-info}/RECORD +400 -157
- {meta_edc-0.3.7.dist-info → meta_edc-0.3.50.dist-info}/WHEEL +1 -1
- {meta_edc-0.3.7.dist-info → meta_edc-0.3.50.dist-info}/top_level.txt +1 -0
- meta_pharmacy/admin/__init__.py +2 -0
- meta_pharmacy/admin/rx_admin.py +75 -0
- meta_pharmacy/admin/substitutions_admin.py +67 -0
- meta_pharmacy/admin_site.py +9 -0
- meta_pharmacy/apps.py +5 -0
- meta_pharmacy/constants.py +10 -0
- meta_pharmacy/forms/__init__.py +2 -0
- meta_pharmacy/forms/rx_form.py +16 -0
- meta_pharmacy/forms/substitutions_form.py +54 -0
- meta_pharmacy/label_configs.py +30 -0
- meta_pharmacy/labels/__init__.py +5 -0
- meta_pharmacy/labels/draw_label_for_subject_with_barcode.py +62 -0
- meta_pharmacy/labels/draw_label_for_subject_with_code128.py +14 -0
- meta_pharmacy/labels/draw_label_with_test_data.py +26 -0
- meta_pharmacy/labels/label_data.py +14 -0
- meta_pharmacy/labels/print_sheets.py +97 -0
- meta_pharmacy/list_data.py +8 -0
- meta_pharmacy/management/__init__.py +0 -0
- meta_pharmacy/management/commands/__init__.py +0 -0
- meta_pharmacy/management/commands/update_initial_pharmacy_data.py +10 -0
- meta_pharmacy/migrations/0002_initial.py +695 -0
- meta_pharmacy/migrations/0003_auto_20240909_2335.py +64 -0
- meta_pharmacy/migrations/0004_alter_historicalsubstitutions_report_datetime_and_more.py +23 -0
- meta_pharmacy/migrations/0005_auto_20240911_0352.py +17 -0
- meta_pharmacy/migrations/0006_lotnumber_label.py +289 -0
- meta_pharmacy/migrations/0007_lotnumber_medication.py +24 -0
- meta_pharmacy/migrations/0008_remove_lotnumber_medication_and_more.py +390 -0
- meta_pharmacy/migrations/0009_remove_historicalrx_slug.py +17 -0
- meta_pharmacy/models/__init__.py +3 -0
- meta_pharmacy/models/label_data.py +38 -0
- meta_pharmacy/models/rx.py +18 -0
- meta_pharmacy/models/rx_label.py +39 -0
- meta_pharmacy/models/substitutions.py +88 -0
- meta_pharmacy/urls.py +8 -0
- meta_pharmacy/utils/__init__.py +1 -0
- meta_pharmacy/utils/update_initial_pharmacy_data.py +146 -0
- meta_prn/action_items.py +52 -2
- meta_prn/admin/__init__.py +3 -0
- meta_prn/admin/dm_referral_admin.py +49 -0
- meta_prn/admin/offschedule_dm_referral_admin.py +47 -0
- meta_prn/admin/onschedule_dm_referral_admin.py +39 -0
- meta_prn/admin/pregnancy_notification_admin.py +6 -2
- meta_prn/baker_recipes.py +8 -1
- meta_prn/choices.py +2 -1
- meta_prn/constants.py +4 -1
- meta_prn/forms/__init__.py +2 -0
- meta_prn/forms/dm_referral_form.py +40 -0
- meta_prn/forms/offschedule_dm_referral_form.py +35 -0
- meta_prn/forms/offschedule_form.py +6 -0
- meta_prn/migrations/0034_auto_20220630_1110.py +3 -3
- meta_prn/migrations/0035_auto_20220630_1140.py +59 -56
- meta_prn/migrations/0057_historicalonscheduledmreferral_and_more.py +1156 -0
- meta_prn/migrations/0058_dmreferral_referral_note_and_more.py +29 -0
- meta_prn/migrations/0059_alter_historicaloffstudymedication_reason_and_more.py +53 -0
- meta_prn/models/__init__.py +13 -2
- meta_prn/models/dm_referral.py +39 -0
- meta_prn/models/offschedule.py +15 -1
- meta_prn/models/onschedule.py +6 -0
- meta_prn/models/signals.py +41 -1
- meta_prn/tests/tests/test_dm_referral.py +203 -0
- meta_reports/__init__.py +1 -0
- meta_reports/admin/__init__.py +15 -0
- meta_reports/admin/dbviews/__init__.py +14 -0
- meta_reports/admin/dbviews/glucose_summary_admin.py +116 -0
- meta_reports/admin/dbviews/imp_substitutions_admin.py +101 -0
- meta_reports/admin/dbviews/missing_screening_ogtt_admin/__init__.py +2 -0
- meta_reports/admin/dbviews/missing_screening_ogtt_admin/note_model_admin.py +53 -0
- meta_reports/admin/dbviews/missing_screening_ogtt_admin/unmanaged_model_admin.py +84 -0
- meta_reports/admin/dbviews/on_study_missing_lab_values_admin/__init__.py +1 -0
- meta_reports/admin/dbviews/on_study_missing_lab_values_admin/unmanaged_model_admin.py +13 -0
- meta_reports/admin/dbviews/on_study_missing_values_admin/__init__.py +1 -0
- meta_reports/admin/dbviews/on_study_missing_values_admin/unmanaged_model_admin.py +13 -0
- meta_reports/admin/dbviews/patient_history_missing_baseline_cd4_admin.py +58 -0
- meta_reports/admin/dbviews/unattended_three_in_row2_admin.py +47 -0
- meta_reports/admin/dbviews/unattended_three_in_row_admin.py +35 -0
- meta_reports/admin/dbviews/unattended_two_in_row_admin.py +34 -0
- meta_reports/admin/endpoints_admin.py +14 -0
- meta_reports/admin/endpoints_all_admin.py +13 -0
- meta_reports/admin/last_imp_refill_admin.py +181 -0
- meta_reports/admin/list_filters.py +30 -0
- meta_reports/admin/modeladmin_mixins.py +112 -0
- meta_reports/admin_site.py +5 -0
- meta_reports/apps.py +1 -16
- meta_reports/forms/__init__.py +1 -0
- meta_reports/forms/missing_ogtt_note_form.py +33 -0
- meta_reports/management/__init__.py +0 -0
- meta_reports/management/commands/__init__.py +0 -0
- meta_reports/management/commands/generate_endpoints.py +13 -0
- meta_reports/migrations/0001_initial.py +87 -0
- meta_reports/migrations/0002_patienthistorymissingbaselinecd4_and_more.py +64 -0
- meta_reports/migrations/0003_auto_20240618_0505.py +12 -0
- meta_reports/migrations/0004_alter_patienthistorymissingbaselinecd4_table.py +17 -0
- meta_reports/migrations/0005_endpoints.py +47 -0
- meta_reports/migrations/0006_endpoints_baseline_datetime.py +18 -0
- meta_reports/migrations/0007_alter_endpoints_endpoint_label_and_more.py +43 -0
- meta_reports/migrations/0008_alter_endpoints_endpoint_label.py +18 -0
- meta_reports/migrations/0009_alter_endpoints_options.py +21 -0
- meta_reports/migrations/0010_alter_patienthistorymissingbaselinecd4_options_and_more.py +49 -0
- meta_reports/migrations/0011_auto_20240813_0156.py +54 -0
- meta_reports/migrations/0012_auto_20240813_1516.py +48 -0
- meta_reports/migrations/0013_auto_20240813_1516.py +48 -0
- meta_reports/migrations/0014_auto_20240813_1517.py +48 -0
- meta_reports/migrations/0015_alter_endpoints_site.py +22 -0
- meta_reports/migrations/0016_missingscreeningogtt.py +47 -0
- meta_reports/migrations/0017_auto_20240819_1711.py +166 -0
- meta_reports/migrations/0018_auto_20240819_1713.py +54 -0
- meta_reports/migrations/0019_auto_20240819_1721.py +54 -0
- meta_reports/migrations/0020_auto_20240819_1811.py +54 -0
- meta_reports/migrations/0021_auto_20240819_1817.py +54 -0
- meta_reports/migrations/0022_auto_20240819_1832.py +54 -0
- meta_reports/migrations/0023_endpoints_meta_report_subject_a56b22_idx.py +20 -0
- meta_reports/migrations/0024_glucosesummary.py +38 -0
- meta_reports/migrations/0025_auto_20240822_0115.py +87 -0
- meta_reports/migrations/0026_auto_20240822_0120.py +54 -0
- meta_reports/migrations/0027_auto_20240822_0140.py +54 -0
- meta_reports/migrations/0028_alter_glucosesummary_options.py +22 -0
- meta_reports/migrations/0029_auto_20240822_0149.py +54 -0
- meta_reports/migrations/0030_auto_20240822_1637.py +54 -0
- meta_reports/migrations/0031_endpointsproxy.py +25 -0
- meta_reports/migrations/0032_alter_endpointsproxy_options.py +21 -0
- meta_reports/migrations/0033_auto_20240823_0012.py +54 -0
- meta_reports/migrations/0034_auto_20240823_1642.py +54 -0
- meta_reports/migrations/0035_historicalmissingogttnote_missingogttnote.py +457 -0
- meta_reports/migrations/0036_historicalmissingogttnote_fasting_and_more.py +86 -0
- meta_reports/migrations/0037_historicalmissingogttnote_result_status_and_more.py +51 -0
- meta_reports/migrations/0038_alter_historicalmissingogttnote_fasting_and_more.py +33 -0
- meta_reports/migrations/0039_onstudymissingvalues.py +44 -0
- meta_reports/migrations/0040_auto_20240824_0412.py +282 -0
- meta_reports/migrations/0041_auto_20240828_2229.py +14 -0
- meta_reports/migrations/0042_onstudymissinglabvalues.py +43 -0
- meta_reports/migrations/0043_auto_20240828_2309.py +88 -0
- meta_reports/migrations/0044_auto_20240828_2323.py +93 -0
- meta_reports/migrations/0045_auto_20240829_0248.py +54 -0
- meta_reports/migrations/0046_auto_20240829_0250.py +54 -0
- meta_reports/migrations/0047_impsubstitutions.py +56 -0
- meta_reports/migrations/0048_auto_20240909_2338.py +48 -0
- meta_reports/migrations/0049_auto_20240911_0327.py +54 -0
- meta_reports/migrations/0050_alter_endpoints_created.py +19 -0
- meta_reports/migrations/0051_remove_endpoints_baseline_datetime_and_more.py +40 -0
- meta_reports/migrations/0052_lastimpvisit.py +57 -0
- meta_reports/migrations/0053_rename_lastimpvisit_lastimprefill_and_more.py +31 -0
- meta_reports/models/__init__.py +16 -0
- meta_reports/models/dbviews/README +14 -0
- meta_reports/models/dbviews/__init__.py +9 -0
- meta_reports/models/dbviews/glucose_summary/__init__.py +2 -0
- meta_reports/models/dbviews/glucose_summary/unmanaged_model.py +35 -0
- meta_reports/models/dbviews/glucose_summary/view_definition.py +28 -0
- meta_reports/models/dbviews/imp_substitutions/__init__.py +1 -0
- meta_reports/models/dbviews/imp_substitutions/unmanaged_model.py +41 -0
- meta_reports/models/dbviews/imp_substitutions/view_definition.py +21 -0
- meta_reports/models/dbviews/missing_screening_ogtt/__init__.py +2 -0
- meta_reports/models/dbviews/missing_screening_ogtt/note_model.py +57 -0
- meta_reports/models/dbviews/missing_screening_ogtt/unmanaged_model.py +41 -0
- meta_reports/models/dbviews/missing_screening_ogtt/view_definition.py +20 -0
- meta_reports/models/dbviews/on_study_missing_lab_values/__init__.py +1 -0
- meta_reports/models/dbviews/on_study_missing_lab_values/qa_cases.py +53 -0
- meta_reports/models/dbviews/on_study_missing_lab_values/unmanged_model.py +20 -0
- meta_reports/models/dbviews/on_study_missing_lab_values/view_definition.py +17 -0
- meta_reports/models/dbviews/on_study_missing_values/__init__.py +1 -0
- meta_reports/models/dbviews/on_study_missing_values/qa_cases.py +54 -0
- meta_reports/models/dbviews/on_study_missing_values/unmanged_model.py +20 -0
- meta_reports/models/dbviews/on_study_missing_values/view_definition.py +17 -0
- meta_reports/models/dbviews/patient_history_missing_baseline_cd4/__init__.py +1 -0
- meta_reports/models/dbviews/patient_history_missing_baseline_cd4/unmanaged_model.py +31 -0
- meta_reports/models/dbviews/patient_history_missing_baseline_cd4/view_definition.py +21 -0
- meta_reports/models/dbviews/unattended_three_in_row/__init__.py +1 -0
- meta_reports/models/dbviews/unattended_three_in_row/unmanaged_model.py +29 -0
- meta_reports/models/dbviews/unattended_three_in_row/view_definition.py +31 -0
- meta_reports/models/dbviews/unattended_three_in_row2/__init__.py +1 -0
- meta_reports/models/dbviews/unattended_three_in_row2/unmanaged_model.py +29 -0
- meta_reports/models/dbviews/unattended_three_in_row2/view_definition.py +50 -0
- meta_reports/models/dbviews/unattended_two_in_row/__init__.py +1 -0
- meta_reports/models/dbviews/unattended_two_in_row/unmanaged_model.py +27 -0
- meta_reports/models/dbviews/unattended_two_in_row/view_definition.py +30 -0
- meta_reports/models/endpoints.py +31 -0
- meta_reports/models/endpoints_proxy.py +11 -0
- meta_reports/models/last_imp_refill.py +34 -0
- meta_reports/tasks.py +12 -0
- meta_reports/templates/meta_reports/columns/subject_identifier_column.html +1 -0
- meta_reports/templates/meta_reports/endpoints_all_change_list_note.html +12 -0
- meta_reports/templates/meta_reports/endpoints_change_list_note.html +12 -0
- meta_reports/tests/test_sql_gen.py +5 -0
- meta_reports/urls.py +8 -0
- meta_reports/utils.py +0 -0
- meta_screening/admin/subject_screening_admin.py +1 -0
- meta_screening/form_validators/screening_part_two.py +1 -1
- meta_screening/migrations/0062_remove_icpreferral_site_and_more.py +27 -0
- meta_screening/migrations/0063_alter_historicalscreeningpartone_fasting_duration_str_and_more.py +184 -0
- meta_screening/migrations/0064_remove_historicalscreeningpartone_fasting_duration_minutes_and_more.py +126 -0
- meta_screening/migrations/0065_auto_20240516_0352.py +31 -0
- meta_screening/migrations/0066_alter_historicalscreeningpartone_fasting_duration_delta_and_more.py +103 -0
- meta_screening/migrations/0067_alter_historicalscreeningpartone_report_datetime_and_more.py +84 -0
- meta_screening/models/__init__.py +1 -1
- meta_screening/tests/holidays.csv +1 -1
- meta_screening/tests/meta_test_case_mixin.py +17 -2
- meta_screening/tests/options.py +3 -3
- meta_sites/__init__.py +0 -1
- meta_sites/sites.py +8 -7
- meta_sites/tests/test_sites.py +1 -1
- meta_subject/action_items.py +25 -2
- meta_subject/admin/__init__.py +2 -1
- meta_subject/admin/birth_outcome_admin.py +4 -3
- meta_subject/admin/blood_results/__init__.py +1 -1
- meta_subject/admin/blood_results/{blood_results_lipid_admin.py → blood_results_lipids_admin.py} +7 -7
- meta_subject/admin/delivery_admin.py +0 -1
- meta_subject/admin/diabetes/__init__.py +2 -0
- meta_subject/admin/diabetes/dm_endpoint_admin.py +35 -0
- meta_subject/admin/{dm_referral_followup_admin.py → diabetes/dm_followup_admin.py} +15 -8
- meta_subject/admin/glucose_admin.py +1 -1
- meta_subject/admin/glucose_fbg_admin.py +38 -8
- meta_subject/admin/other_arv_regimens_admin.py +2 -0
- meta_subject/admin/study_medication_admin.py +10 -0
- meta_subject/admin/subject_visit_admin.py +4 -1
- meta_subject/baker_recipes.py +6 -0
- meta_subject/choices.py +8 -0
- meta_subject/constants.py +2 -1
- meta_subject/form_validators/__init__.py +2 -1
- meta_subject/form_validators/dm_endpoint_form_validator.py +35 -0
- meta_subject/form_validators/{dm_referral_followup_form_validator.py → dm_followup_form_validator.py} +41 -2
- meta_subject/forms/__init__.py +2 -1
- meta_subject/forms/blood_results/__init__.py +1 -1
- meta_subject/forms/blood_results/{blood_results_lipid_form.py → blood_results_lipids_form.py} +5 -5
- meta_subject/forms/diabetes/__init__.py +2 -0
- meta_subject/forms/diabetes/dm_endpoint_form.py +13 -0
- meta_subject/forms/diabetes/dm_followup_form.py +25 -0
- meta_subject/forms/glucose_fbg_form.py +38 -16
- meta_subject/forms/study_medication_form.py +35 -0
- meta_subject/forms/subject_visit_form.py +16 -0
- meta_subject/locale/lg/LC_MESSAGES/django.po +470 -0
- meta_subject/locale/sw/LC_MESSAGES/django.po +191 -89
- meta_subject/metadata_rules/metadata_rules.py +21 -0
- meta_subject/metadata_rules/predicates.py +67 -8
- meta_subject/migrations/0107_auto_20220415_0043.py +28 -22
- meta_subject/migrations/0126_auto_20220719_2142.py +4 -4
- meta_subject/migrations/0131_auto_20220722_0411.py +28 -23
- meta_subject/migrations/0132_auto_20220722_1825.py +10 -6
- meta_subject/migrations/0135_auto_20220722_2212.py +39 -35
- meta_subject/migrations/0150_auto_20220914_0039.py +15 -11
- meta_subject/migrations/0181_dmreferralfollowup_action_identifier_and_more.py +143 -0
- meta_subject/migrations/0182_rename_dmreferralfollowup_dmfollowup_and_more.py +54 -0
- meta_subject/migrations/0183_alter_dmfollowup_on_dm_medications_and_more.py +31 -0
- meta_subject/migrations/0184_alter_glucose_options_and_more.py +31 -0
- meta_subject/migrations/0185_alter_bloodresultsins_fasting_duration_str_and_more.py +82 -0
- meta_subject/migrations/0186_healtheconomicsupdate_singleton_field_and_more.py +55 -0
- meta_subject/migrations/0187_dmdiagnosis_historicaldmdiagnosis_dmdxresult_and_more.py +451 -0
- meta_subject/migrations/0188_historicaldmdxresult_dmdxresult.py +403 -0
- meta_subject/migrations/0189_alter_dmdxresult_options_and_more.py +116 -0
- meta_subject/migrations/0190_dmdiagnosis_dx_no_tmg_reason_and_more.py +65 -0
- meta_subject/migrations/0191_alter_dmdiagnosis_dx_no_tmg_reason_and_more.py +70 -0
- meta_subject/migrations/0192_rename_glucose_quantifier_glucosefbg_fbg_quantifier_and_more.py +44 -0
- meta_subject/migrations/0193_alter_glucosefbg_fbg_value_and_more.py +44 -0
- meta_subject/migrations/0194_remove_glucosefbg_assay_datetime_and_more.py +166 -0
- meta_subject/migrations/0195_alter_glucosefbg_fbg_datetime_and_more.py +27 -0
- meta_subject/migrations/0196_glucosefbg_fbg_not_performed_reason_and_more.py +49 -0
- meta_subject/migrations/0197_glucosefbg_fasting_duration_estimated_and_more.py +33 -0
- meta_subject/migrations/0198_alter_glucosefbg_fasting_duration_estimated_and_more.py +33 -0
- meta_subject/migrations/0199_auto_20240516_0247.py +18 -0
- meta_subject/migrations/0200_rename_fasting_duration_minutes_bloodresultsins_fasting_duration_delta_and_more.py +43 -0
- meta_subject/migrations/0201_alter_bloodresultsins_fasting_duration_delta_and_more.py +58 -0
- meta_subject/migrations/0202_auto_20240516_0315.py +32 -0
- meta_subject/migrations/0203_alter_bloodresultsins_fasting_duration_delta_and_more.py +67 -0
- meta_subject/migrations/0204_glucosefbg_repeat_fbg_date_and_more.py +27 -0
- meta_subject/migrations/0205_historicalsubjectrequisition_crf_status_and_more.py +80 -0
- meta_subject/migrations/0206_bloodresultsfbc_crf_status_and_more.py +62 -0
- meta_subject/migrations/0207_alter_historicalphysicalexam_waist_circumference_and_more.py +46 -0
- meta_subject/migrations/0208_birthoutcomes_crf_status_and_more.py +62 -0
- meta_subject/migrations/0209_remove_historicaldmdxresult_dm_diagnosis_and_more.py +37 -0
- meta_subject/migrations/0210_remove_dmdxresult_dm_diagnosis_and_more.py +123 -0
- meta_subject/migrations/0211_dmendpoint_endpoint_reached_and_more.py +45 -0
- meta_subject/migrations/0212_auto_20240827_2222.py +23 -0
- meta_subject/migrations/0213_rename_bloodresultslipid_bloodresultslipids_and_more.py +35 -0
- meta_subject/migrations/0214_historicalstudymedication_stock_codes_and_more.py +44 -0
- meta_subject/migrations/0215_alter_historicalstudymedication_stock_codes_and_more.py +46 -0
- meta_subject/model_mixins/arv_history_model_mixin.py +3 -3
- meta_subject/models/__init__.py +3 -2
- meta_subject/models/birth_outcomes.py +6 -1
- meta_subject/models/blood_results/__init__.py +1 -1
- meta_subject/models/blood_results/blood_results_fbc.py +3 -2
- meta_subject/models/blood_results/blood_results_hba1c.py +2 -0
- meta_subject/models/blood_results/blood_results_ins.py +2 -0
- meta_subject/models/blood_results/blood_results_lft.py +2 -0
- meta_subject/models/blood_results/{blood_results_lipid.py → blood_results_lipids.py} +5 -3
- meta_subject/models/blood_results/blood_results_rft.py +2 -0
- meta_subject/models/diabetes/__init__.py +2 -0
- meta_subject/models/diabetes/dm_endpoint.py +61 -0
- meta_subject/models/{dm_referral_followup.py → diabetes/dm_followup.py} +18 -6
- meta_subject/models/glucose.py +7 -14
- meta_subject/models/glucose_fbg.py +40 -51
- meta_subject/models/health_economics/health_economics_update.py +2 -0
- meta_subject/models/physical_exam.py +1 -0
- meta_subject/models/signals.py +19 -0
- meta_subject/models/subject_requisition.py +3 -4
- meta_subject/models/todo.txt +1 -1
- meta_subject/static/meta_subject/slider.css +1 -1
- meta_subject/templates/meta_subject/endpoint_review_instructions.html +1 -1
- meta_subject/templates/meta_subject/widgets/slider.html +0 -1
- meta_subject/tests/holidays.csv +1 -1
- meta_subject/tests/tests/test_egfr.py +6 -5
- meta_subject/tests/tests/test_medication_adherence.py +5 -1
- meta_subject/tests/tests/test_metadata_rules.py +34 -4
- meta_subject/tests/tests/test_mnsi.py +212 -121
- meta_subject/tests/tests/test_sf12.py +0 -12
- meta_visit_schedule/constants.py +7 -1
- meta_visit_schedule/tests/tests/test_schedule.py +4 -0
- meta_visit_schedule/visit_schedules/phase_three/crfs.py +87 -14
- meta_visit_schedule/visit_schedules/phase_three/requisitions.py +12 -0
- meta_visit_schedule/visit_schedules/phase_three/schedule.py +65 -2
- meta_visit_schedule/visit_schedules/phase_three/schedule_dm_referral.py +60 -0
- meta_visit_schedule/visit_schedules/phase_three/visit_schedule.py +2 -0
- tests/etc/randomization_list.csv +1 -1
- {meta_edc/tests → tests}/etc/randomization_list_phase_three.csv +4 -4
- tests/holidays.csv +1 -1
- tests/test_settings.py +186 -0
- meta_edc/tests/etc/user-aes-local.key +0 -1
- meta_edc/tests/etc/user-aes-restricted.key +0 -0
- meta_edc/tests/etc/user-rsa-local-private.pem +0 -27
- meta_edc/tests/etc/user-rsa-local-public.pem +0 -9
- meta_edc/tests/etc/user-rsa-restricted-private.pem +0 -27
- meta_edc/tests/etc/user-rsa-restricted-public.pem +0 -9
- meta_edc/tests/etc/user-salt-local.key +0 -0
- meta_edc/tests/etc/user-salt-restricted.key +0 -0
- meta_edc-0.3.7.dist-info/METADATA +0 -87
- meta_reports/tests/holidays.csv +0 -15
- meta_subject/forms/dm_referral_followup.py +0 -18
- /meta_edc-0.3.7.dist-info/AUTHORS → /meta_analytics/__init__.py +0 -0
- /meta_pharmacy/models.py → /meta_analytics/constants.py +0 -0
- /meta_reports/models.py → /meta_analytics/notebooks/cleaning/__init__.py +0 -0
- {meta_edc-0.3.7.dist-info → meta_edc-0.3.50.dist-info}/LICENSE +0 -0
meta_auth/auths.py
CHANGED
@@ -20,13 +20,26 @@ from edc_pharmacy.auth_objects import (
|
|
20
20
|
PHARMACY_PRESCRIBER,
|
21
21
|
SITE_PHARMACIST_ROLE,
|
22
22
|
)
|
23
|
+
from edc_qareports.auth_objects import QA_REPORTS_AUDIT_ROLE, QA_REPORTS_ROLE
|
23
24
|
from edc_qol.auth_objects import QOL, QOL_SUPER, QOL_VIEW
|
24
25
|
from edc_randomization.auth_objects import RANDO_BLINDED, RANDO_UNBLINDED
|
25
26
|
from edc_screening.auth_objects import SCREENING, SCREENING_SUPER, SCREENING_VIEW
|
26
27
|
from edc_subject_dashboard.auths import SUBJECT_VIEW
|
27
28
|
from edc_unblinding.auth_objects import UNBLINDING_REQUESTORS
|
28
29
|
|
29
|
-
from .auth_objects import
|
30
|
+
from .auth_objects import (
|
31
|
+
META_PHARMACIST,
|
32
|
+
META_REPORTS,
|
33
|
+
META_REPORTS_AUDIT,
|
34
|
+
clinic_codenames,
|
35
|
+
meta_pharmacy_codenames,
|
36
|
+
reports_codenames,
|
37
|
+
screening_codenames,
|
38
|
+
)
|
39
|
+
|
40
|
+
site_auths.add_group(*reports_codenames, name=META_REPORTS)
|
41
|
+
site_auths.add_group(*reports_codenames, name=META_REPORTS_AUDIT, view_only=True)
|
42
|
+
site_auths.add_group(*meta_pharmacy_codenames, name=META_PHARMACIST)
|
30
43
|
|
31
44
|
# update edc_auth default groups
|
32
45
|
site_auths.update_group(*clinic_codenames, name=AUDITOR, view_only=True)
|
@@ -59,9 +72,11 @@ site_auths.update_role(
|
|
59
72
|
DATA_MANAGER_EXPORT,
|
60
73
|
name=DATA_EXPORTER_ROLE,
|
61
74
|
)
|
62
|
-
site_auths.update_role(RANDO_UNBLINDED, PII, name=PHARMACIST_ROLE)
|
63
|
-
site_auths.update_role(RANDO_BLINDED, PII, name=SITE_PHARMACIST_ROLE)
|
75
|
+
site_auths.update_role(RANDO_UNBLINDED, PII, META_PHARMACIST, name=PHARMACIST_ROLE)
|
76
|
+
site_auths.update_role(RANDO_BLINDED, PII, META_PHARMACIST, name=SITE_PHARMACIST_ROLE)
|
64
77
|
site_auths.update_role(SUBJECT_VIEW, SCREENING_VIEW, name=DATA_MANAGER_ROLE)
|
65
78
|
site_auths.update_role(
|
66
79
|
SUBJECT_VIEW, SCREENING_VIEW, ACTION_ITEM, UNBLINDING_REQUESTORS, name=TMG_ROLE
|
67
80
|
)
|
81
|
+
site_auths.update_role(META_REPORTS, name=QA_REPORTS_ROLE)
|
82
|
+
site_auths.update_role(META_REPORTS_AUDIT, name=QA_REPORTS_AUDIT_ROLE)
|
meta_consent/action_items.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
from edc_action_item import Action, site_action_items
|
2
2
|
from edc_constants.constants import HIGH_PRIORITY
|
3
3
|
|
4
|
-
from .constants import RECONSENT_ACTION
|
4
|
+
from .constants import CONSENT_V1_EXTENSION_ACTION, RECONSENT_ACTION
|
5
5
|
|
6
6
|
|
7
7
|
class ReconsentAction(Action):
|
@@ -23,4 +23,21 @@ class ReconsentAction(Action):
|
|
23
23
|
return False
|
24
24
|
|
25
25
|
|
26
|
+
class ConsentV1ExtensionAction(Action):
|
27
|
+
name = CONSENT_V1_EXTENSION_ACTION
|
28
|
+
display_name = "Ask to extend followup (required)"
|
29
|
+
reference_model = "meta_consent.subjectconsentv1ext"
|
30
|
+
priority = HIGH_PRIORITY
|
31
|
+
show_on_dashboard = True
|
32
|
+
show_link_to_changelist = True
|
33
|
+
admin_site_name = "meta_consent_admin"
|
34
|
+
create_by_user = False
|
35
|
+
singleton = True
|
36
|
+
instructions = "Participant must complete as soon as able. "
|
37
|
+
|
38
|
+
def reopen_action_item_on_change(self):
|
39
|
+
return False
|
40
|
+
|
41
|
+
|
26
42
|
site_action_items.register(ReconsentAction)
|
43
|
+
site_action_items.register(ConsentV1ExtensionAction)
|
meta_consent/admin/__init__.py
CHANGED
@@ -0,0 +1,45 @@
|
|
1
|
+
from django.contrib import admin
|
2
|
+
from django_audit_fields import audit_fieldset_tuple
|
3
|
+
from edc_model_admin.dashboard import ModelAdminSubjectDashboardMixin
|
4
|
+
from edc_model_admin.history import SimpleHistoryAdmin
|
5
|
+
|
6
|
+
from ..admin_site import meta_consent_admin
|
7
|
+
from ..forms import SubjectConsentV1ExtForm
|
8
|
+
from ..models import SubjectConsentV1Ext
|
9
|
+
|
10
|
+
|
11
|
+
@admin.register(SubjectConsentV1Ext, site=meta_consent_admin)
|
12
|
+
class SubjectConsentV1ExtAdmin(
|
13
|
+
ModelAdminSubjectDashboardMixin,
|
14
|
+
SimpleHistoryAdmin,
|
15
|
+
):
|
16
|
+
form = SubjectConsentV1ExtForm
|
17
|
+
|
18
|
+
fieldsets = (
|
19
|
+
(
|
20
|
+
None,
|
21
|
+
{
|
22
|
+
"fields": (
|
23
|
+
"subject_consent",
|
24
|
+
"report_datetime",
|
25
|
+
"agrees_to_extension",
|
26
|
+
)
|
27
|
+
},
|
28
|
+
),
|
29
|
+
audit_fieldset_tuple,
|
30
|
+
)
|
31
|
+
|
32
|
+
radio_fields = {"agrees_to_extension": admin.VERTICAL}
|
33
|
+
|
34
|
+
def get_readonly_fields(self, request, obj=None) -> tuple[str, ...]:
|
35
|
+
if obj:
|
36
|
+
return ("subject_consent",)
|
37
|
+
return ()
|
38
|
+
|
39
|
+
def formfield_for_foreignkey(self, db_field, request, **kwargs):
|
40
|
+
if db_field.name == "subject_consent":
|
41
|
+
subject_identifier = request.GET.get("subject_identifier")
|
42
|
+
kwargs["queryset"] = db_field.related_model.objects.filter(
|
43
|
+
subject_identifier=subject_identifier
|
44
|
+
)
|
45
|
+
return super().formfield_for_foreignkey(db_field, request, **kwargs)
|
meta_consent/baker_recipes.py
CHANGED
@@ -5,13 +5,11 @@ from edc_utils import get_utcnow
|
|
5
5
|
from faker import Faker
|
6
6
|
from model_bakery.recipe import Recipe, seq
|
7
7
|
|
8
|
-
from .models import SubjectConsent, SubjectReconsent
|
8
|
+
from .models import SubjectConsent, SubjectConsentV1, SubjectReconsent
|
9
9
|
|
10
10
|
fake = Faker()
|
11
11
|
|
12
|
-
|
13
|
-
subjectconsent = Recipe(
|
14
|
-
SubjectConsent,
|
12
|
+
opts = dict(
|
15
13
|
assessment_score=YES,
|
16
14
|
confirm_identity=seq("12315678"),
|
17
15
|
consent_copy=YES,
|
@@ -35,6 +33,9 @@ subjectconsent = Recipe(
|
|
35
33
|
user_created="erikvw",
|
36
34
|
user_modified="erikvw",
|
37
35
|
)
|
36
|
+
subjectconsent = Recipe(SubjectConsent, **opts)
|
37
|
+
subjectconsentv1 = Recipe(SubjectConsentV1, **opts)
|
38
|
+
# subjectconsentv1ext = Recipe(SubjectConsentV1Ext, **opts)
|
38
39
|
|
39
40
|
subjectreconsent = Recipe(
|
40
41
|
SubjectReconsent,
|
meta_consent/consents.py
CHANGED
@@ -1,10 +1,14 @@
|
|
1
|
+
from datetime import datetime
|
2
|
+
from zoneinfo import ZoneInfo
|
3
|
+
|
1
4
|
from edc_consent.consent_definition import ConsentDefinition
|
5
|
+
from edc_consent.consent_definition_extension import ConsentDefinitionExtension
|
2
6
|
from edc_consent.site_consents import site_consents
|
3
7
|
from edc_constants.constants import FEMALE, MALE
|
4
8
|
from edc_protocol.research_protocol_config import ResearchProtocolConfig
|
5
9
|
|
6
10
|
consent_v1 = ConsentDefinition(
|
7
|
-
|
11
|
+
"meta_consent.subjectconsentv1",
|
8
12
|
version="1",
|
9
13
|
start=ResearchProtocolConfig().study_open_datetime,
|
10
14
|
end=ResearchProtocolConfig().study_close_datetime,
|
@@ -12,6 +16,21 @@ consent_v1 = ConsentDefinition(
|
|
12
16
|
age_is_adult=18,
|
13
17
|
age_max=110,
|
14
18
|
gender=[MALE, FEMALE],
|
19
|
+
screening_model=[
|
20
|
+
"meta_screening.subjectscreening",
|
21
|
+
"meta_screening.screeningpartone",
|
22
|
+
"meta_screening.screeningparttwo",
|
23
|
+
"meta_screening.screeningpartthree",
|
24
|
+
],
|
25
|
+
timepoints=list(range(1, 14 + 1)),
|
26
|
+
)
|
27
|
+
|
28
|
+
consent_v1_ext = ConsentDefinitionExtension(
|
29
|
+
"meta_consent.subjectconsentv1ext",
|
30
|
+
version="1.1",
|
31
|
+
start=datetime(2024, 12, 16, tzinfo=ZoneInfo("UTC")),
|
32
|
+
extends=consent_v1,
|
33
|
+
timepoints=[15, 16, 17, 18],
|
15
34
|
)
|
16
35
|
|
17
|
-
site_consents.register(consent_v1)
|
36
|
+
site_consents.register(consent_v1, extended_by=consent_v1_ext)
|
meta_consent/constants.py
CHANGED
meta_consent/forms/__init__.py
CHANGED
@@ -0,0 +1,16 @@
|
|
1
|
+
from django import forms
|
2
|
+
from edc_form_validators import FormValidatorMixin
|
3
|
+
from edc_sites.forms import SiteModelFormMixin
|
4
|
+
|
5
|
+
from ..models import SubjectConsentV1Ext
|
6
|
+
|
7
|
+
|
8
|
+
class SubjectConsentV1ExtForm(SiteModelFormMixin, FormValidatorMixin, forms.ModelForm):
|
9
|
+
|
10
|
+
widgets = {
|
11
|
+
"subject_identifier": forms.TextInput(attrs={"readonly": "readonly"}),
|
12
|
+
}
|
13
|
+
|
14
|
+
class Meta:
|
15
|
+
model = SubjectConsentV1Ext
|
16
|
+
fields = "__all__"
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
+
# This file is distributed under the same license as the PACKAGE package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
|
+
#
|
6
|
+
#, fuzzy
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
10
|
+
"Report-Msgid-Bugs-To: \n"
|
11
|
+
"POT-Creation-Date: 2024-11-19 23:35+0300\n"
|
12
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
|
+
"Language: \n"
|
16
|
+
"MIME-Version: 1.0\n"
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
19
|
+
|
20
|
+
#: meta_consent/admin/modeladmin_mixins.py:68
|
21
|
+
msgid "The following questions are directed to the interviewer."
|
22
|
+
msgstr ""
|
23
|
+
|
24
|
+
#: meta_consent/admin/modeladmin_mixins.py:118
|
25
|
+
msgid "Create missing METFORMIN prescription"
|
26
|
+
msgstr ""
|
27
|
+
|
28
|
+
#: meta_consent/admin/modeladmin_mixins.py:140
|
29
|
+
#, python-format
|
30
|
+
msgid ""
|
31
|
+
"Created %(created)s/%(total)s missing %(display_name)s prescriptions. Got "
|
32
|
+
"%(exist)s/%(total)s prescriptions already exist"
|
33
|
+
msgstr ""
|
34
|
+
|
35
|
+
#: meta_consent/form_validators/subject_consent_form_validator.py:14
|
36
|
+
msgid "Expected 'hospital number'."
|
37
|
+
msgstr ""
|
38
|
+
|
39
|
+
#: meta_consent/form_validators/subject_consent_form_validator.py:22
|
40
|
+
msgid "The hospital identifier does not match that reported at screening."
|
41
|
+
msgstr ""
|
42
|
+
|
43
|
+
#: meta_consent/forms/subject_consent_form.py:13
|
44
|
+
msgid ""
|
45
|
+
"Use Country ID Number, Passport number, driver's license number or Country "
|
46
|
+
"ID receipt number"
|
47
|
+
msgstr ""
|
48
|
+
|
49
|
+
#: meta_consent/forms/subject_consent_form.py:19
|
50
|
+
msgid ""
|
51
|
+
"Required only if participant is illiterate. Format is 'LASTNAME, FIRSTNAME'. "
|
52
|
+
"All uppercase separated by a comma."
|
53
|
+
msgstr ""
|
54
|
+
|
55
|
+
#: meta_consent/forms/subject_consent_form.py:24
|
56
|
+
msgid "(read-only)"
|
57
|
+
msgstr ""
|
58
|
+
|
59
|
+
#: meta_consent/models/subject_consent.py:54
|
60
|
+
msgid "Screening identifier"
|
61
|
+
msgstr ""
|
62
|
+
|
63
|
+
#: meta_consent/models/subject_consent.py:58
|
64
|
+
msgid "Screening datetime"
|
65
|
+
msgstr ""
|
66
|
+
|
67
|
+
#: meta_consent/models/subject_consent.py:63
|
68
|
+
msgid "from screening"
|
69
|
+
msgstr ""
|
@@ -8,7 +8,7 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date:
|
11
|
+
"POT-Creation-Date: 2024-11-19 23:35+0300\n"
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -18,53 +18,53 @@ msgstr ""
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
19
19
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20
20
|
|
21
|
-
#: admin/
|
21
|
+
#: meta_consent/admin/modeladmin_mixins.py:68
|
22
22
|
msgid "The following questions are directed to the interviewer."
|
23
23
|
msgstr ""
|
24
24
|
|
25
|
-
#: admin/
|
25
|
+
#: meta_consent/admin/modeladmin_mixins.py:118
|
26
26
|
msgid "Create missing METFORMIN prescription"
|
27
27
|
msgstr ""
|
28
28
|
|
29
|
-
#: admin/
|
29
|
+
#: meta_consent/admin/modeladmin_mixins.py:140
|
30
30
|
#, python-format
|
31
31
|
msgid ""
|
32
32
|
"Created %(created)s/%(total)s missing %(display_name)s prescriptions. Got "
|
33
33
|
"%(exist)s/%(total)s prescriptions already exist"
|
34
34
|
msgstr ""
|
35
35
|
|
36
|
-
#:
|
36
|
+
#: meta_consent/form_validators/subject_consent_form_validator.py:14
|
37
37
|
msgid "Expected 'hospital number'."
|
38
38
|
msgstr ""
|
39
39
|
|
40
|
-
#:
|
40
|
+
#: meta_consent/form_validators/subject_consent_form_validator.py:22
|
41
41
|
msgid "The hospital identifier does not match that reported at screening."
|
42
42
|
msgstr ""
|
43
43
|
|
44
|
-
#: forms/subject_consent_form.py:
|
44
|
+
#: meta_consent/forms/subject_consent_form.py:13
|
45
45
|
msgid ""
|
46
46
|
"Use Country ID Number, Passport number, driver's license number or Country "
|
47
47
|
"ID receipt number"
|
48
48
|
msgstr ""
|
49
49
|
|
50
|
-
#: forms/subject_consent_form.py:
|
50
|
+
#: meta_consent/forms/subject_consent_form.py:19
|
51
51
|
msgid ""
|
52
52
|
"Required only if participant is illiterate. Format is 'LASTNAME, FIRSTNAME'. "
|
53
53
|
"All uppercase separated by a comma."
|
54
54
|
msgstr ""
|
55
55
|
|
56
|
-
#: forms/subject_consent_form.py:
|
56
|
+
#: meta_consent/forms/subject_consent_form.py:24
|
57
57
|
msgid "(read-only)"
|
58
58
|
msgstr ""
|
59
59
|
|
60
|
-
#: models/subject_consent.py:
|
60
|
+
#: meta_consent/models/subject_consent.py:54
|
61
61
|
msgid "Screening identifier"
|
62
62
|
msgstr ""
|
63
63
|
|
64
|
-
#: models/subject_consent.py:
|
64
|
+
#: meta_consent/models/subject_consent.py:58
|
65
65
|
msgid "Screening datetime"
|
66
66
|
msgstr ""
|
67
67
|
|
68
|
-
#: models/subject_consent.py:
|
68
|
+
#: meta_consent/models/subject_consent.py:63
|
69
69
|
msgid "from screening"
|
70
70
|
msgstr ""
|
@@ -0,0 +1,151 @@
|
|
1
|
+
# Generated by Django 4.2.11 on 2024-03-27 19:41
|
2
|
+
|
3
|
+
import django.core.validators
|
4
|
+
from django.db import migrations
|
5
|
+
import django_crypto_fields.fields.encrypted_char_field
|
6
|
+
import edc_consent.validators
|
7
|
+
|
8
|
+
|
9
|
+
class Migration(migrations.Migration):
|
10
|
+
|
11
|
+
dependencies = [
|
12
|
+
("meta_consent", "0024_historicalsubjectconsentv1"),
|
13
|
+
]
|
14
|
+
|
15
|
+
operations = [
|
16
|
+
migrations.AlterField(
|
17
|
+
model_name="historicalsubjectconsent",
|
18
|
+
name="first_name",
|
19
|
+
field=django_crypto_fields.fields.encrypted_char_field.EncryptedCharField(
|
20
|
+
blank=True,
|
21
|
+
help_text="Use UPPERCASE letters only. (Encryption: RSA local)",
|
22
|
+
max_length=71,
|
23
|
+
null=True,
|
24
|
+
validators=[
|
25
|
+
django.core.validators.RegexValidator(
|
26
|
+
message="Ensure name consist of letters only in upper case",
|
27
|
+
regex="^([A-Z]+$|[A-Z]+\\ [A-Z]+)$",
|
28
|
+
)
|
29
|
+
],
|
30
|
+
),
|
31
|
+
),
|
32
|
+
migrations.AlterField(
|
33
|
+
model_name="historicalsubjectconsent",
|
34
|
+
name="guardian_name",
|
35
|
+
field=django_crypto_fields.fields.encrypted_char_field.EncryptedCharField(
|
36
|
+
blank=True,
|
37
|
+
help_text="Required only if participant is a minor.<BR>Format is 'LASTNAME, FIRSTNAME'. All uppercase separated by a comma. (Encryption: RSA local)",
|
38
|
+
max_length=71,
|
39
|
+
null=True,
|
40
|
+
validators=[edc_consent.validators.FullNameValidator()],
|
41
|
+
verbose_name="Guardian's last and first name",
|
42
|
+
),
|
43
|
+
),
|
44
|
+
migrations.AlterField(
|
45
|
+
model_name="historicalsubjectconsent",
|
46
|
+
name="last_name",
|
47
|
+
field=django_crypto_fields.fields.encrypted_char_field.EncryptedCharField(
|
48
|
+
blank=True,
|
49
|
+
help_text="Use UPPERCASE letters only. (Encryption: RSA local)",
|
50
|
+
max_length=71,
|
51
|
+
null=True,
|
52
|
+
validators=[
|
53
|
+
django.core.validators.RegexValidator(
|
54
|
+
message="Ensure name consist of letters only in upper case",
|
55
|
+
regex="^([A-Z]+$|[A-Z]+\\ [A-Z]+)$",
|
56
|
+
)
|
57
|
+
],
|
58
|
+
verbose_name="Surname",
|
59
|
+
),
|
60
|
+
),
|
61
|
+
migrations.AlterField(
|
62
|
+
model_name="historicalsubjectconsentv1",
|
63
|
+
name="first_name",
|
64
|
+
field=django_crypto_fields.fields.encrypted_char_field.EncryptedCharField(
|
65
|
+
blank=True,
|
66
|
+
help_text="Use UPPERCASE letters only. (Encryption: RSA local)",
|
67
|
+
max_length=71,
|
68
|
+
null=True,
|
69
|
+
validators=[
|
70
|
+
django.core.validators.RegexValidator(
|
71
|
+
message="Ensure name consist of letters only in upper case",
|
72
|
+
regex="^([A-Z]+$|[A-Z]+\\ [A-Z]+)$",
|
73
|
+
)
|
74
|
+
],
|
75
|
+
),
|
76
|
+
),
|
77
|
+
migrations.AlterField(
|
78
|
+
model_name="historicalsubjectconsentv1",
|
79
|
+
name="guardian_name",
|
80
|
+
field=django_crypto_fields.fields.encrypted_char_field.EncryptedCharField(
|
81
|
+
blank=True,
|
82
|
+
help_text="Required only if participant is a minor.<BR>Format is 'LASTNAME, FIRSTNAME'. All uppercase separated by a comma. (Encryption: RSA local)",
|
83
|
+
max_length=71,
|
84
|
+
null=True,
|
85
|
+
validators=[edc_consent.validators.FullNameValidator()],
|
86
|
+
verbose_name="Guardian's last and first name",
|
87
|
+
),
|
88
|
+
),
|
89
|
+
migrations.AlterField(
|
90
|
+
model_name="historicalsubjectconsentv1",
|
91
|
+
name="last_name",
|
92
|
+
field=django_crypto_fields.fields.encrypted_char_field.EncryptedCharField(
|
93
|
+
blank=True,
|
94
|
+
help_text="Use UPPERCASE letters only. (Encryption: RSA local)",
|
95
|
+
max_length=71,
|
96
|
+
null=True,
|
97
|
+
validators=[
|
98
|
+
django.core.validators.RegexValidator(
|
99
|
+
message="Ensure name consist of letters only in upper case",
|
100
|
+
regex="^([A-Z]+$|[A-Z]+\\ [A-Z]+)$",
|
101
|
+
)
|
102
|
+
],
|
103
|
+
verbose_name="Surname",
|
104
|
+
),
|
105
|
+
),
|
106
|
+
migrations.AlterField(
|
107
|
+
model_name="subjectconsent",
|
108
|
+
name="first_name",
|
109
|
+
field=django_crypto_fields.fields.encrypted_char_field.EncryptedCharField(
|
110
|
+
blank=True,
|
111
|
+
help_text="Use UPPERCASE letters only. (Encryption: RSA local)",
|
112
|
+
max_length=71,
|
113
|
+
null=True,
|
114
|
+
validators=[
|
115
|
+
django.core.validators.RegexValidator(
|
116
|
+
message="Ensure name consist of letters only in upper case",
|
117
|
+
regex="^([A-Z]+$|[A-Z]+\\ [A-Z]+)$",
|
118
|
+
)
|
119
|
+
],
|
120
|
+
),
|
121
|
+
),
|
122
|
+
migrations.AlterField(
|
123
|
+
model_name="subjectconsent",
|
124
|
+
name="guardian_name",
|
125
|
+
field=django_crypto_fields.fields.encrypted_char_field.EncryptedCharField(
|
126
|
+
blank=True,
|
127
|
+
help_text="Required only if participant is a minor.<BR>Format is 'LASTNAME, FIRSTNAME'. All uppercase separated by a comma. (Encryption: RSA local)",
|
128
|
+
max_length=71,
|
129
|
+
null=True,
|
130
|
+
validators=[edc_consent.validators.FullNameValidator()],
|
131
|
+
verbose_name="Guardian's last and first name",
|
132
|
+
),
|
133
|
+
),
|
134
|
+
migrations.AlterField(
|
135
|
+
model_name="subjectconsent",
|
136
|
+
name="last_name",
|
137
|
+
field=django_crypto_fields.fields.encrypted_char_field.EncryptedCharField(
|
138
|
+
blank=True,
|
139
|
+
help_text="Use UPPERCASE letters only. (Encryption: RSA local)",
|
140
|
+
max_length=71,
|
141
|
+
null=True,
|
142
|
+
validators=[
|
143
|
+
django.core.validators.RegexValidator(
|
144
|
+
message="Ensure name consist of letters only in upper case",
|
145
|
+
regex="^([A-Z]+$|[A-Z]+\\ [A-Z]+)$",
|
146
|
+
)
|
147
|
+
],
|
148
|
+
verbose_name="Surname",
|
149
|
+
),
|
150
|
+
),
|
151
|
+
]
|