meta-edc 0.3.29__py3-none-any.whl → 0.3.30__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- meta_ae/action_items.py +2 -2
- meta_edc/settings/defaults.py +0 -1
- {meta_edc-0.3.29.dist-info → meta_edc-0.3.30.dist-info}/METADATA +2 -2
- {meta_edc-0.3.29.dist-info → meta_edc-0.3.30.dist-info}/RECORD +51 -36
- {meta_edc-0.3.29.dist-info → meta_edc-0.3.30.dist-info}/WHEEL +1 -1
- meta_reports/admin/__init__.py +4 -3
- meta_reports/admin/{unmanaged → dbviews}/__init__.py +1 -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/modeladmin_mixins.py +1 -5
- 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 +87 -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/models/__init__.py +1 -0
- meta_reports/models/dbviews/__init__.py +1 -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/qa_cases.py +25 -23
- meta_reports/models/dbviews/on_study_missing_values/view_definition.py +2 -5
- meta_reports/tests/test_sql_gen.py +5 -0
- meta_subject/action_items.py +2 -2
- meta_subject/admin/__init__.py +1 -0
- 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/forms/__init__.py +1 -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/migrations/0212_auto_20240827_2222.py +23 -0
- meta_subject/migrations/0213_rename_bloodresultslipid_bloodresultslipids_and_more.py +35 -0
- meta_subject/models/__init__.py +1 -1
- meta_subject/models/blood_results/__init__.py +1 -1
- meta_subject/models/blood_results/{blood_results_lipid.py → blood_results_lipids.py} +3 -3
- meta_visit_schedule/visit_schedules/phase_three/crfs.py +6 -6
- {meta_edc-0.3.29.dist-info → meta_edc-0.3.30.dist-info}/AUTHORS +0 -0
- {meta_edc-0.3.29.dist-info → meta_edc-0.3.30.dist-info}/LICENSE +0 -0
- {meta_edc-0.3.29.dist-info → meta_edc-0.3.30.dist-info}/top_level.txt +0 -0
- /meta_reports/admin/{unmanaged → dbviews}/glucose_summary_admin.py +0 -0
- /meta_reports/admin/{unmanaged → dbviews}/missing_screening_ogtt_admin/__init__.py +0 -0
- /meta_reports/admin/{unmanaged → dbviews}/missing_screening_ogtt_admin/note_model_admin.py +0 -0
- /meta_reports/admin/{unmanaged → dbviews}/missing_screening_ogtt_admin/unmanaged_model_admin.py +0 -0
- /meta_reports/admin/{unmanaged → dbviews}/on_study_missing_values_admin/__init__.py +0 -0
- /meta_reports/admin/{unmanaged → dbviews}/on_study_missing_values_admin/unmanaged_model_admin.py +0 -0
- /meta_reports/admin/{unmanaged → dbviews}/patient_history_missing_baseline_cd4_admin.py +0 -0
- /meta_reports/admin/{unmanaged → dbviews}/unattended_three_in_row2_admin.py +0 -0
- /meta_reports/admin/{unmanaged → dbviews}/unattended_three_in_row_admin.py +0 -0
- /meta_reports/admin/{unmanaged → dbviews}/unattended_two_in_row_admin.py +0 -0
meta_ae/action_items.py
CHANGED
@@ -11,11 +11,11 @@ from edc_adverse_event.constants import (
|
|
11
11
|
DEATH_REPORT_TMG_ACTION,
|
12
12
|
)
|
13
13
|
from edc_constants.constants import CLOSED, DEAD, HIGH_PRIORITY, NO, YES
|
14
|
-
from edc_lab_results import BLOOD_RESULTS_LIPID_ACTION
|
15
14
|
from edc_lab_results.constants import (
|
16
15
|
BLOOD_RESULTS_FBC_ACTION,
|
17
16
|
BLOOD_RESULTS_GLU_ACTION,
|
18
17
|
BLOOD_RESULTS_LFT_ACTION,
|
18
|
+
BLOOD_RESULTS_LIPIDS_ACTION,
|
19
19
|
BLOOD_RESULTS_RFT_ACTION,
|
20
20
|
)
|
21
21
|
from edc_ltfu.constants import LOST_TO_FOLLOWUP
|
@@ -85,7 +85,7 @@ class AeInitialAction(ActionWithNotification):
|
|
85
85
|
display_name = "Submit AE Initial Report"
|
86
86
|
notification_display_name = "AE Initial Report"
|
87
87
|
parent_action_names = [
|
88
|
-
|
88
|
+
BLOOD_RESULTS_LIPIDS_ACTION,
|
89
89
|
BLOOD_RESULTS_GLU_ACTION,
|
90
90
|
BLOOD_RESULTS_LFT_ACTION,
|
91
91
|
BLOOD_RESULTS_RFT_ACTION,
|
meta_edc/settings/defaults.py
CHANGED
@@ -512,7 +512,6 @@ if env("AWS_ENABLED"):
|
|
512
512
|
AWS_LOCATION = env.str("AWS_LOCATION")
|
513
513
|
AWS_IS_GZIPPED = True
|
514
514
|
STORAGES = {"staticfiles": {"BACKEND": "storages.backends.s3boto3.S3Boto3Storage"}}
|
515
|
-
# STATICFILES_STORAGE = "storages.backends.s3boto3.S3Boto3Storage"
|
516
515
|
STATIC_URL = f"{os.path.join(AWS_S3_CUSTOM_DOMAIN, AWS_LOCATION)}/"
|
517
516
|
STATIC_ROOT = ""
|
518
517
|
elif DEBUG:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: meta-edc
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.30
|
4
4
|
Summary: META Trial EDC (http://www.isrctn.com/ISRCTN76157257)
|
5
5
|
Home-page: https://github.com/meta-trial/meta-edc
|
6
6
|
Author: Erik van Widenfelt
|
@@ -20,7 +20,7 @@ Requires-Python: >=3.12
|
|
20
20
|
Description-Content-Type: text/x-rst
|
21
21
|
License-File: LICENSE
|
22
22
|
License-File: AUTHORS
|
23
|
-
Requires-Dist: edc ==0.6.
|
23
|
+
Requires-Dist: edc ==0.6.8
|
24
24
|
Requires-Dist: edc-microscopy
|
25
25
|
Requires-Dist: beautifulsoup4
|
26
26
|
Requires-Dist: edc-analytics
|
@@ -1,5 +1,5 @@
|
|
1
1
|
meta_ae/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
meta_ae/action_items.py,sha256=
|
2
|
+
meta_ae/action_items.py,sha256=RpPqscguWKDc_n50gwI213jzTlGPHzGmIN4l7ODwM2U,11235
|
3
3
|
meta_ae/admin_site.py,sha256=5nx3fbd14u5KJbpFXow_XpG9gfYhdoYe4NFasFVKMMs,159
|
4
4
|
meta_ae/apps.py,sha256=tSj7MhDY6SxB0f1nXGPvodeTPiGFoRtrQGQd6M42egI,284
|
5
5
|
meta_ae/baker_recipes.py,sha256=q4VWJRy2n-qSGQA9IskF3OvzorcQqYs_vO3vYkHYOjs,1184
|
@@ -233,7 +233,7 @@ meta_edc/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
233
233
|
meta_edc/management/commands/update_forms_reference.py,sha256=_DiCqhHUk8lGhDGlsjOA069EE-g7UBDlZQCH6L1xiHo,1003
|
234
234
|
meta_edc/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
235
235
|
meta_edc/settings/debug.py,sha256=-PvZN-nPpEBr49ndpBHFcV71SDu1tAXmVfKESDFIr4Q,947
|
236
|
-
meta_edc/settings/defaults.py,sha256=
|
236
|
+
meta_edc/settings/defaults.py,sha256=V7_2rZ6hQRix_pfzkzM4pAf_RSTQXDX3wCvsqGqadvs,18602
|
237
237
|
meta_edc/settings/live.py,sha256=uLTlsIc3H6gdE_7pkL6vyOVa6V_74hnXFkiojqGFAYY,264
|
238
238
|
meta_edc/settings/logging.py,sha256=6qVUE37OMkf5rzwTmMq4krFsZ2jcyCpWdFtGih_Cs4U,1938
|
239
239
|
meta_edc/settings/minimal.py,sha256=3z-7GBluflnUkuSotKZlYvpL34NZ6tfFNuQNJLCyflo,592
|
@@ -434,22 +434,24 @@ meta_reports/pdf_report.py,sha256=9lWnRc_BNieDFXC4VgA0QHK6g_ct58u8tupPRsbRvV0,23
|
|
434
434
|
meta_reports/tasks.py,sha256=wPzfm99Hox1AIvt1KxYg1r6g9v8ta2AHOHesoN6AxEk,370
|
435
435
|
meta_reports/urls.py,sha256=_c6AMrK4U5MsyFSU2JSPNfiZlbhuw24C7CyPNYpqGd0,206
|
436
436
|
meta_reports/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
437
|
-
meta_reports/admin/__init__.py,sha256=
|
437
|
+
meta_reports/admin/__init__.py,sha256=W9unT8v7A8yHLn0WS8Wn4ZRk6W32POBS-ePh1UA-DHE,407
|
438
438
|
meta_reports/admin/endpoints_admin.py,sha256=L4mDLNIkR6203RI3ImBYel2kevaH_Nwa6KMYuoDwyNU,518
|
439
439
|
meta_reports/admin/endpoints_all_admin.py,sha256=_czdezZf9fSjwZJmO-3HbmdXrXP6nk8-HdiweqUzPRE,476
|
440
440
|
meta_reports/admin/list_filters.py,sha256=pByBzz9-qGwqBfdZFlByxJUZDTJQXOTWfNLjmK8KF00,870
|
441
|
-
meta_reports/admin/modeladmin_mixins.py,sha256=
|
442
|
-
meta_reports/admin/
|
443
|
-
meta_reports/admin/
|
444
|
-
meta_reports/admin/
|
445
|
-
meta_reports/admin/
|
446
|
-
meta_reports/admin/
|
447
|
-
meta_reports/admin/
|
448
|
-
meta_reports/admin/
|
449
|
-
meta_reports/admin/
|
450
|
-
meta_reports/admin/
|
451
|
-
meta_reports/admin/
|
452
|
-
meta_reports/admin/
|
441
|
+
meta_reports/admin/modeladmin_mixins.py,sha256=9Fv3G3dPGl5EVlmKw2zhEsxEoTKAA2wOdET9vdVuWZ0,3669
|
442
|
+
meta_reports/admin/dbviews/__init__.py,sha256=5NoJxTvBaZX0hJnE9Bf-HyJBEgGd59Hebj50Q23gguk,616
|
443
|
+
meta_reports/admin/dbviews/glucose_summary_admin.py,sha256=NqnDKx5l0Q-2xxRGdnf50DaRX1Sn8-DC0jHSk96LkRo,4005
|
444
|
+
meta_reports/admin/dbviews/patient_history_missing_baseline_cd4_admin.py,sha256=XyroEqxlX816xrdi0IVSelNPxPBWi96niKa-MQVGkck,2058
|
445
|
+
meta_reports/admin/dbviews/unattended_three_in_row2_admin.py,sha256=0r13KRr0gsH2osmSlffRV11SpSBpWM612AYl-GOoYm0,1347
|
446
|
+
meta_reports/admin/dbviews/unattended_three_in_row_admin.py,sha256=i_-H3pMXRjssf8jFw8gJ8_b0FaM4tX2AI4xfHQDyssU,1121
|
447
|
+
meta_reports/admin/dbviews/unattended_two_in_row_admin.py,sha256=tbnga05uTMgdK8ULsKYV7IuyhyPe0e-JpbMm6etU6Pk,1062
|
448
|
+
meta_reports/admin/dbviews/missing_screening_ogtt_admin/__init__.py,sha256=UZMypicuUuZ2jD2Rf0hcDUi-oBUf7_3fgyV5KacIJtE,117
|
449
|
+
meta_reports/admin/dbviews/missing_screening_ogtt_admin/note_model_admin.py,sha256=RcksbJ9HinK71iN9Pr_xMp-voj17pBqjLZpfMTJ7300,1357
|
450
|
+
meta_reports/admin/dbviews/missing_screening_ogtt_admin/unmanaged_model_admin.py,sha256=1pWmmqk6LADkPWqyxcS8nwC-KwMjuN8O7fmG_AbcA3g,2644
|
451
|
+
meta_reports/admin/dbviews/on_study_missing_lab_values_admin/__init__.py,sha256=uEdeiEhZ5g9qwpB5gIwkc_istTf-CknIlBh-A3lMVmI,64
|
452
|
+
meta_reports/admin/dbviews/on_study_missing_lab_values_admin/unmanaged_model_admin.py,sha256=kG9mR7nqHgwJ8JZzvRTlh3M0pXOdWVTnNgdHcr0C_X0,433
|
453
|
+
meta_reports/admin/dbviews/on_study_missing_values_admin/__init__.py,sha256=6JBeWQzw56s-LvIBlhHVSys5HviEkAF2Xt8REJNeYOI,61
|
454
|
+
meta_reports/admin/dbviews/on_study_missing_values_admin/unmanaged_model_admin.py,sha256=kCgKIxVTsEeIxdl1NfytR8JXEPw7cStJ_Lqc-VuHdkY,503
|
453
455
|
meta_reports/forms/__init__.py,sha256=F5AIupgum2dWL1_HqQCjLkrpMzjQ2dbo065hlkXBTNY,56
|
454
456
|
meta_reports/forms/missing_ogtt_note_form.py,sha256=nUG5uNqE-U6KtY9m-S48bricyERKHd95GkWn364oT1Q,1445
|
455
457
|
meta_reports/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -495,12 +497,18 @@ meta_reports/migrations/0037_historicalmissingogttnote_result_status_and_more.py
|
|
495
497
|
meta_reports/migrations/0038_alter_historicalmissingogttnote_fasting_and_more.py,sha256=-HljbT033-M0XZanZfcEA8jXmW3vhLoigdEC3hE5jOs,1010
|
496
498
|
meta_reports/migrations/0039_onstudymissingvalues.py,sha256=Tpr_0vujhzWEDYKKBNJevwJ6dkv22ImPIMcv1HQNqwk,1889
|
497
499
|
meta_reports/migrations/0040_auto_20240824_0412.py,sha256=mgUvizbsZUqEVDxu4EMymJ0L2vKaoAxyhjZkc1dUFDI,67126
|
500
|
+
meta_reports/migrations/0041_auto_20240828_2229.py,sha256=BpbbBqzo9WED5owo30w-UBDX9ReJfOxQjyFEsNCMcp0,302
|
501
|
+
meta_reports/migrations/0042_onstudymissinglabvalues.py,sha256=zSEgSrjOe19d3s9XoPkx9ZzirchII9KQblU-cnrcEyY,1783
|
502
|
+
meta_reports/migrations/0043_auto_20240828_2309.py,sha256=AAlPRv6b6nE7QDwfyvY-GF9Q_EgiIdqiL_qDr3PpypE,88807
|
503
|
+
meta_reports/migrations/0044_auto_20240828_2323.py,sha256=oOuxdpmk3NjdkljjqtSHOPv-C2cFNgHquTz-qjPwff4,143236
|
504
|
+
meta_reports/migrations/0045_auto_20240829_0248.py,sha256=V9F3yLQsbvUL40Fei3FrhBB4t7eReGGW4tnkx2lAjrw,33850
|
505
|
+
meta_reports/migrations/0046_auto_20240829_0250.py,sha256=lKVlj7LrkOJ49LJxccYvQdYEZhnSKTcZEcZMYj7h9q8,30676
|
498
506
|
meta_reports/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
499
|
-
meta_reports/models/__init__.py,sha256=
|
507
|
+
meta_reports/models/__init__.py,sha256=1tv2jW-ZAwyC6g2SUvrSGkmuLYquupfut1qEQJqm5Z0,358
|
500
508
|
meta_reports/models/endpoints.py,sha256=HfxQuKkzu883xbTeVfIEktN-ARoGe1qC6KgEAzRtV5E,925
|
501
509
|
meta_reports/models/endpoints_proxy.py,sha256=3h3JGaPmnJedFPVWGrk4idV4YtdihqiCI5W7QomwG4E,318
|
502
510
|
meta_reports/models/dbviews/README,sha256=GdeboB7Xqb-Qo_rE1ondcxP8Ps93MIjLzCePQCePig0,686
|
503
|
-
meta_reports/models/dbviews/__init__.py,sha256=
|
511
|
+
meta_reports/models/dbviews/__init__.py,sha256=T7HZj0LAVw0kWKDV8c8aLrQj5gwwgEZ0wD5orCxImTQ,511
|
504
512
|
meta_reports/models/dbviews/glucose_summary/__init__.py,sha256=Tfgjso4TpxMCidAdRJp8g1Ykqqa43yWlQSotzAaORAo,93
|
505
513
|
meta_reports/models/dbviews/glucose_summary/unmanaged_model.py,sha256=uqhD5JLXtyQ94zpG5Puxodjzli3quE4GgiFi7en6EeM,1055
|
506
514
|
meta_reports/models/dbviews/glucose_summary/view_definition.py,sha256=Fc5KN-It9dcBvRta-b26kUl8uQEHA19vrYIhNRqe2Xo,1512
|
@@ -508,10 +516,14 @@ meta_reports/models/dbviews/missing_screening_ogtt/__init__.py,sha256=7uX_2HfVU-
|
|
508
516
|
meta_reports/models/dbviews/missing_screening_ogtt/note_model.py,sha256=JHItVS11WDFg3lTe7ayH9T7Epd-VvXXD_79FssrmAwc,1813
|
509
517
|
meta_reports/models/dbviews/missing_screening_ogtt/unmanaged_model.py,sha256=_XFzpOiMoxr-F0ebKNEnyXqS6dnb3P5tBRnZlbrQ2x8,1346
|
510
518
|
meta_reports/models/dbviews/missing_screening_ogtt/view_definition.py,sha256=xgTBpq-SKhuXkABy3wYgCfGXeC9xBLhiCAc8Qqy0HqQ,1042
|
519
|
+
meta_reports/models/dbviews/on_study_missing_lab_values/__init__.py,sha256=l7L5Cg5GAepqX7luWdGO51QYMyqkYk2rvhs8w4AvBtc,52
|
520
|
+
meta_reports/models/dbviews/on_study_missing_lab_values/qa_cases.py,sha256=QBptc03kMZqpZtLEyfqLPAcTHzwEoGMI9SPGbMQlx-k,1863
|
521
|
+
meta_reports/models/dbviews/on_study_missing_lab_values/unmanged_model.py,sha256=QI9T3K35pAAUMCiIbtwU_cf9kPodBfG9jwNeahPzTMQ,647
|
522
|
+
meta_reports/models/dbviews/on_study_missing_lab_values/view_definition.py,sha256=Z0dnJZZT7EokC0M2TVSCjcLU0SyFfjxydjYmHqZcNag,568
|
511
523
|
meta_reports/models/dbviews/on_study_missing_values/__init__.py,sha256=bxRAXRocUIdUCg9jARlztOE2co9LqgHbBOkU1Bykz9M,49
|
512
|
-
meta_reports/models/dbviews/on_study_missing_values/qa_cases.py,sha256=
|
524
|
+
meta_reports/models/dbviews/on_study_missing_values/qa_cases.py,sha256=pbs6VIY6_6gsz-zJqIQeu2U5TagcRmCCAV7OaZdy30A,1956
|
513
525
|
meta_reports/models/dbviews/on_study_missing_values/unmanged_model.py,sha256=TQptzrx1Xv-sE_3ioO9BZ1ZE7CKZG8JWXsFD6-ZxI8k,632
|
514
|
-
meta_reports/models/dbviews/on_study_missing_values/view_definition.py,sha256=
|
526
|
+
meta_reports/models/dbviews/on_study_missing_values/view_definition.py,sha256=W7MgZo51Y3nzQ7lUDtmZquRnC5ELdKGnpsscaCC9ouM,564
|
515
527
|
meta_reports/models/dbviews/patient_history_missing_baseline_cd4/__init__.py,sha256=eIyKY9mdIE3-J2vtQtY7MOg_RQkwKj7aserwO5PBNQQ,62
|
516
528
|
meta_reports/models/dbviews/patient_history_missing_baseline_cd4/unmanaged_model.py,sha256=7TbSZJLdprIO8FvVq5a_MUXgiEvqAZ5NrirQVfH8Fnk,957
|
517
529
|
meta_reports/models/dbviews/patient_history_missing_baseline_cd4/view_definition.py,sha256=tO7f3l6IjaAMxJjgHcPuq4dy2wfj0DxQ2YqM-IY99ow,848
|
@@ -539,6 +551,7 @@ meta_reports/templates/meta_reports/endpoints_change_list_note.html,sha256=3WdEH
|
|
539
551
|
meta_reports/templates/meta_reports/columns/subject_identifier_column.html,sha256=BSjZRpQOwVRQbSq5H0S4KICt1A6Ecyqti-Ut1e_9HbM,109
|
540
552
|
meta_reports/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
541
553
|
meta_reports/tests/test_reports.py,sha256=P8Myql_Pbx--OMHjRq_BbvTaawD4V_MHkeVa_S_grK8,1293
|
554
|
+
meta_reports/tests/test_sql_gen.py,sha256=ZuRlAxTcHcbecPQ4q0kRBXsalkW9QCtKEd2M2hXgYwA,72
|
542
555
|
meta_reports/tests/urls.py,sha256=_sVCnQeiAFRYKhxga3_DjoKj_4bgs1s2gjcynDiapvA,111
|
543
556
|
meta_screening/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
544
557
|
meta_screening/admin_site.py,sha256=tncjQR99ll80ncle8mMl6k1LdctI50RkwT0u7VQFjC8,173
|
@@ -682,7 +695,7 @@ meta_stats/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
682
695
|
meta_stats/tests/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
683
696
|
meta_stats/tests/tests/test_incidence.py,sha256=Uxv05_xZ0hZKtTBDow3goRcQrK5644j9NQwyW9d_CX8,313
|
684
697
|
meta_subject/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
685
|
-
meta_subject/action_items.py,sha256=
|
698
|
+
meta_subject/action_items.py,sha256=Y0V_L6V8foKYEcZ8FxGLDfdiPoJNql47enKFRpClGeg,6642
|
686
699
|
meta_subject/admin_site.py,sha256=fxUn5QKgo6wYUG18HW11kVrPqWvmWV2_PzKbgZQM4pU,169
|
687
700
|
meta_subject/apps.py,sha256=iAQ8lizUpKa4gJnCGkTsuRQPtGWmSjnshZn8rZUguO8,289
|
688
701
|
meta_subject/baker_recipes.py,sha256=C8ag5z5MRczzb3MkYGL37DccQg1FykiLgxepBlitlh0,2741
|
@@ -690,7 +703,7 @@ meta_subject/choices.py,sha256=LjKRsEG0uGJow2BHshV_oKXdNYktNGn1Xj9H8SbGtBA,6782
|
|
690
703
|
meta_subject/constants.py,sha256=6rpHsHj3CPV7ntdWxYScRhPVoj4YIxX2lUZdZ9lrFN0,704
|
691
704
|
meta_subject/identifiers.py,sha256=pBYvMFXK7N2oNDMJJM2xLCvk0NuzLzzm15VqQ2Cp7Og,325
|
692
705
|
meta_subject/urls.py,sha256=v2fM0R9gvt8MWdZj9cRnYU8xvqecLK5b_8leYVEtYZI,206
|
693
|
-
meta_subject/admin/__init__.py,sha256=
|
706
|
+
meta_subject/admin/__init__.py,sha256=yMvCb_HcfG-7ZEee2R_HJJxKTobbpw1UTrneIwtbSuk,1734
|
694
707
|
meta_subject/admin/autocomplete_admin.py,sha256=bVxma7KTHhKHWqLPxbP2GwiGcHeBUyMutTDXZ2RomEY,1158
|
695
708
|
meta_subject/admin/birth_outcome_admin.py,sha256=_gWrpNgb3tF6zNL9jbEpvHyu4blf4uRSZovpuPtHrRU,3211
|
696
709
|
meta_subject/admin/complications_admin.py,sha256=qxaJVWW86Hg56T8IYfyM9SiP5IcPFNuMfIWBI9fqz90,1017
|
@@ -722,12 +735,12 @@ meta_subject/admin/subject_visit_admin.py,sha256=Ic3OrFtBsiHTB5sI8efWQkhPsuqu-1P
|
|
722
735
|
meta_subject/admin/subject_visit_missed_admin.py,sha256=vRLttLzVT1EbOHGVU1G-d5FNlySalX6g4_-0bRNr6GM,1414
|
723
736
|
meta_subject/admin/urine_dipstick_test_admin.py,sha256=5TnQi_bbIC7na8upK4Bpl_Lr6ErryoEN3IB_G0bqLbk,1144
|
724
737
|
meta_subject/admin/urine_pregnancy_admin.py,sha256=P-1Io3rsYk0Cr32OtyPvThNP-Beqd2ARgRWzCZmQAWE,1037
|
725
|
-
meta_subject/admin/blood_results/__init__.py,sha256=
|
738
|
+
meta_subject/admin/blood_results/__init__.py,sha256=WpQmQzHxy1rIzVu44VA5recdLRWL8VIrH5bR5Gzp0O8,358
|
726
739
|
meta_subject/admin/blood_results/blood_results_fbc_admin.py,sha256=K4KL-44nIDssoj_S3JruhpY25T7ZzEAawGBzeYuj_fo,799
|
727
740
|
meta_subject/admin/blood_results/blood_results_hba1c_admin.py,sha256=gQmaaV0fffYSmUU3j7nrf8lWd7dFoGnYBL9oYzFfINg,861
|
728
741
|
meta_subject/admin/blood_results/blood_results_ins_admin.py,sha256=hnxCgoGjFmM67N0dPcjG137pF-B1SFZr2WYs1-b0MOI,822
|
729
742
|
meta_subject/admin/blood_results/blood_results_lft_admin.py,sha256=aPLnneUejBG_3lyQh54aRllPv1SV_fIQNAdtNX3-qmE,822
|
730
|
-
meta_subject/admin/blood_results/
|
743
|
+
meta_subject/admin/blood_results/blood_results_lipids_admin.py,sha256=Uc6DMjnaC8K7hndWdigdHpMbVKIDVBn34k1QGrNIYes,843
|
731
744
|
meta_subject/admin/blood_results/blood_results_rft_admin.py,sha256=eG-ZpIJQxBY7qZJDZH_Pv1D5YlhjIXvGU1OvVUoXLDs,5120
|
732
745
|
meta_subject/admin/diabetes/__init__.py,sha256=vWnGykomxyo1ShL7sGvh0A7lL9m3vZm0VgcLsPfUZTI,94
|
733
746
|
meta_subject/admin/diabetes/dm_endpoint_admin.py,sha256=YIbitcs6ximnAm8IYSMCFnnA47hTmFRgc00UfeN4v64,1009
|
@@ -744,7 +757,7 @@ meta_subject/form_validators/egfr_drop_notification_form_validator.py,sha256=y5M
|
|
744
757
|
meta_subject/form_validators/followup_examination_form_validator.py,sha256=NS3Sa-bwC_HEe-CmezkFrbbjPanLe9p1v5ZOFspqgxg,4241
|
745
758
|
meta_subject/form_validators/glucose_form_validator.py,sha256=ebtWmJo_0z8mlZzH377q4aTa9kY2R3CfCT5WtRxARb8,3371
|
746
759
|
meta_subject/form_validators/health_economics_form_validator.py,sha256=kp-LQU4ydBXlnYFt-0xKuVSb8Y4irlhz9d_X8ppvWgE,250
|
747
|
-
meta_subject/forms/__init__.py,sha256
|
760
|
+
meta_subject/forms/__init__.py,sha256=1uQ6CIF9MA8KfrM0u_a_Z_eOC1JjGlF3k7MEkqD3XCI,1700
|
748
761
|
meta_subject/forms/birth_outcomes_form.py,sha256=qqhZNQKiYk8C8CFebZTQB0hOm4ONrgkTG7hfuK7kW-o,374
|
749
762
|
meta_subject/forms/complications_glycemia_form.py,sha256=yTm3qRDJ1wPuukmpf0s0lg-oXi8fZ5Y7D7T9V-CsOXk,375
|
750
763
|
meta_subject/forms/concomitant_medication_form.py,sha256=eznM4YOSV0eSsc-qaQgkga76T76Oz6i8svyBaleW-gQ,375
|
@@ -773,12 +786,12 @@ meta_subject/forms/subject_visit_form.py,sha256=Zxyjb5-7wUmcLHD-M76ofuM8Vr92yzjv
|
|
773
786
|
meta_subject/forms/subject_visit_missed_form.py,sha256=Qrvo2A8836CspOKll_iN3a6U6ttzz1TFNbEbJRrg62g,2275
|
774
787
|
meta_subject/forms/urine_dipstick_test_form.py,sha256=CvkcwyT9fI-Y7vQ2_Ow9cuL03ySrJma87KKD7BO9y-Q,827
|
775
788
|
meta_subject/forms/urine_pregnancy_form.py,sha256=1IvpidMAtAgUM4voUgiCjaow9ueSYAr3YiUzX33ifK0,1267
|
776
|
-
meta_subject/forms/blood_results/__init__.py,sha256=
|
789
|
+
meta_subject/forms/blood_results/__init__.py,sha256=69V0yuN48oXg14pD7yzf2RpO3pWvVDZE580RCOrQCm4,346
|
777
790
|
meta_subject/forms/blood_results/blood_results_fbc_form.py,sha256=g6m0HE9I3DIxDPgk6TZUPVU-vliOb3Fiqe3kDyN7h38,714
|
778
791
|
meta_subject/forms/blood_results/blood_results_hba1c_form.py,sha256=IoQSS8MnK8C9lP03BVxqKtH_zuXMrh9BAsSdec8KAR8,765
|
779
792
|
meta_subject/forms/blood_results/blood_results_ins_form.py,sha256=zKwobon8wRBrwpAMxonbXtR-Bg2wsJbcHraLjsqcAhY,722
|
780
793
|
meta_subject/forms/blood_results/blood_results_lft_form.py,sha256=WKCGZXTk9ndlASymnKKIAo0rBtE9uoE_gzKsx19p-LQ,714
|
781
|
-
meta_subject/forms/blood_results/
|
794
|
+
meta_subject/forms/blood_results/blood_results_lipids_form.py,sha256=YcqETGjN1LH_kKTGVD0a-gW4z6X3PmM8z1xQmI0-Yfg,735
|
782
795
|
meta_subject/forms/blood_results/blood_results_rft_form.py,sha256=y0pyR_Y2LTVhyVnf_VjpPAJhm2xDVuWwExhedfJrTYM,1362
|
783
796
|
meta_subject/forms/diabetes/__init__.py,sha256=oOtxUWSSI4aZVk5BBSKV44SGMwpw7zKZGrAk-dljPSk,90
|
784
797
|
meta_subject/forms/diabetes/dm_endpoint_form.py,sha256=ngmDqAauO_oLsTxEVtbT9-2jWFYYagSXAcBf66pT81I,349
|
@@ -1004,6 +1017,8 @@ meta_subject/migrations/0208_birthoutcomes_crf_status_and_more.py,sha256=_9oJpn4
|
|
1004
1017
|
meta_subject/migrations/0209_remove_historicaldmdxresult_dm_diagnosis_and_more.py,sha256=0m9ONqkmsH_gp1iGh22MqxRAqWo4xO4YvjyIMXOpF98,1168
|
1005
1018
|
meta_subject/migrations/0210_remove_dmdxresult_dm_diagnosis_and_more.py,sha256=_pbqJT7-O7RkPbIeQiKS9BaF3AysLQVTHiGrNkVwjeM,4106
|
1006
1019
|
meta_subject/migrations/0211_dmendpoint_endpoint_reached_and_more.py,sha256=e5lG4G_F4uPR862lOvR_rACONzyMpg5duH-39QXAxLA,1615
|
1020
|
+
meta_subject/migrations/0212_auto_20240827_2222.py,sha256=ClHxTDTE9Ft6w8qT2LMSfDkbQko_aAKO8ULQvAIB-2E,772
|
1021
|
+
meta_subject/migrations/0213_rename_bloodresultslipid_bloodresultslipids_and_more.py,sha256=51UvT_rl0R2phHX0-QCdJqIPbfDcWzVMWdONwhWQ7Ws,1129
|
1007
1022
|
meta_subject/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1008
1023
|
meta_subject/model_mixins/__init__.py,sha256=6DdDDOwDdagrz6Q7X9lxuAVszsFWFhwPqLz4JOD85Wo,286
|
1009
1024
|
meta_subject/model_mixins/arv_history_model_mixin.py,sha256=6ILacF2koyYmwZIFHmmQO1uIT1eWzrahXxhAlxpQiX0,2898
|
@@ -1011,7 +1026,7 @@ meta_subject/model_mixins/crf_model_mixin.py,sha256=UK1ycbYwaZ8LSNTJm74QJ5c-01HD
|
|
1011
1026
|
meta_subject/model_mixins/crf_with_action_model_mixin.py,sha256=q1Q16YyPjQlpDtCPOXRkO5C7Vr7JO_QL8xWC48Uz33M,298
|
1012
1027
|
meta_subject/model_mixins/search_slug_model_mixin.py,sha256=r5KmTykU0qV4JymMMKP2IBwAP8Z5hDnVJix-rO2PvME,296
|
1013
1028
|
meta_subject/model_mixins/vitals_fields_model_mixin.py,sha256=JYh0w1eEFLR_BCvzHb2ldwNIkyINbfvef-SL4_wA-NY,1160
|
1014
|
-
meta_subject/models/__init__.py,sha256=
|
1029
|
+
meta_subject/models/__init__.py,sha256=lsN0x_SG3N4J8-2tdxa9EerdUH3CqZIv68QtLKIIplg,1763
|
1015
1030
|
meta_subject/models/birth_outcomes.py,sha256=zikxatYZvL1qvnJ6JtVZ5aw8LCKLwQNXi6cP5F-5Jj0,3124
|
1016
1031
|
meta_subject/models/complications.py,sha256=lkUoM3wJ9GuCFkuBUVxbCRSWfl3UtiVNSoMmkPKQdzg,1849
|
1017
1032
|
meta_subject/models/complications_glycemia.py,sha256=2wHind-dDsPY5J4M0pUbRzjp72Brz990oDzCbF-V1CM,6056
|
@@ -1044,12 +1059,12 @@ meta_subject/models/subject_visit_missed.py,sha256=_qXuKzhFukRm5k44GgdT368MuOmOZ
|
|
1044
1059
|
meta_subject/models/todo.txt,sha256=dAnuu2h-f8PKCpVL67wQMnKm76reUvuLW9fxf5uJ7DM,247
|
1045
1060
|
meta_subject/models/urine_dipstick_test.py,sha256=T_IrBRAJ_6ckJUjT_MHKaOzfNkxk5zso0JCsroLM8jc,1178
|
1046
1061
|
meta_subject/models/urine_pregnancy.py,sha256=LVC4PonyoSbnMJJN0EVIZo7iCuBzm6-W6ne7YxHUBEY,1336
|
1047
|
-
meta_subject/models/blood_results/__init__.py,sha256=
|
1062
|
+
meta_subject/models/blood_results/__init__.py,sha256=j6_4aR0eA58TaErYyh_vFyIKaXVcGw5o97Foa7Ib2JE,292
|
1048
1063
|
meta_subject/models/blood_results/blood_results_fbc.py,sha256=kkOqCsqeIvCf2rw7vHGWMCEgo1_yiMDtTOi44aKtBro,1324
|
1049
1064
|
meta_subject/models/blood_results/blood_results_hba1c.py,sha256=KaPJhpRPmR_-9oRQ7cdiVPle9exGPZDxjMc6WeyS1mQ,1036
|
1050
1065
|
meta_subject/models/blood_results/blood_results_ins.py,sha256=uHHFdry5s70UGTxllAlN4hhF4rcC2ybc6mCV_Rd1lCY,1052
|
1051
1066
|
meta_subject/models/blood_results/blood_results_lft.py,sha256=VRWKM5292AuHd-BZDC9RHA9sb_xdPwlj2OIKeQAzpRE,1235
|
1052
|
-
meta_subject/models/blood_results/
|
1067
|
+
meta_subject/models/blood_results/blood_results_lipids.py,sha256=r0mJM_NwqtucwwlZoZQVFwI9Yf1SXWYDewxQMX5RI8U,1171
|
1053
1068
|
meta_subject/models/blood_results/blood_results_rft.py,sha256=QFwXCQ0mrfBAWHYGWjlYrNRzxX5a-80351Weu2xJtN4,1646
|
1054
1069
|
meta_subject/models/diabetes/__init__.py,sha256=d67PnZ0__BwYYosLc1f11Y0PzwKFKodt-hdrorzBRWg,72
|
1055
1070
|
meta_subject/models/diabetes/dm_endpoint.py,sha256=n8RC3PkTjs0BI4QP_-HWIAtnBQlxjNcGhjVpK9dWsGI,1858
|
@@ -1088,7 +1103,7 @@ meta_visit_schedule/tests/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
1088
1103
|
meta_visit_schedule/tests/tests/test_schedule.py,sha256=858fXo-PvbppgIsCAGll05fqnuWW6f-vMIwnvRLZgnc,7351
|
1089
1104
|
meta_visit_schedule/visit_schedules/__init__.py,sha256=j0Q8tAGhHHbFBd3R-iLRy4QB47WgtucWG7xCLLfVvFU,339
|
1090
1105
|
meta_visit_schedule/visit_schedules/phase_three/__init__.py,sha256=18ken4S10X0dkEFHj1EFO2M4xblXD04cjfhzIEkhYUQ,74
|
1091
|
-
meta_visit_schedule/visit_schedules/phase_three/crfs.py,sha256=
|
1106
|
+
meta_visit_schedule/visit_schedules/phase_three/crfs.py,sha256=OxTgjIxS1hNJwsGGeJlGcY7KJW0DDuo3wavXt_7BneY,15339
|
1092
1107
|
meta_visit_schedule/visit_schedules/phase_three/crfs_pregnancy.py,sha256=_I6IVLMC3-KlpI86eii790mlx-p2vxWxvNRKD927rXo,169
|
1093
1108
|
meta_visit_schedule/visit_schedules/phase_three/requisitions.py,sha256=Noeki8zX2MCwQVmCCWfuOyh_aN4YC-cyhUmrAZP8d5g,4579
|
1094
1109
|
meta_visit_schedule/visit_schedules/phase_three/schedule.py,sha256=J91AMawOdKWLJz_WAH897PJYr8264_Q_b8pZhI0Pj38,8228
|
@@ -1108,9 +1123,9 @@ tests/etc/user-rsa-restricted-private.pem,sha256=CUcHW9bznWdmmASN00hCzvxFPAFl4N2
|
|
1108
1123
|
tests/etc/user-rsa-restricted-public.pem,sha256=mt84djoL-uHw6Wc5SJh0zml6VzXulnf8eQSFg7-fheg,450
|
1109
1124
|
tests/etc/user-salt-local.key,sha256=x5anBw9fvbHurczouT3CjrkWb_xs7Ypm1htIJsgiuiw,256
|
1110
1125
|
tests/etc/user-salt-restricted.key,sha256=pxmpcfBRNB-4C6wTvHXz-9fOfJgKIFOjaAF8ZFfa4q4,256
|
1111
|
-
meta_edc-0.3.
|
1112
|
-
meta_edc-0.3.
|
1113
|
-
meta_edc-0.3.
|
1114
|
-
meta_edc-0.3.
|
1115
|
-
meta_edc-0.3.
|
1116
|
-
meta_edc-0.3.
|
1126
|
+
meta_edc-0.3.30.dist-info/AUTHORS,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1127
|
+
meta_edc-0.3.30.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
1128
|
+
meta_edc-0.3.30.dist-info/METADATA,sha256=5LwGcPvgiCEQScXdmUqPJZVX_-O6hn9YvNhh42NtZUM,2810
|
1129
|
+
meta_edc-0.3.30.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
1130
|
+
meta_edc-0.3.30.dist-info/top_level.txt,sha256=RkzjNXwRq2kg_uZ_1bDwPUntijSXoY2YBqtByDwvvrc,244
|
1131
|
+
meta_edc-0.3.30.dist-info/RECORD,,
|
meta_reports/admin/__init__.py
CHANGED
@@ -1,12 +1,13 @@
|
|
1
|
-
from .
|
2
|
-
from .endpoints_all_admin import EndpointsAllAdmin
|
3
|
-
from .unmanaged import (
|
1
|
+
from .dbviews import (
|
4
2
|
GlucoseSummaryAdmin,
|
5
3
|
MissingOgttNoteModelAdmin,
|
6
4
|
MissingScreeningOgttAdmin,
|
5
|
+
OnStudyMissingLabValuesAdmin,
|
7
6
|
OnStudyMissingValuesAdmin,
|
8
7
|
PatientHistoryMissingBaselineCd4Admin,
|
9
8
|
UnattendedThreeInRow2Admin,
|
10
9
|
UnattendedThreeInRowAdmin,
|
11
10
|
UnattendedTwoInRowAdmin,
|
12
11
|
)
|
12
|
+
from .endpoints_admin import EndpointsAdmin
|
13
|
+
from .endpoints_all_admin import EndpointsAllAdmin
|
@@ -3,6 +3,7 @@ from .missing_screening_ogtt_admin import (
|
|
3
3
|
MissingOgttNoteModelAdmin,
|
4
4
|
MissingScreeningOgttAdmin,
|
5
5
|
)
|
6
|
+
from .on_study_missing_lab_values_admin import OnStudyMissingLabValuesAdmin
|
6
7
|
from .on_study_missing_values_admin import OnStudyMissingValuesAdmin
|
7
8
|
from .patient_history_missing_baseline_cd4_admin import (
|
8
9
|
PatientHistoryMissingBaselineCd4Admin,
|
@@ -0,0 +1 @@
|
|
1
|
+
from .unmanaged_model_admin import OnStudyMissingLabValuesAdmin
|
@@ -0,0 +1,13 @@
|
|
1
|
+
from django.contrib import admin
|
2
|
+
from edc_qareports.modeladmin_mixins import OnStudyMissingValuesModelAdminMixin
|
3
|
+
|
4
|
+
from ....admin_site import meta_reports_admin
|
5
|
+
from ....models import OnStudyMissingLabValues
|
6
|
+
|
7
|
+
|
8
|
+
@admin.register(OnStudyMissingLabValues, site=meta_reports_admin)
|
9
|
+
class OnStudyMissingLabValuesAdmin(OnStudyMissingValuesModelAdminMixin, admin.ModelAdmin):
|
10
|
+
|
11
|
+
include_note_column: bool = True
|
12
|
+
|
13
|
+
instructions = ["ello"]
|
@@ -7,10 +7,7 @@ from django.db.models import QuerySet
|
|
7
7
|
from django.template.loader import render_to_string
|
8
8
|
from django.urls import reverse
|
9
9
|
from edc_model_admin.dashboard import ModelAdminDashboardMixin
|
10
|
-
from edc_model_admin.mixins import
|
11
|
-
ModelAdminFormInstructionsMixin,
|
12
|
-
TemplatesModelAdminMixin,
|
13
|
-
)
|
10
|
+
from edc_model_admin.mixins import TemplatesModelAdminMixin
|
14
11
|
from edc_qareports.modeladmin_mixins import QaReportModelAdminMixin
|
15
12
|
from edc_sites.admin import SiteModelAdminMixin
|
16
13
|
from edc_sites.admin.list_filters import SiteListFilter
|
@@ -35,7 +32,6 @@ class EndpointsModelAdminMixin(
|
|
35
32
|
QaReportModelAdminMixin,
|
36
33
|
SiteModelAdminMixin,
|
37
34
|
ModelAdminDashboardMixin,
|
38
|
-
ModelAdminFormInstructionsMixin,
|
39
35
|
TemplatesModelAdminMixin,
|
40
36
|
):
|
41
37
|
queryset_filter: dict | None = None
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Generated by Django 5.0.8 on 2024-08-28 19:29
|
2
|
+
|
3
|
+
import django_db_views.migration_functions
|
4
|
+
import django_db_views.operations
|
5
|
+
from django.db import migrations
|
6
|
+
|
7
|
+
|
8
|
+
class Migration(migrations.Migration):
|
9
|
+
|
10
|
+
dependencies = [
|
11
|
+
("meta_reports", "0040_auto_20240824_0412"),
|
12
|
+
]
|
13
|
+
|
14
|
+
operations = []
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Generated by Django 5.0.8 on 2024-08-28 19:49
|
2
|
+
|
3
|
+
from django.db import migrations, models
|
4
|
+
|
5
|
+
|
6
|
+
class Migration(migrations.Migration):
|
7
|
+
|
8
|
+
dependencies = [
|
9
|
+
("meta_reports", "0041_auto_20240828_2229"),
|
10
|
+
]
|
11
|
+
|
12
|
+
operations = [
|
13
|
+
migrations.CreateModel(
|
14
|
+
name="OnStudyMissingLabValues",
|
15
|
+
fields=[
|
16
|
+
(
|
17
|
+
"id",
|
18
|
+
models.BigAutoField(
|
19
|
+
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
|
20
|
+
),
|
21
|
+
),
|
22
|
+
("original_id", models.UUIDField(null=True)),
|
23
|
+
("label_lower", models.CharField(max_length=150, null=True)),
|
24
|
+
("subject_visit_id", models.UUIDField(null=True)),
|
25
|
+
("report_datetime", models.DateTimeField(null=True)),
|
26
|
+
("label", models.CharField(max_length=50, null=True)),
|
27
|
+
("visit_code", models.CharField(max_length=25, null=True)),
|
28
|
+
("visit_code_sequence", models.IntegerField(null=True)),
|
29
|
+
("schedule_name", models.CharField(max_length=25, null=True)),
|
30
|
+
("modified", models.DateTimeField(null=True)),
|
31
|
+
("report_model", models.CharField(max_length=50)),
|
32
|
+
("subject_identifier", models.CharField(max_length=25)),
|
33
|
+
("created", models.DateTimeField()),
|
34
|
+
],
|
35
|
+
options={
|
36
|
+
"verbose_name": "Missing Lab values for on-study patient",
|
37
|
+
"verbose_name_plural": "Missing Lab values for on-study patients",
|
38
|
+
"db_table": "onstudy_missing_lab_values_view",
|
39
|
+
"managed": False,
|
40
|
+
"default_permissions": ("view", "export", "viewallsites"),
|
41
|
+
},
|
42
|
+
),
|
43
|
+
]
|