35 lines
1.4 KiB
Plaintext
35 lines
1.4 KiB
Plaintext
@page
|
|
@model TaxBaik.Web.Pages.Admin.TaxProfiles.IndexModel
|
|
@{ ViewData["Title"] = "세무 프로필"; }
|
|
|
|
<section class="admin-page-shell">
|
|
<partial name="_AdminPageHeader" model='("Tax", "세무 프로필 관리", "고객별 세무 속성을 관리합니다.", null, null)' />
|
|
<div class="card">
|
|
<div class="table-responsive">
|
|
<table class="table table-vcenter card-table">
|
|
<thead>
|
|
<tr><th>고객ID</th><th>사업유형</th><th>세무위험</th><th>다음신고일</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
@if (Model.Items.Count == 0)
|
|
{
|
|
<tr><td colspan="4"><partial name="_EmptyState" model="세무 프로필이 없습니다." /></td></tr>
|
|
}
|
|
else
|
|
{
|
|
foreach (var item in Model.Items)
|
|
{
|
|
<tr>
|
|
<td>@item.ClientId</td>
|
|
<td>@item.BusinessType</td>
|
|
<td><partial name="_StatusBadge" model="@(item.TaxRiskLevel ?? "normal")" /></td>
|
|
<td>@item.NextFilingDueDate?.ToString("yyyy-MM-dd")</td>
|
|
</tr>
|
|
}
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</section>
|