Skip to main content

Patient registration module for clinicedc/edc projects

Project description

pypi actions codecov downloads

edc-registration

The model RegisteredSubject is used by the Edc as the master subject registration table. Only one record may exist per individual. The table has space for PII so typically a RegisteredSubject instance is created or updated on completion of the informed consent. As always, PII in the Edc is encrypted at rest using django-crypto-field.

For the model and signal to be registered you need to add the AppConfig to your INSTALLED_APPS:

INSTALLED_APPS = (
    ....
    'edc_registration.apps.AppConfig',
    ....
)

UpdatesOrCreatesRegistrationModelMixin

RegisteredSubject is never edited directly by the user. Instead some other model with the needed attributes is used as a proxy. To have a model perform the task of creating or updating RegisteredSubject, declare it with the UpdatesOrCreatesRegistrationModelMixin.

For example, a model, SubjectEligibility or a screening model creates or updates RegisteredSubject without a subject identifier then a model such as the SubjectConsent in tests.models, also creates or updates a subject’s RegisteredSubject instance on save. For this to happen, both models are declared with the UpdatesOrCreatesRegistrationModelMixin:

class SubjectEligibility(UniqueSubjectIdentifierModelMixin,
                         UpdatesOrCreatesRegistrationModelMixin, BaseUuidModel):

    screening_identifier = models.CharField(
        max_length=36,
        null=True,
        unique=True)

    @property
    def registration_unique_field(self):
        return 'screening_identifier'

    def update_subject_identifier_on_save(self):
        """Overridden to not set the subject identifier on save.
        """
        if not self.subject_identifier:
            self.subject_identifier = self.subject_identifier_as_pk.hex
            self.subject_identifier_aka = self.subject_identifier_as_pk.hex
        return self.subject_identifier

class SubjectConsent(
    ConsentModelMixin, UpdatesOrCreatesRegistrationModelMixin,
    CreateAppointmentsMixin, IdentityFieldsMixin, ReviewFieldsMixin,
    PersonalFieldsMixin, CitizenFieldsMixin, VulnerabilityFieldsMixin,
    BaseUuidModel):

            @property
        def registration_unique_field(self):
            return 'screening_identifier'

        class Meta:
            app_label = 'my_app'

The property registration_unique_field returns a model attribute that is used to set a registration identifier on RegisteredSubject.

A subject’s RegisteredSubject instance is created and updated in a post_save signal. As mentioned, it is never edited directly by the user.

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

edc-registration-0.3.16.tar.gz (34.3 kB view details)

Uploaded Source

Built Distribution

edc_registration-0.3.16-py3-none-any.whl (45.4 kB view details)

Uploaded Python 3

File details

Details for the file edc-registration-0.3.16.tar.gz.

File metadata

  • Download URL: edc-registration-0.3.16.tar.gz
  • Upload date:
  • Size: 34.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.9

File hashes

Hashes for edc-registration-0.3.16.tar.gz
Algorithm Hash digest
SHA256 86d778a19dcbba1934517deaab9f59d335962596c49a5fbb9f314a31c5fa87e9
MD5 86305a7411cfb135fa3ba72649500813
BLAKE2b-256 a36b760f4ff461645e2bafb05304c443e57f469e83ee75325ad143f251958f5b

See more details on using hashes here.

File details

Details for the file edc_registration-0.3.16-py3-none-any.whl.

File metadata

File hashes

Hashes for edc_registration-0.3.16-py3-none-any.whl
Algorithm Hash digest
SHA256 d0f0556fd6e1156c52656240f4e6bbe1b516de512cf03baf90634bd952bc9512
MD5 5cb6ae5f6194b1d6a63412a598f62aad
BLAKE2b-256 5fe6db39b95100f5a30202e2096d6d9b3c31ba8333eebd4dd04ba18dd683a947

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page