Prechádzať zdrojové kódy

Subj/Plan system minor UI tweak

Vijayakrishnan 3 rokov pred
rodič
commit
c8ac5d80cc

+ 1 - 1
config/app.php

@@ -65,7 +65,7 @@ return [
 
     'hrm2_url' => env('HRM2_URL'),
 
-    'asset_version' => 60,
+    'asset_version' => 61,
 
     'temp_dir' => env('TEMP_DIR'),
 

+ 4 - 1
public/css/style.css

@@ -3166,4 +3166,7 @@ body.forced-masking #mask {
 }
 .inline-input-underlined.width-50 {
     width: 50px;
-}
+}
+.note-container.note_template_omega_soap_visit .system_segment .d-flex.border-bottom:last-of-type {
+    border-bottom: 0 !important;
+}

+ 6 - 0
resources/views/app/patient/segment-templates/omega_plan_system/summary.blade.php

@@ -5,6 +5,10 @@ use App\Models\Point;
 /** @var \App\Models\Client $patient */
 /** @var \App\Models\Note $note */
 
+?>
+<div class="system_segment">
+<?php
+
 $allPoints = Point::getPlanPoints($patient, $note);
 
 // allergies/meds/problems/goals/careteam
@@ -64,4 +68,6 @@ foreach ($pointMap as $renderer => $points) {
 @include('app.patient.module-specific-summary-renderers.' . $renderer . '.plan', compact('points'))
 <?php
 }
+?>
+</div>
 

+ 3 - 0
resources/views/app/patient/segment-templates/omega_subjective_system/summary.blade.php

@@ -72,6 +72,7 @@ $wizardLinks = [
     @endforeach
 </div>
 
+<div class="system_segment">
 <?php
 
 $inPoints = Point::getIntakePointsWithChildReview($patient, $note);
@@ -164,4 +165,6 @@ foreach ($pointMap as $renderer => $points) {
     @include('app.patient.module-specific-summary-renderers.' . $renderer . '.subjective', compact('points'))
 <?php
 }
+?>
+</div>