-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds support to specify and filter ration card category of a patient (#…
…2201) * Adds support to specify and filter ration card category of a patient * Show ration card category in discharge summary --------- Co-authored-by: Vignesh Hari <[email protected]>
- Loading branch information
1 parent
de22042
commit 9edfed0
Showing
5 changed files
with
55 additions
and
2 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
38 changes: 38 additions & 0 deletions
38
care/facility/migrations/0439_historicalpatientregistration_ration_card_category_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,38 @@ | ||
# Generated by Django 4.2.8 on 2024-05-28 05:52 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("facility", "0438_alter_dailyround_patient_category_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="historicalpatientregistration", | ||
name="ration_card_category", | ||
field=models.CharField( | ||
choices=[ | ||
("NO_CARD", "Non-card holder"), | ||
("BPL", "BPL"), | ||
("APL", "APL"), | ||
], | ||
max_length=8, | ||
null=True, | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="patientregistration", | ||
name="ration_card_category", | ||
field=models.CharField( | ||
choices=[ | ||
("NO_CARD", "Non-card holder"), | ||
("BPL", "BPL"), | ||
("APL", "APL"), | ||
], | ||
max_length=8, | ||
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
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
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