-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds support for "Doctors Log Update" round type (#2173)
* Adds support for "Doctors Log Update" round type * add tests
- Loading branch information
1 parent
89078bc
commit 01c4aa0
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
care/facility/migrations/0437_alter_dailyround_rounds_type.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,27 @@ | ||
# Generated by Django 4.2.8 on 2024-05-17 04:55 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("facility", "0436_remove_dailyround_temperature_measured_at"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="dailyround", | ||
name="rounds_type", | ||
field=models.IntegerField( | ||
choices=[ | ||
(0, "NORMAL"), | ||
(50, "DOCTORS_LOG"), | ||
(100, "VENTILATOR"), | ||
(200, "ICU"), | ||
(300, "AUTOMATED"), | ||
(400, "TELEMEDICINE"), | ||
], | ||
default=0, | ||
), | ||
), | ||
] |
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