-
Notifications
You must be signed in to change notification settings - Fork 443
Reply feature for Doctor notes #2160
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
Merged
vigneshhari
merged 32 commits into
ohcnetwork:develop
from
UdaySagar-Git:doctor-notes-replies
Sep 22, 2024
Merged
Changes from 4 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
62baf51
doctor notes reply
UdaySagar-Git c0311bf
bug fix
UdaySagar-Git 73b233e
checks to validated same thread and consultation
UdaySagar-Git 49b60e1
Merge branch 'develop' into doctor-notes-replies
UdaySagar-Git b19e9f5
fix conflict
UdaySagar-Git 3aaca5f
lint fix
UdaySagar-Git 3e56057
code review
UdaySagar-Git c3a48fa
Merge branch 'develop' into doctor-notes-replies
UdaySagar-Git 17b4ba3
added ReplyToPatientNoteSerializer
UdaySagar-Git 2035260
code review
UdaySagar-Git 07b66b7
adds tests
UdaySagar-Git 344e5c0
Merge branch 'develop' into doctor-notes-replies
rithviknishad 1ad7e51
resolve migration conflicts
75187a6
code review
UdaySagar-Git ac0d5ee
Merge branch 'doctor-notes-replies' of https://github.com/UdaySagar-G…
UdaySagar-Git ee953cd
Merge branch 'develop' into doctor-notes-replies
UdaySagar-Git 106e355
Merge branch 'develop' into doctor-notes-replies
rithviknishad 08fd2df
rebase migrations
rithviknishad 255a520
Update care/facility/api/viewsets/patient.py
sainak ef6f66a
lint
sainak ad49411
Merge remote-tracking branch 'origin/develop' into doctor-notes-replies
sainak e72e072
rebase migrations
sainak 02567b1
Adds validation for "consultation" field
UdaySagar-Git 15bf7aa
Merge branch 'develop' into doctor-notes-replies
UdaySagar-Git 70ac2b0
fix lint
UdaySagar-Git 1453191
Merge branch 'doctor-notes-replies' of https://github.com/UdaySagar-G…
UdaySagar-Git 4fc9416
rebase migration
UdaySagar-Git 386102f
fix lint
rithviknishad d95d93c
Merge remote-tracking branch 'origin/develop' into doctor-notes-replies
sainak a9e1a74
rebase migrations
sainak 5b995d1
Merge branch 'develop' into doctor-notes-replies
vigneshhari 7397756
Rebase migrations
vigneshhari File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,25 @@ | ||
# Generated by Django 4.2.10 on 2024-05-13 19:26 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("facility", "0431_patientnotes_thread"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="patientnotes", | ||
name="reply_to", | ||
field=models.ForeignKey( | ||
blank=True, | ||
null=True, | ||
on_delete=django.db.models.deletion.SET_NULL, | ||
related_name="replies", | ||
to="facility.patientnotes", | ||
), | ||
), | ||
] |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.