Skip to content

Commit

Permalink
New Fixes (openemr#7770)
Browse files Browse the repository at this point in the history
* New Fixes
- fix fissed named column for insurance weno
- some changes to appt comment handling

* adjust widget title
  • Loading branch information
sjpadgett authored Oct 19, 2024
1 parent 7183768 commit 4135a14
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ private function getResponsibleParty(): mixed
if (empty($relation)) {
return 'REQED:{demographics}' . xlt("Patient is under 19 years old. A Responsible Party is required. From the Patient Chart select Demographics Primary Insurance or Guardian to add a person.");
}
if (empty($relation['ResponsiblePartyZip']) || empty($relation['ResponsiblePartyAddressLine1']) || empty($relation['ResponsiblePartyCity'])) {
if (empty($relation['ResponsiblePartyPostalCode']) || empty($relation['ResponsiblePartyAddressLine1']) || empty($relation['ResponsiblePartyCity'])) {
return 'REQED:{demographics}' . xlt("Responsible Party Zip, Street and or City Missing, From the Patient Chart select Demographics Primary Insurance or Guardian to add or edit a person.");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ function getProviderByWenoId($external_id, $provider_id = ''): string
.dialog-alert {
font-size: 14px;
}

div.row div section div.section-header-dynamic {
margin-left: 0.5rem;
}
</style>
<script>
function setPrescribeLocation() {
Expand Down
5 changes: 3 additions & 2 deletions interface/patient_tracker/patient_tracker.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@

if (!($_REQUEST['flb_table'] ?? null)) {
?>
<!DOCTYPE html>
<html>
<head>
<meta name="author" content="OpenEMR: MedExBank" />
Expand All @@ -164,7 +165,7 @@
$MedEx->display->navigation($logged_in);
}
?>
<div class="container mt-3">
<div class="container-fluid mt-3">
<div id="flb_selectors" style="display:<?php echo attr($setting_selectors); ?>;">
<h2 class="text-center"><?php echo xlt('Flow Board'); ?></h2>
<div class="jumbotron p-4">
Expand Down Expand Up @@ -386,7 +387,7 @@
</td>
<?php if ($GLOBALS['ptkr_visit_reason'] == '1') { ?>
<td class="dehead text-center text-ovr-dark" name="kiosk_hide">
<?php echo xlt('Reason'); ?>
<?php echo xlt('Appt Comment'); ?>
</td>
<?php } ?>
<?php if ($GLOBALS['ptkr_show_encounter']) { ?>
Expand Down

0 comments on commit 4135a14

Please sign in to comment.