forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-create encounter reason flag and some forgotten fixes. (openemr#…
…7681) * Auto-create encounter reason flag and some forgotten fixes. remove purifier global property new global in Calender to prevent using appointmnet comment as new visit reason. refactor encounter report twig to have visit reason on it's own line instead of header. * oops! new config global for appointment comment * revert cron job for sms/email reminders to correct script * add jsGlobals from main.php to portal for issue openemr#7688 * set default portal appointment category duration to 15 minutes for categories where a duration is not set. Otherwise calendar timeslot appears as a line. * Add past appointments view limit max appointments to 10 refactor limit reached message to a card * spelling * Normalize category path/title to an acceptable category class name get_patient_documents
- Loading branch information
Showing
12 changed files
with
246 additions
and
142 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
<div class="w-100"> | ||
{% for e in encounters %} | ||
{% set _reason = (e.reason) ? " - " ~ e.reason|text|nl2br : "" %} | ||
<h3>{{ e.category|text }}{{ _reason }}</h3> | ||
<h5 class="text-muted">{{ e.provider|text }} ({{ e.facility|text }})</h5> | ||
<h3>{{ e.category|text }}</h3> | ||
<span class="text-muted" style="font-size: 1.0rem;">{{ "Reason For Visit"|xlt }}</span><span style="font-size: 1.0rem;">{{ _reason }}</span> | ||
<h6 class="text-muted">{{ e.provider|text }} ({{ e.facility|text }})</h6> | ||
{% if e.posCode %} | ||
{{ "POS Code"|xlt }} - {{ e.posCode|text }} | ||
{% endif %} | ||
{% if e.referringProvider %} | ||
<br>{{ "Referring Provider"|xlt }} - {{ e.referringProvider|text }} | ||
<br />{{ "Referring Provider"|xlt }} - {{ e.referringProvider|text }} | ||
{% endif %} | ||
|
||
{% endfor %} | ||
</div> |
253 changes: 130 additions & 123 deletions
253
interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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