From 4135a146bd52fe64269c10fee946ecb158f4b0e2 Mon Sep 17 00:00:00 2001 From: Jerry Padgett Date: Sat, 19 Oct 2024 11:59:03 -0400 Subject: [PATCH] New Fixes (#7770) * New Fixes - fix fissed named column for insurance weno - some changes to appt comment handling * adjust widget title --- .../oe-module-weno/src/Services/TransmitProperties.php | 2 +- .../oe-module-weno/templates/weno_fragment.php | 4 ++++ interface/patient_tracker/patient_tracker.php | 5 +++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php b/interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php index ea79f195c57..43026985bd0 100644 --- a/interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php +++ b/interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php @@ -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."); } diff --git a/interface/modules/custom_modules/oe-module-weno/templates/weno_fragment.php b/interface/modules/custom_modules/oe-module-weno/templates/weno_fragment.php index 45f22fe7919..21ab5529ee9 100644 --- a/interface/modules/custom_modules/oe-module-weno/templates/weno_fragment.php +++ b/interface/modules/custom_modules/oe-module-weno/templates/weno_fragment.php @@ -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; + }