소스 검색

Use hpi/core.json (instead of test)

Vijayakrishnan 3 년 전
부모
커밋
608d0cf441
2개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      resources/views/app/patient/note/edit-hpi.blade.php
  2. 1 3
      resources/views/app/patient/note/last-hpi.blade.php

+ 1 - 1
resources/views/app/patient/note/edit-hpi.blade.php

@@ -69,7 +69,7 @@
 
     <?php
     if(!@$template) {
-        $template = 'tech.json';
+        $template = 'hpi/core.json';
     }
     $patient = $note->client;
     $data = $currentReview ? $currentReview : null;

+ 1 - 3
resources/views/app/patient/note/last-hpi.blade.php

@@ -3,9 +3,7 @@
 <div class="<?= $point->last_child_review_point_scoped_note_id === $note->id ? 'bg-warning-mellow p-2 rounded' : '' ?>">
     <div>
         <?php
-        if(!@$template) {
-            $template = 'test.json';
-        }
+        if(!@$template) $template = 'hpi/core.json';
         $data = $parsedReview ? $parsedReview : null;
         ?>
         @include('app.dq-engine.read', compact('template', 'note', 'patient', 'point', 'data'))