Преглед на файлове

Plan (summary) view update

Vijayakrishnan преди 3 години
родител
ревизия
894d1e1cd0

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

@@ -4,7 +4,7 @@ use App\Models\Point;
 
 /** @var \App\Models\Client $patient */
 
-$allergies = Point::getPlanPointsOfCategory($patient, 'ALLERGY', $note);
+$allergies = Point::getPointsOfCategoryExtended($patient, 'ALLERGY', $note);
 
 $numRelevant = 0;
 $numVisible = 0;

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

@@ -4,7 +4,7 @@ use App\Models\Point;
 
 /** @var \App\Models\Client $patient */
 
-$careTeamMembers = Point::getPlanPointsOfCategory($patient, 'CARE_TEAM_MEMBER', $note);
+$careTeamMembers = Point::getPointsOfCategoryExtended($patient, 'CARE_TEAM_MEMBER', $note);
 
 $numRelevant = 0;
 $numVisible = 0;

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

@@ -4,7 +4,7 @@ use App\Models\Point;
 
 /** @var \App\Models\Client $patient */
 
-$goals = Point::getPlanPointsOfCategory($patient, 'GOAL', $note);
+$goals = Point::getPointsOfCategoryExtended($patient, 'GOAL', $note);
 
 $goals = $goals->filter(function ($_x) use ($note) {
     $rel = $_x->relevanceToNote($note);

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

@@ -4,7 +4,7 @@ use App\Models\Point;
 
 /** @var \App\Models\Client $patient */
 
-$medications = Point::getPlanPointsOfCategory($patient, 'MEDICATION', $note);
+$medications = Point::getPointsOfCategoryExtended($patient, 'MEDICATION', $note);
 
 $numRelevant = 0;
 $numVisible = 0;