Base django classes for health economics
Project description
edc-he
Health economics model, form mixins for clinicedc / Django
Declare in settings if using concrete models not included in this app:
EDC_HE_ASSETS_MODEL = "<label_lower>" EDC_HE_HOUSEHOLDHEAD_MODEL = "<label_lower>" EDC_HE_INCOME_MODEL = "<label_lower>" EDC_HE_PATIENT_MODEL = "<label_lower>" EDC_HE_PROPERTY_MODEL = "<label_lower>"
See also module intecomm_subject at https://github.com/intecomm-trial/intecomm-edc.
If you need to declare the Health Economics models in your app, use the provided model mixins.
For example, the HealthEconomicsHouseholdHead model would be declared like this:
# models.py
class HealthEconomicsHouseholdHead(
SingletonCrfModelMixin,
HouseholdHeadModelMixin,
HouseholdModelMixin,
CrfModelMixin,
BaseUuidModel,
):
class Meta(CrfModelMixin.Meta, BaseUuidModel.Meta):
verbose_name = "Health Economics: Household head"
verbose_name_plural = "Health Economics: Household head"
# forms.py
class HealthEconomicsHouseholdHeadForm(
CrfSingletonModelFormMixin, CrfModelFormMixin, forms.ModelForm
):
form_validator_cls = HealthEconomicsHouseholdHeadFormValidator
def clean(self):
self.raise_if_singleton_exists()
raise_if_clinical_review_does_not_exist(self.cleaned_data.get("subject_visit"))
return super().clean()
# admin.py
@admin.register(HealthEconomicsHouseholdHead, site=intecomm_subject_admin)
class HealthEconomicsHouseholdHeadAdmin(
HealthEconomicsHouseholdHeadModelAdminMixin, CrfModelAdmin
):
form = HealthEconomicsHouseholdHeadForm
The metadata rules may also be declared locally
# metadata_rules.py
from edc_he.rule_groups import Predicates as BaseHealthEconomicsPredicates
from edc_he.rule_groups import HealthEconomicsRuleGroup as BaseHealthEconomicsRuleGroup
class HealthEconomicsPredicates(BaseHealthEconomicsPredicates):
app_label = "intecomm_subject"
visit_model = "intecomm_subject.subjectvisit"
@register()
class HealthEconomicsRuleGroup(BaseHealthEconomicsRuleGroup):
class Meta:
app_label = "intecomm_subject"
source_model = "intecomm_subject.subjectvisit"
predicates = HealthEconomicsPredicates()
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-he-0.3.4.tar.gz
(76.1 kB
view details)
Built Distribution
edc_he-0.3.4-py3-none-any.whl
(100.6 kB
view details)
File details
Details for the file edc-he-0.3.4.tar.gz
.
File metadata
- Download URL: edc-he-0.3.4.tar.gz
- Upload date:
- Size: 76.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1968f8f5d45219cbf58aec81602a991ee7e214341fac7ac73b7386e75bea1d2 |
|
MD5 | 7df155c1c2bf21ac22f705eb25b7e3da |
|
BLAKE2b-256 | b34d278d93f23591c78180a3f7babbd0bd3eaddececdb2a728c65d048e4479b1 |
File details
Details for the file edc_he-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: edc_he-0.3.4-py3-none-any.whl
- Upload date:
- Size: 100.6 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 | 2da3dcf21e781a97090d5169ce3e10fd315690a56b24be3fce5e34307baf9de4 |
|
MD5 | 36c2dc5e9ba5943fcc2751ed3af7293a |
|
BLAKE2b-256 | 9592f21978a122a58a3d245b0e7890f881e7a365ad98e44c22db49f951d5eb42 |