-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAH-3117 | Ability to create, update and delete notes for OT module (#…
…898) * Phani, Bindu | BAH-3117 | Ability to add, display and update Notes section in OT Scheduling (#647) * Add Modal to create OT Notes * Make notes scrollable * Add Redirection on Save * Add ToolTip * Fix css for day view. * Add tests * Add Validations for Create Note * BAH-3092 | Show primary diagnoses in OT list view (#631) * BAH-3092 | add capability to show primary diagnosis in OT list view * BAH-3092 | refactor to display latest diagnoses and test fixes --------- Co-authored-by: Ashish Kurian <ashish.kurian@thoughtworks.com> * Fix build issues * Integrate with Backend for Day view * Update CSS and date * Bindu | add notes save and get support for week view * Bindu, Phani | BAH-3117 | Integrate Update API to the UI * Bindu | Fix test cases * Bindu | Change note resource to notes * Fix tests * Phani | A-1205015570874061 | Ability to delete existing notes on the OT Scheduling page. (#650) * Make css of notes text configurable and Add notes delete template * Add css for hover and fix translation * Fix Update notes functionality * Add delete note functionality * Fix fetch date issue * Fix tests * Fix UI validations and CSS * Fix CSS in notes modal --------- Co-authored-by: Phanindra-tw <v.tadikonda@thoughtworks.com> Co-authored-by: kavitha-sundararajan <90255023+kavitha-sundararajan@users.noreply.github.com> Co-authored-by: Ashish Kurian <ashish.kurian@thoughtworks.com> Co-authored-by: Phanindra-tw <126503818+Phanindra-tw@users.noreply.github.com> * BAH-3117|refactored update note API integration * BAH-3117|fix failed testcases * BAH-3117 | add payload for update notes --------- Co-authored-by: Himabindu T <tbindu@thoughtworks.com> Co-authored-by: Phanindra-tw <v.tadikonda@thoughtworks.com> Co-authored-by: Ashish Kurian <ashish.kurian@thoughtworks.com> Co-authored-by: Phanindra-tw <126503818+Phanindra-tw@users.noreply.github.com> Co-authored-by: SanoferSameera <sanofersameera25@gmail.com>
- Loading branch information
1 parent
8a37696
commit 404cab1
Showing
13 changed files
with
711 additions
and
31 deletions.
There are no files selected for viewing
This file contains 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 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 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 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,10 @@ | ||
'use strict'; | ||
|
||
angular.module('bahmni.ot') | ||
.directive('otNotes', [function () { | ||
return { | ||
restrict: 'E', | ||
require: '^otCalendar', | ||
templateUrl: "../ot/views/notesModal.html" | ||
}; | ||
}]); |
This file contains 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 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
Oops, something went wrong.