-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
49 additions
and
46 deletions.
There are no files selected for viewing
44 changes: 22 additions & 22 deletions
44
modules/claims_api/app/views/claims_api/_ews_status_table.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>consumer</th> | ||
<% ClaimsApi::EvidenceWaiverSubmission::ALL_STATUSES.each do |status| %> | ||
<th><%= status %></th> | ||
<% end %> | ||
<th>totals</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<% ews_consumers.each do |consumer| %> | ||
<tr> | ||
<td class="left-align"><%= consumer.keys[0] %></td> | ||
<% ClaimsApi::EvidenceWaiverSubmission::ALL_STATUSES.map(&:to_sym).each do |status| %> | ||
<td class="right-align"><%= consumer.values.first[status] || 0 %></td> | ||
<% end %> | ||
<td class="right-align"><%= consumer.values.first[:totals].to_i %></td> | ||
</tr> | ||
<% end if ews_consumers %> | ||
</tbody> | ||
</table> | ||
<table class="counts"> | ||
<thead> | ||
<tr> | ||
<th>consumer</th> | ||
<% ClaimsApi::EvidenceWaiverSubmission::ALL_STATUSES.each do |status| %> | ||
<th><%= status %></th> | ||
<% end %> | ||
<th>totals</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<% ews_consumers.each do |consumer| %> | ||
<tr> | ||
<td class="left-align"><%= consumer.keys[0] %></td> | ||
<% ClaimsApi::EvidenceWaiverSubmission::ALL_STATUSES.map(&:to_sym).each do |status| %> | ||
<td class="right-align"><%= consumer.values.first[status] || 0 %></td> | ||
<% end %> | ||
<td class="right-align"><%= consumer.values.first[:totals].to_i %></td> | ||
</tr> | ||
<% end if ews_consumers %> | ||
</tbody> | ||
</table> |
2 changes: 1 addition & 1 deletion
2
modules/claims_api/app/views/claims_api/_itf_status_table.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<table> | ||
<table class="counts"> | ||
<thead> | ||
<tr> | ||
<th>consumer</th> | ||
|
2 changes: 1 addition & 1 deletion
2
modules/claims_api/app/views/claims_api/_monthly_claims_status_table.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<table> | ||
<table class="counts"> | ||
<thead> | ||
<tr> | ||
<th>consumer</th> | ||
|
44 changes: 22 additions & 22 deletions
44
modules/claims_api/app/views/claims_api/_poa_status_table.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>consumer</th> | ||
<% ClaimsApi::PowerOfAttorney::ALL_STATUSES.each do |status| %> | ||
<th><%= status %></th> | ||
<% end %> | ||
<th>totals</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<% poa_consumers.each do |consumer| %> | ||
<tr> | ||
<td class="left-align"><%= consumer.keys[0] %></td> | ||
<% ClaimsApi::PowerOfAttorney::ALL_STATUSES.map(&:to_sym).each do |status| %> | ||
<td class="right-align"><%= consumer.values.first[status] || 0 %></td> | ||
<% end %> | ||
<td class="right-align"><%= consumer.values.first[:totals].to_i %></td> | ||
</tr> | ||
<% end if poa_consumers %> | ||
</tbody> | ||
</table> | ||
<table class="counts"> | ||
<thead> | ||
<tr> | ||
<th>consumer</th> | ||
<% ClaimsApi::PowerOfAttorney::ALL_STATUSES.each do |status| %> | ||
<th><%= status %></th> | ||
<% end %> | ||
<th>totals</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<% poa_consumers.each do |consumer| %> | ||
<tr> | ||
<td class="left-align"><%= consumer.keys[0] %></td> | ||
<% ClaimsApi::PowerOfAttorney::ALL_STATUSES.map(&:to_sym).each do |status| %> | ||
<td class="right-align"><%= consumer.values.first[status] || 0 %></td> | ||
<% end %> | ||
<td class="right-align"><%= consumer.values.first[:totals].to_i %></td> | ||
</tr> | ||
<% end if poa_consumers %> | ||
</tbody> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters