Ver código fonte

Dx wiz "Subjective" => "Subjective/HPI"

Vijayakrishnan 3 anos atrás
pai
commit
8f39c11e63

+ 1 - 1
resources/views/app/patient/note/sign-confirmation.blade.php

@@ -176,7 +176,7 @@
             }*/
 
             if($('.no-relevant-with-icd.block-signing[data-target-segment]').length) {
-                alert('Need at least 1 relevant problem (with ICD) with associated HPI before the note can be signed.');
+                alert('Need at least 1 relevant problem (with ICD) with associated Subjective/HPI before the note can be signed.');
                 closeStagPopup(true);
                 $('.note-tree-node [data-segment-internal-name="' + $('.no-relevant-with-icd.block-signing[data-target-segment]').first().attr('data-target-segment') + '"]').trigger('click');
                 return false;

+ 2 - 2
resources/views/app/patient/problems-center.blade.php

@@ -35,7 +35,7 @@ $ccSegment = $ccSegment ?? $note->getSegmentByInternalName('mc_cc');
                 <th class="border-bottom-0 text-secondary text-center width-30px">Rel.</th>
                 @endif
                 <th class="border-bottom-0 text-secondary">Name</th>
-                <th class="border-bottom-0 text-secondary w-25">Subjective</th>
+                <th class="border-bottom-0 text-secondary w-25">Subjective/HPI</th>
                 <th class="border-bottom-0 text-secondary w-25">Plan</th>
                 <th class="border-bottom-0 text-secondary">Active?</th>
                 <th class="border-bottom-0 text-secondary">Started</th>
@@ -192,7 +192,7 @@ $ccSegment = $ccSegment ?? $note->getSegmentByInternalName('mc_cc');
 
                             @endif
 
-                            @include('app.patient.wizard-partials.common-fields', ['label' => 'problem', 'point' => $problem, 'addVerbPT' => 'Diagnosed'])
+                            @include('app.patient.wizard-partials.common-fields', ['label' => 'problem', 'point' => $problem, 'addVerbPT' => 'Diagnosed', 'reviewLabel' => 'Subjective/HPI'])
 
                             <div class="mt-3 pt-2 d-flex align-items-center border-top">
                                 <button type="submit" class="btn-save-problem btn btn-sm btn-primary mr-2">Save</button>

+ 1 - 1
resources/views/app/patient/segment-templates/plan_problems/summary.blade.php

@@ -93,7 +93,7 @@ $numRelevantWithICD = 0;
         </div>
     @endif
     @if(!$numRelevantWithICD)
-        <div class="no-relevant-with-icd block-signing text-danger mt-1 text-sm" data-target-segment="<?= $segment->segmentTemplate->internal_name ?>"><i class="fa fa-exclamation-triangle mr-1"></i>Need at least 1 relevant problem (with ICD) with associated HPI before the note can be signed</div>
+        <div class="no-relevant-with-icd block-signing text-danger mt-1 text-sm" data-target-segment="<?= $segment->segmentTemplate->internal_name ?>"><i class="fa fa-exclamation-triangle mr-1"></i>Need at least 1 relevant problem (with ICD) with associated Subjective/HPI before the note can be signed</div>
     @endif
 <?php endif; ?>