Skip to content

Commit 6112b6e

Browse files
authored
Merge pull request #510 from aurelianware/copilot/sub-pr-507
2 parents 3831ce8 + 85d9205 commit 6112b6e

File tree

9 files changed

+24
-25
lines changed

9 files changed

+24
-25
lines changed

src/portal/CloudHealthOffice.Portal/Dialogs/AssignPcpDialog.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
{
7878
<MudIcon Icon="@Icons.Material.Filled.CheckCircle" Color="Color.Success" Size="Size.Small" />
7979
}
80-
<MudText Typo="Typo.body2" Style="font-weight: @(_selectedProvider?.ProviderId == context.ProviderId ? "bold" : "normal")">
80+
<MudText Typo="Typo.body2" Style="@("font-weight: " + (_selectedProvider?.ProviderId == context.ProviderId ? "bold" : "normal"))">
8181
@context.Name
8282
</MudText>
8383
</div>

src/portal/CloudHealthOffice.Portal/Pages/Apis.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@
121121
Color="Color.Primary">
122122
View OpenAPI Spec
123123
</MudButton>
124-
<MudButton Href="/demo"
124+
<MudButton Href="/demo/members"
125125
Variant="Variant.Text"
126126
Color="Color.Secondary">
127-
Try in Demo
127+
Try in Demo
128128
</MudButton>
129129
</MudCardActions>
130130
</MudCard>

src/portal/CloudHealthOffice.Portal/Pages/Error.razor renamed to src/portal/CloudHealthOffice.Portal/Pages/AppError.razor

File renamed without changes.

src/portal/CloudHealthOffice.Portal/Pages/ClaimDetailsNew.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@
611611
</MudTabPanel>
612612

613613
<!-- ── Tab 3: Benefit Breakdown ──────────────────────────────── -->
614-
<MudTabPanel Text="Benefit Breakdown" Icon="@Icons.Material.Filled.CalculateOutlined">
614+
<MudTabPanel Text="Benefit Breakdown" Icon="@Icons.Material.Filled.Calculate">
615615
<div class="pt-4">
616616
@if (_loadingAdjudication)
617617
{
@@ -725,7 +725,7 @@
725725
<div>
726726
<div class="d-flex justify-space-between mb-1">
727727
<MudText Typo="Typo.body2">Deductible</MudText>
728-
<MudText Typo="Typo.body2" Style="color: @(bc.DeductibleMet ? "#00ff88" : "#ffaa00");">
728+
<MudText Typo="Typo.body2" Style="@(bc.DeductibleMet ? "color: #00ff88;" : "color: #ffaa00;")">
729729
@(bc.DeductibleMet ? "Met ✓" : $"${bc.IndividualDeductibleBalance:N0} applied")
730730
</MudText>
731731
</div>
@@ -736,7 +736,7 @@
736736
<div>
737737
<div class="d-flex justify-space-between mb-1">
738738
<MudText Typo="Typo.body2">Out-of-Pocket Max</MudText>
739-
<MudText Typo="Typo.body2" Style="color: @(bc.OopMaxMet ? "#00ff88" : "#00ffff");">
739+
<MudText Typo="Typo.body2" Style="@(bc.OopMaxMet ? "color: #00ff88;" : "color: #00ffff;")">
740740
@(bc.OopMaxMet ? "Met ✓" : "In Progress")
741741
</MudText>
742742
</div>

src/portal/CloudHealthOffice.Portal/Pages/EdiOperations.razor

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -135,35 +135,35 @@
135135
<MudTh>Errors</MudTh>
136136
<MudTh>Actions</MudTh>
137137
</HeaderContent>
138-
<RowTemplate>
139-
<MudTd>@context.TransactionDate.ToString("MM/dd/yyyy")</MudTd>
140-
<MudTd><span style="font-family: monospace; color: rgba(0,255,255,0.7);">@context.MemberId</span></MudTd>
141-
<MudTd>@context.MemberName</MudTd>
138+
<RowTemplate Context="record">
139+
<MudTd>@record.TransactionDate.ToString("MM/dd/yyyy")</MudTd>
140+
<MudTd><span style="font-family: monospace; color: rgba(0,255,255,0.7);">@record.MemberId</span></MudTd>
141+
<MudTd>@record.MemberName</MudTd>
142142
<MudTd>
143143
<MudChip T="string" Size="Size.Small"
144-
Color="@(context.MaintenanceTypeCode == "021" ? Color.Success : context.MaintenanceTypeCode == "024" ? Color.Error : Color.Info)">
145-
@(context.MaintenanceTypeCode == "021" ? "Add" : context.MaintenanceTypeCode == "024" ? "Cancel" : "Change")
144+
Color="@(record.MaintenanceTypeCode == "021" ? Color.Success : record.MaintenanceTypeCode == "024" ? Color.Error : Color.Info)">
145+
@(record.MaintenanceTypeCode == "021" ? "Add" : record.MaintenanceTypeCode == "024" ? "Cancel" : "Change")
146146
</MudChip>
147147
</MudTd>
148-
<MudTd><MudText Typo="Typo.caption">@context.TransactionSetPurpose</MudText></MudTd>
148+
<MudTd><MudText Typo="Typo.caption">@record.TransactionSetPurpose</MudText></MudTd>
149149
<MudTd>
150150
<MudChip T="string" Size="Size.Small"
151-
Color="@(context.Status == "Accepted" ? Color.Success : context.Status == "Rejected" ? Color.Error : Color.Warning)">
152-
@context.Status
151+
Color="@(record.Status == "Accepted" ? Color.Success : record.Status == "Rejected" ? Color.Error : Color.Warning)">
152+
@record.Status
153153
</MudChip>
154154
</MudTd>
155155
<MudTd>
156-
@if (context.Errors.Any())
156+
@if (record.Errors.Any())
157157
{
158158
<MudTooltip>
159159
<TooltipContent>
160-
@foreach (var err in context.Errors)
160+
@foreach (var err in record.Errors)
161161
{
162162
<MudText Typo="Typo.caption" Class="d-block">@err</MudText>
163163
}
164164
</TooltipContent>
165165
<ChildContent>
166-
<MudChip T="string" Size="Size.Small" Color="Color.Error">@context.Errors.Count error@(context.Errors.Count != 1 ? "s" : "")</MudChip>
166+
<MudChip T="string" Size="Size.Small" Color="Color.Error">@record.Errors.Count error@(record.Errors.Count != 1 ? "s" : "")</MudChip>
167167
</ChildContent>
168168
</MudTooltip>
169169
}
@@ -173,11 +173,11 @@
173173
}
174174
</MudTd>
175175
<MudTd>
176-
@if (context.Status == "Rejected" || context.Status == "Pending")
176+
@if (record.Status == "Rejected" || record.Status == "Pending")
177177
{
178-
<MudIconButton Icon="@Icons.Material.Filled.CheckCircle" Size="Size.Small" Color="Color.Success" Title="Accept" OnClick="@(() => Resolve834Record(context, "Accept"))" />
179-
<MudIconButton Icon="@Icons.Material.Filled.Cancel" Size="Size.Small" Color="Color.Error" Title="Reject" OnClick="@(() => Resolve834Record(context, "Reject"))" />
180-
<MudIconButton Icon="@Icons.Material.Filled.Pause" Size="Size.Small" Color="Color.Warning" Title="Hold" OnClick="@(() => Resolve834Record(context, "Hold"))" />
178+
<MudIconButton Icon="@Icons.Material.Filled.CheckCircle" Size="Size.Small" Color="Color.Success" Title="Accept" OnClick="@(() => Resolve834Record(record, "Accept"))" />
179+
<MudIconButton Icon="@Icons.Material.Filled.Cancel" Size="Size.Small" Color="Color.Error" Title="Reject" OnClick="@(() => Resolve834Record(record, "Reject"))" />
180+
<MudIconButton Icon="@Icons.Material.Filled.Pause" Size="Size.Small" Color="Color.Warning" Title="Hold" OnClick="@(() => Resolve834Record(record, "Hold"))" />
181181
}
182182
</MudTd>
183183
</RowTemplate>

src/portal/CloudHealthOffice.Portal/_Imports.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@using System.Net.Http
22
@using System.Net.Http.Json
3+
@using Microsoft.AspNetCore.Authorization
34
@using Microsoft.AspNetCore.Components.Authorization
45
@using Microsoft.AspNetCore.Components.Forms
56
@using Microsoft.AspNetCore.Components.Routing

src/site/assessment.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,6 @@ <h3>Market Landscape</h3>
282282
<ul>
283283
<li>Proprietary systems with vendor lock-in</li>
284284
<li>Multi-year implementation timelines</li>
285-
<li>Lengthy implementation timelines</li>
286285
<li>Limited multi-payer support</li>
287286
<li>Legacy security models</li>
288287
</ul>

src/site/assets/cho-assessment.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ cd generated/your-payer/infrastructure && ./deploy.sh
202202
**Traditional Vendors (Declining):**
203203
- Proprietary systems with vendor lock-in
204204
- Multi-year implementation timelines
205-
- Lengthy implementation timelines
206205
- Limited multi-payer support
207206
- Legacy security models
208207

src/site/solutions-payers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ <h2 style="text-align:center; color:#00ffff; font-size:2.5rem;">The Trap</h2>
125125
<div class="pain-card">
126126
<h3>💸 Upgrade Cost Explosion</h3>
127127
<p>Healthcare Payer Software quotes: <strong>$2M-5M</strong> for FHIR compliance alone. Implementation costs rival your annual IT budget.</p>
128-
<p style="margin-top:15px; opacity:0.8;">Cloud Health Office: <strong>$50k-250k implementation, <1 hour deployment.</strong></p>
128+
<p style="margin-top:15px; opacity:0.8;">Cloud Health Office: <strong>$50k-250k implementation, &lt;1 hour deployment.</strong></p>
129129
</div>
130130

131131
<div class="pain-card">

0 commit comments

Comments
 (0)