Skip to content

Commit

Permalink
Added feedback functionaly
Browse files Browse the repository at this point in the history
  • Loading branch information
k-joseph committed Aug 3, 2015
1 parent a34b7d1 commit 6b7d044
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
25 changes: 24 additions & 1 deletion omod/src/main/webapp/fragments/chartsearchFeedback.gsp
@@ -1 +1,24 @@
<h1>User's Feedback</h1>
<h1>User's Feedback</h1>

Our team is working hard to see to it that your feedback towards chartsearch module is responded to and soon with no prolonged delays including issue fixing. For this cause we appreciate and welcome chartsearch user's feedback either through the online http://notes.openmrs.org/chartsearch-feedback which is embedded into the module feedback section or here on openmrs talk; Here is how you need to provide feedback on openmrs talk;
<br /><br />
1. Click "New Topic" button on openmrs talk;<br />
2. Provide a summarized title and select 'Add-on Modules' for category.<br />
3. Most important of all, just on-top of the 'Create Topic' button is a field where you need to attach the "chartsearch-feedback" tag onto your feedback so as to list it among other feed-backs.<br />
Here is a sample of what you may do well to include in your feedback;
<br /><br />
"Module: ChartSearch<br />
ChartSearch Version: 1.4-SNAPSHOT<br />
System Version: Platform 1.11.2/ 2.2
<br /><br />
Issue or Question:<br />
????????????"<br /><br />

<h1>Previous feedback</h1>
See previous feed-backs from: <a href="https://talk.openmrs.org/tags/chartsearch-feedback">OpenMRS Talk</a> and
<a href="https://talk.openmrs.org/t/providing-chartsearch-module-feedback/2674"> Providing Feedback guide</a>

<h1>Provide Online User's Feedback</h1>

<iframe name='embed_readwrite' src='http://notes.openmrs.org/chartsearch-feedback' scrolling='yes' width=900 height=600></iframe>
<br /><br />
2 changes: 1 addition & 1 deletion omod/src/main/webapp/fragments/managePreferences.gsp
Expand Up @@ -156,7 +156,7 @@
<br /><br />
</div>

<div class="pref-summary-item" id="pref-summary-item-notescolors">Notes Colors</div>
<div class="pref-summary-item" id="pref-summary-item-notescolors">Notes Background Colors</div>
<div id="pref-summary-item-notescolors-details" class="pref-summary-item-details">
Details for notes colors
</div>
Expand Down
7 changes: 5 additions & 2 deletions omod/src/main/webapp/resources/scripts/views_factory.js
Expand Up @@ -1079,8 +1079,11 @@ function refresh_data(json) {
var numberOfResults = json.obs_groups.length + json.obs_singles.length
+ json.patientAllergies.length
+ json.patientAppointments.length;
var noResultsMessage = "<b>" + numberOfResults
+ "</b> Summarized Results (<b>" + json.retrievalTime
var noResultsMessage = "<b>" + numberOfResults + "</b> ";
if (json.duplicate_obs_singles !== undefined) {
noResultsMessage += "Summarized ";
}
noResultsMessage += "Results (<b>" + json.retrievalTime
+ "</b> seconds)";
var noResultsMessageNote = "";

Expand Down

0 comments on commit 6b7d044

Please sign in to comment.