-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1180 from rcpch/eatyourpeas/issue1169
transfer-kpi-organisation
- Loading branch information
Showing
7 changed files
with
1,348 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
...unctions/calculate_kpi_functions/calculate_age_at_first_paediatric_assessment_in_years.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# python imports | ||
from dateutil.relativedelta import relativedelta | ||
|
||
# django imports | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
133 changes: 133 additions & 0 deletions
133
epilepsy12/migrations/0045_alter_kpi_assessment_of_mental_health_issues_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
# Generated by Django 5.1.4 on 2025-01-19 15:03 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("epilepsy12", "0044_alter_comorbidity_comorbidityentity"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="kpi", | ||
name="assessment_of_mental_health_issues", | ||
field=models.IntegerField( | ||
default=None, | ||
help_text={ | ||
"label": "6. Assessment of Mental Health Issues", | ||
"reference": "Percentage of children and young people with epilepsy where there is documented evidence that they have been asked about mental health either through clinical screening, or a questionnaire/measure.", | ||
}, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="kpi", | ||
name="comprehensive_care_planning_agreement", | ||
field=models.IntegerField( | ||
default=None, | ||
help_text={ | ||
"label": "9A. Care Planning Agreement", | ||
"reference": "Percentage of children and young people with epilepsy after 12 months where there is evidence of a comprehensive care plan that is agreed between the person, their family and/or carers and primary and secondary care providers, and the care plan has been updated where necessary.", | ||
}, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="kpi", | ||
name="comprehensive_care_planning_content", | ||
field=models.IntegerField( | ||
default=None, | ||
help_text={ | ||
"label": "9B. Care Planning Components", | ||
"reference": "Percentage of children diagnosed with epilepsy with documented evidence of communication regarding core elements of care planning (items a - f).", | ||
}, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="kpi", | ||
name="epilepsy_specialist_nurse", | ||
field=models.IntegerField( | ||
default=None, | ||
help_text={ | ||
"label": "2. Access to Epilepsy Specialist Nurse", | ||
"reference": "Percentage of children and young people with epilepsy, with input by epilepsy specialist nurse within the first year of care.", | ||
}, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="kpi", | ||
name="epilepsy_surgery_referral", | ||
field=models.IntegerField( | ||
default=None, | ||
help_text={ | ||
"label": "3b. Epilepsy Surgery Referral", | ||
"reference": "Percentage of ongoing children and young people meeting defined epilepsy surgery referral criteria with evidence of epilepsy surgery referral.", | ||
}, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="kpi", | ||
name="mental_health_support", | ||
field=models.IntegerField( | ||
default=None, | ||
help_text={ | ||
"label": "7. Mental Health Support", | ||
"reference": "Percentage of children and young people with epilepsy and a mental health problem who have evidence of mental health support", | ||
}, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="kpi", | ||
name="mri", | ||
field=models.IntegerField( | ||
default=None, | ||
help_text={ | ||
"label": "5. MRI within 6 weeks", | ||
"reference": "Percentage of children and young people with defined indications for an MRI, who had timely MRI within 6 weeks of request", | ||
}, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="kpi", | ||
name="paediatrician_with_expertise_in_epilepsies", | ||
field=models.IntegerField( | ||
default=None, | ||
help_text={ | ||
"label": "1. Paediatrician with expertise in Epilepsy within 2 weeks", | ||
"reference": "Percentage of children and young people with epilepsy, with input by a 'consultant paediatrician with expertise in epilepsies' within 2 weeks of initial referral", | ||
}, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="kpi", | ||
name="sodium_valproate", | ||
field=models.IntegerField( | ||
default=None, | ||
help_text={ | ||
"label": "8. Medication and Reproduction Risks", | ||
"reference": "Percentage of all females 12 years and above currently on valproate treatment with annual risk acknowledgement form completed", | ||
}, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="kpi", | ||
name="tertiary_input", | ||
field=models.IntegerField( | ||
default=None, | ||
help_text={ | ||
"label": "3a. Tertiary Input", | ||
"reference": "Percentage of children and young people meeting defined criteria for paediatric neurology referral, with input of tertiary care and/or CESS referral within the first year of care.", | ||
}, | ||
null=True, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.