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

O3-4280: implement Save a note in Visit Patient scenario #66

Merged
merged 9 commits into from
Feb 25, 2025
Prev Previous commit
Next Next commit
fix indentation
  • Loading branch information
Bawanthathilan committed Feb 25, 2025
commit dc17c06120a01d21a09e9e15766ea307abba2e70
Original file line number Diff line number Diff line change
@@ -147,8 +147,6 @@ public ChainBuilder addDrugOrder(String patientUuid, String visitUuid, String cu

public ChainBuilder addVisitNote(String patientUuid, String currentUserUuid) {
String visitNoteText = "Patient visit note";
return exec(
httpService.saveVisitNote(patientUuid, currentUserUuid, visitNoteText)
);
return exec(httpService.saveVisitNote(patientUuid, currentUserUuid, visitNoteText));
}
}
Loading