Base classes for CRFs in clinicedc/edc projects
Project description
edc_crf
In longitudinal clinical trials, CRFs (case report forms) are the most common data collection forms required in the data collection schedule.
In addition to the logic checks that you will add for a specfic CRF, you also need to validate a few general conditions. Most of these conditions are checked relative to the report_datetime of the CRF data being submitted. Some examples are:
that a participant is consented and that their consent is still valid on the report_datetime;
that the CRF report_datetime makes sense relative to the covering visit report report_datetime;
that the participant is enrolled to the schedule (onschedule) on or after the report_datetime and has not been taken off the schedule (offschedule) on or before the report_datetime;
that the participant has not been taken off study on or before the report_datetime.
CRF forms
The CrfModelFormMixin is used for all CRF modelforms. With this single mixin the form:
Checks for the consent relative to report datetime and this schedule (edc_consent);
checks if participant is on/off schedule relative to report datetime and this schedule (edc_visit_schedule);
validates subject_visit report datetime (edc_visit_tracking);
checks if participant is offstudy relative to report datetime (edc_offstudy).
If any of the above conditions fail, a forms.ValidationError is raised.
The mixin imports mixins functionality from edc_consent, edc_visit_schedule, edc_visit_tracking, and edc_offstudy.
from django import forms
from edc_crf.modelform_mixins import CrfModelFormMixin
from edc_form_validators import FormValidator
from ..models import FollowupVitals
class MyCrfFormValidator(FormValidator):
pass
class MyCrfForm(CrfModelFormMixin, forms.ModelForm):
form_validator_cls = MyCrfFormValidator
class Meta:
model = MyCrf
fields = "__all__"
CRF models
Similar to the CrfModelFormMixin, the CrfModelMixin is used for all CRF models and checks for the same conditions. However, if any of the conditions is met, an exception is raised. You should render CRF models with a modelform class using the CRFModelFormMixin to catch these exceptions on the form where the user can respond.
class MyCrf(CrfModelMixin, BaseUuidModel):
weight_determination = models.CharField(
verbose_name="Is weight estimated or measured?",
max_length=15,
choices=WEIGHT_DETERMINATION,
)
class Meta(CrfModelMixin.Meta, BaseUuidModel.Meta):
verbose_name = "My CRF"
verbose_name_plural = "My CRFs"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file edc-crf-0.3.62.tar.gz
.
File metadata
- Download URL: edc-crf-0.3.62.tar.gz
- Upload date:
- Size: 42.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c528a7e56725a12b81a7d954a749b96a6c728c482acf24aef2b2b33c7d137c5c |
|
MD5 | df96fc066eb4d1f068fa9f90dd07af5f |
|
BLAKE2b-256 | 180cabf9b681b8d8683ef39379124908e29288a7e68a2dd80ca545ced4f8722c |
File details
Details for the file edc_crf-0.3.62-py3-none-any.whl
.
File metadata
- Download URL: edc_crf-0.3.62-py3-none-any.whl
- Upload date:
- Size: 50.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96388c9c4bb16204b3229283913c3a241a255bec8e1276665d428f9dcd867b78 |
|
MD5 | 60382903e31a9d3f8c72b9002856b3bb |
|
BLAKE2b-256 | fd6b0f02553fd519b1e653d44875ffa5b1c7122546d4cdfbd18e38b86766c0f2 |