meta-edc 1.1.18__py3-none-any.whl → 1.2.0__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.

Potentially problematic release.


This version of meta-edc might be problematic. Click here for more details.

Files changed (24) hide show
  1. meta_consent/migrations/0033_historicalsubjectconsentspfq_subjectconsentspfq.py +615 -0
  2. meta_consent/migrations/0034_remove_subjectconsentspfq_site_and_more.py +23 -0
  3. meta_consent/models/signals.py +13 -16
  4. meta_edc/settings/defaults.py +14 -10
  5. meta_edc/urls.py +1 -0
  6. {meta_edc-1.1.18.dist-info → meta_edc-1.2.0.dist-info}/METADATA +6 -5
  7. {meta_edc-1.1.18.dist-info → meta_edc-1.2.0.dist-info}/RECORD +24 -12
  8. meta_labs/list_data.py +2 -2
  9. meta_prn/baker_recipes.py +6 -6
  10. meta_prn/migrations/0069_alter_historicaloffstudymedication_singleton_field_and_more.py +37 -0
  11. meta_rando/migrations/0007_spfqlist.py +197 -0
  12. meta_rando/migrations/0008_delete_spfqlist.py +16 -0
  13. meta_rando/models/__init__.py +1 -0
  14. meta_rando/{models.py → models/randomization_list.py} +3 -3
  15. meta_subject/migrations/0228_bloodresultshba1c_hba1c_datetime_and_more.py +1 -6780
  16. meta_subject/migrations/0229_alter_glucosefbg_consent_model_and_more.py +1918 -0
  17. meta_subject/migrations/0230_alter_historicaldelivery_action_identifier_and_more.py +1733 -0
  18. meta_subject/migrations/0231_alter_historicalmedicationadherence_consent_model_and_more.py +2054 -0
  19. meta_subject/migrations/0232_alter_patienthistory_concomitant_conditions_and_more.py +1170 -0
  20. meta_subject/migrations/0233_historicalspfq_spfq.py +1066 -0
  21. meta_subject/migrations/0234_remove_spfq_site_remove_spfq_subject_visit_and_more.py +27 -0
  22. meta_subject/models/health_economics/health_economics_simple.py +2 -2
  23. {meta_edc-1.1.18.dist-info → meta_edc-1.2.0.dist-info}/WHEEL +0 -0
  24. {meta_edc-1.1.18.dist-info → meta_edc-1.2.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,27 @@
1
+ # Generated by Django 5.2.6 on 2025-09-30 22:50
2
+
3
+ from django.db import migrations
4
+
5
+
6
+ class Migration(migrations.Migration):
7
+
8
+ dependencies = [
9
+ ("meta_subject", "0233_historicalspfq_spfq"),
10
+ ]
11
+
12
+ operations = [
13
+ migrations.RemoveField(
14
+ model_name="spfq",
15
+ name="site",
16
+ ),
17
+ migrations.RemoveField(
18
+ model_name="spfq",
19
+ name="subject_visit",
20
+ ),
21
+ migrations.DeleteModel(
22
+ name="HistoricalSpfq",
23
+ ),
24
+ migrations.DeleteModel(
25
+ name="Spfq",
26
+ ),
27
+ ]
@@ -1,12 +1,12 @@
1
1
  from django.db import models
2
2
  from edc_constants.choices import MARITAL_STATUS
3
- from edc_he.model_mixins import HealthEconomicsEducationModelMixin
3
+ from edc_he.model_mixins import EducationModelMixin
4
4
  from edc_model.models import BaseUuidModel
5
5
 
6
6
  from ...model_mixins import CrfModelMixin
7
7
 
8
8
 
9
- class HealthEconomicsSimple(HealthEconomicsEducationModelMixin, CrfModelMixin, BaseUuidModel):
9
+ class HealthEconomicsSimple(EducationModelMixin, CrfModelMixin, BaseUuidModel):
10
10
  occupation = models.CharField(
11
11
  verbose_name="What is your occupation/profession?", max_length=50
12
12
  )