Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update JSON schema validations of Daily Round fields #2386

Merged
merged 29 commits into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
43ac3b1
Update daily round's JSON Schema validations to be more stricter
rithviknishad Aug 22, 2024
ed01dce
Add migrations
rithviknishad Aug 22, 2024
845668d
Merge branch 'develop' into rithviknishad/fix/daily-rounds-json-valid…
rithviknishad Aug 23, 2024
abfd3de
Alter schema; Improve bp validations; Adds tests
rithviknishad Aug 23, 2024
3a3aa68
Adds custom migration fill names with 'Unknown' for I/O Balance entri…
rithviknishad Aug 23, 2024
9389041
improve test coverage
rithviknishad Aug 23, 2024
bd99809
Merge branch 'develop' into rithviknishad/fix/daily-rounds-json-valid…
rithviknishad Aug 26, 2024
6a58867
Disallow `mean` blood pressure from being stored in DB; simplified BP…
rithviknishad Aug 26, 2024
47ee73d
reorder migration `dependencies`
rithviknishad Aug 26, 2024
7a16960
Merge branch 'develop' into rithviknishad/fix/daily-rounds-json-valid…
rithviknishad Sep 5, 2024
765a8a7
Blood Pressure: Adds support for specifying sys/dia recordable or not
rithviknishad Sep 6, 2024
ff011c6
fix unintended `.values('bp')`
rithviknishad Sep 6, 2024
a9092a0
update tests
rithviknishad Sep 6, 2024
293bce2
invert the recordable field
rithviknishad Sep 6, 2024
f9f432e
Improve terminology: ~`recordable`~ `measurable`
rithviknishad Sep 6, 2024
5bedfbe
Merge branch 'develop' into rithviknishad/fix/daily-rounds-json-valid…
rithviknishad Sep 10, 2024
07077d1
Drop measurable attribute for BP
rithviknishad Sep 10, 2024
5357469
fix validate_bp
rithviknishad Sep 10, 2024
f5004a3
Update care/facility/api/serializers/daily_round.py
rithviknishad Sep 11, 2024
daf1074
Merge branch 'develop' into rithviknishad/fix/daily-rounds-json-valid…
rithviknishad Sep 14, 2024
c83ff30
rebase migrations
rithviknishad Sep 14, 2024
5cf58cf
Merge branch 'develop' into rithviknishad/fix/daily-rounds-json-valid…
rithviknishad Sep 17, 2024
3110cb4
Merge branch 'develop' into rithviknishad/fix/daily-rounds-json-valid…
rithviknishad Sep 18, 2024
682a6e9
rebase migrations
rithviknishad Sep 18, 2024
c1cf72a
update procedures enum choices
rithviknishad Sep 19, 2024
33f322d
Merge branch 'develop' into rithviknishad/fix/daily-rounds-json-valid…
rithviknishad Sep 20, 2024
7cbc88c
rebase migrations
rithviknishad Sep 20, 2024
e28cac4
remove hyphen for "Nor-adrenaline" infusion name
rithviknishad Sep 20, 2024
8a2d19a
Update nursing care procedure choice for `tracheostomy_change` to `tr…
rithviknishad Sep 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update nursing care procedure choice for tracheostomy_change to `tr…
…acheostomy_tube_change`
  • Loading branch information
rithviknishad committed Sep 20, 2024
commit 8a2d19a008f7b1fb71b2099230ecdc9a05aab7b2
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def reverse_set_empty_bp_to_null(apps, schema_editor):
"restrain",
"chest_tube_care",
"tracheostomy_care",
"tracheostomy_change",
"tracheostomy_tube_change",
"stoma_care",
"catheter_care",
"catheter_change",
Expand Down
2 changes: 1 addition & 1 deletion care/facility/models/json_schema/daily_round.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
"restrain",
"chest_tube_care",
"tracheostomy_care",
"tracheostomy_change",
"tracheostomy_tube_change",
"stoma_care",
"catheter_care",
"catheter_change",
Expand Down