-
Notifications
You must be signed in to change notification settings - Fork 20
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
Care plan proposal #78
base: master
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for docs-ohc ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
```py | ||
class CarePlanActivity(BaseModel): # or just Activity if it is generic | ||
performed = BooleanField() | ||
activity_task = FK(Task) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where is Task
defined 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
based on presumtption of Task being predefined. Should I include Task and ServiceRequest in the scope?
docs/care/CEP/Draft/0012-careplan.md
Outdated
activity_service_request = FK(ServiceRequest) | ||
``` | ||
|
||
I am not very sure about how the Task, MedicationRequest and ServiceRequest would look like. We can directly connect these models to the care plan instead of having the Activity model if it is more feasible. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have UI for all of these now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you guide me to where to find the Task and ServiceRequest UI?
No description provided.