e476b4744d
Subscription expiry (SubscriptionExpiryBackgroundService): - Trials with no grace period now go directly Active -> Expired instead of briefly entering GracePeriod for a day, which was causing repeated 'Grace Period Started' admin notification emails - Remove redundant isTrial variable (query already filters to non-Stripe companies, so all processed companies are trials by definition) - Save per-company inside the loop so a single SaveChangesAsync failure no longer discards all other companies' status changes and notification log entries (which was the other cause of repeated emails) HTML entities in page titles (33 views): - Replace – / — with plain ' - ' in ViewData["Title"] C# strings; Razor HTML-encodes these when rendering @ViewData["Title"], causing browsers to display the literal text '–' instead of a dash Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
102 lines
4.8 KiB
Plaintext
102 lines
4.8 KiB
Plaintext
@model PowderCoating.Application.DTOs.Accounting.CustomerStatementDto
|
|
@{
|
|
ViewData["Title"] = $"Statement - {Model.CustomerName}";
|
|
}
|
|
|
|
<div class="d-flex justify-content-between align-items-start mb-4 flex-wrap gap-2">
|
|
<div>
|
|
<h4 class="mb-0">Customer Statement</h4>
|
|
<p class="text-muted mb-0">@Model.CustomerName · @Model.From.ToString("MMM d, yyyy") – @Model.To.ToString("MMM d, yyyy")</p>
|
|
</div>
|
|
<div class="d-flex gap-2 flex-wrap">
|
|
<form method="get" class="d-flex gap-2 align-items-center">
|
|
<input type="hidden" name="id" value="@(ViewContext.RouteData.Values["id"])" />
|
|
<input type="date" name="from" class="form-control form-control-sm" value="@Model.From.ToString("yyyy-MM-dd")" />
|
|
<input type="date" name="to" class="form-control form-control-sm" value="@Model.To.ToString("yyyy-MM-dd")" />
|
|
<button type="submit" class="btn btn-sm btn-outline-secondary">Refresh</button>
|
|
</form>
|
|
<a asp-action="Statement" asp-route-id="@(ViewContext.RouteData.Values["id"])"
|
|
asp-route-from="@Model.From.ToString("yyyy-MM-dd")"
|
|
asp-route-to="@Model.To.ToString("yyyy-MM-dd")"
|
|
asp-route-pdf="true"
|
|
class="btn btn-sm btn-outline-primary">
|
|
<i class="bi bi-file-earmark-pdf me-1"></i>Download PDF
|
|
</a>
|
|
<a asp-action="Details" asp-route-id="@(ViewContext.RouteData.Values["id"])" class="btn btn-sm btn-outline-secondary">
|
|
<i class="bi bi-arrow-left me-1"></i>Back
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card border-0 shadow-sm">
|
|
<div class="card-header border-0 py-3 bg-white d-flex justify-content-between align-items-center">
|
|
<div>
|
|
<span class="fw-semibold">@Model.CustomerName</span>
|
|
@if (!string.IsNullOrWhiteSpace(Model.CustomerAddress))
|
|
{
|
|
<span class="text-muted small ms-2">@Model.CustomerAddress</span>
|
|
}
|
|
</div>
|
|
<div class="text-muted small">@Model.CompanyName</div>
|
|
</div>
|
|
<div class="card-body p-0">
|
|
<table class="table table-sm mb-0">
|
|
<thead class="table-dark">
|
|
<tr>
|
|
<th style="width:100px">Date</th>
|
|
<th style="width:120px">Type</th>
|
|
<th style="width:130px">Reference</th>
|
|
<th>Description</th>
|
|
<th class="text-end" style="width:110px">Debit</th>
|
|
<th class="text-end" style="width:110px">Credit</th>
|
|
<th class="text-end" style="width:120px">Balance</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- Opening balance -->
|
|
<tr class="table-light fw-semibold">
|
|
<td class="text-muted">@Model.From.AddDays(-1).ToString("MM/dd/yy")</td>
|
|
<td colspan="5">Opening Balance</td>
|
|
<td class="text-end">@Model.OpeningBalance.ToString("C")</td>
|
|
</tr>
|
|
|
|
@if (!Model.Lines.Any())
|
|
{
|
|
<tr>
|
|
<td colspan="7" class="text-center text-muted py-4">No activity in this period.</td>
|
|
</tr>
|
|
}
|
|
else
|
|
{
|
|
@foreach (var line in Model.Lines)
|
|
{
|
|
<tr>
|
|
<td class="text-muted small">@line.Date.ToString("MM/dd/yy")</td>
|
|
<td>
|
|
<span class="badge @(line.Type == "Invoice" ? "bg-primary" : line.Type == "Payment" ? "bg-success" : "bg-secondary") text-white">
|
|
@line.Type
|
|
</span>
|
|
</td>
|
|
<td class="small">@line.Reference</td>
|
|
<td class="small text-muted">@line.Description</td>
|
|
<td class="text-end small">@(line.Debit.HasValue ? line.Debit.Value.ToString("C") : "")</td>
|
|
<td class="text-end small">@(line.Credit.HasValue ? line.Credit.Value.ToString("C") : "")</td>
|
|
<td class="text-end small @(line.RunningBalance > 0 ? "text-danger" : "text-success") fw-semibold">
|
|
@line.RunningBalance.ToString("C")
|
|
</td>
|
|
</tr>
|
|
}
|
|
}
|
|
|
|
<!-- Closing balance -->
|
|
<tr class="table-secondary fw-bold">
|
|
<td colspan="6">Closing Balance</td>
|
|
<td class="text-end @(Model.ClosingBalance > 0 ? "text-danger" : "text-success")">
|
|
@Model.ClosingBalance.ToString("C")
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|