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

Patient Category choices to be updated #875

Closed
4 tasks done
rithviknishad opened this issue Jun 22, 2022 · 0 comments · Fixed by #1007
Closed
4 tasks done

Patient Category choices to be updated #875

rithviknishad opened this issue Jun 22, 2022 · 0 comments · Fixed by #1007
Assignees

Comments

@rithviknishad
Copy link
Member

rithviknishad commented Jun 22, 2022

Related issue: coronasafe/care_fe#2210

Patient Category choices needs to be updated.

Modify COVID Category to Patient Category

* Comfort Care (White color)

* Stable (Blue color)

* Slightly Abnormal (yellow color)

* Critical Case (Red color)

The category is to be a mandatory field.

Once categorized the patient card must have the respective color. Including when viewing as list.

  • Replace existing patient_category to deprecated covid category in both consultation and daily rounds
  • Run migrations for above
  • Create new field patient category with new choices
  • Run migrations

CATEGORY_CHOICES = [
("ASYM", "ASYMPTOMATIC"),
("Mild", "Category-A"),
("Moderate", "Category-B"),
("Severe", "Category-C"),
(None, "UNCLASSIFIED"),
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment