Sweep all .cshtml files for encoding corruption; add pre-commit guard
Replace all corruption variants with HTML entities across 226 view files: - 3-char UTF-8-as-Win1252 sequences (ae-corruption) - Standalone smart/curly quotes that break C# Razor expressions - Partially re-corrupted variants where the 3rd byte was normalised to ASCII tools/Fix-Encoding.ps1: re-runnable sweep; uses [char] code points so the script itself never contains a literal non-ASCII character; supports -DryRun .githooks/pre-commit: blocks commits containing the ae-corruption byte signature (xc3xa2xe2x82xac); git core.hooksPath = .githooks so the hook is repo-committed and active for all future work on this machine. Build clean; 225 unit tests pass. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -95,14 +95,14 @@
|
||||
<label class="form-label fw-semibold">Vendor</label>
|
||||
<select asp-for="BillVendorId" asp-items="@((IEnumerable<SelectListItem>)ViewBag.Vendors)"
|
||||
class="form-select">
|
||||
<option value="">— Select vendor —</option>
|
||||
<option value="">— Select vendor —</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<label class="form-label fw-semibold">AP Account</label>
|
||||
<select asp-for="APAccountId" asp-items="@((IEnumerable<SelectListItem>)ViewBag.APAccounts)"
|
||||
class="form-select">
|
||||
<option value="">— Select —</option>
|
||||
<option value="">— Select —</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
@@ -110,7 +110,7 @@
|
||||
<div class="col-6">
|
||||
<label class="form-label fw-semibold">Terms</label>
|
||||
<select asp-for="BillTerms" class="form-select">
|
||||
<option value="">— None —</option>
|
||||
<option value="">— None —</option>
|
||||
<option>Net 15</option>
|
||||
<option>Net 30</option>
|
||||
<option>Net 45</option>
|
||||
@@ -144,7 +144,7 @@
|
||||
<div class="row g-2 mb-2 bill-line">
|
||||
<div class="col-4">
|
||||
<select name="LineItems[@i].AccountId" class="form-select form-select-sm">
|
||||
<option value="">— Account —</option>
|
||||
<option value="">— Account —</option>
|
||||
@foreach (var a in (IEnumerable<SelectListItem>)ViewBag.AllExpenseAccounts)
|
||||
{
|
||||
if (a.Value == Model.LineItems[i].AccountId?.ToString())
|
||||
@@ -190,7 +190,7 @@
|
||||
<label class="form-label fw-semibold">Vendor <span class="text-muted">(optional)</span></label>
|
||||
<select asp-for="ExpenseVendorId" asp-items="@((IEnumerable<SelectListItem>)ViewBag.Vendors)"
|
||||
class="form-select">
|
||||
<option value="">— None —</option>
|
||||
<option value="">— None —</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
@@ -206,14 +206,14 @@
|
||||
<label class="form-label fw-semibold">Expense Account</label>
|
||||
<select asp-for="ExpenseAccountId" asp-items="@((IEnumerable<SelectListItem>)ViewBag.ExpenseAccounts)"
|
||||
class="form-select">
|
||||
<option value="">— Select —</option>
|
||||
<option value="">— Select —</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<label class="form-label fw-semibold">Payment Account</label>
|
||||
<select asp-for="PaymentAccountId" asp-items="@((IEnumerable<SelectListItem>)ViewBag.BankAccounts)"
|
||||
class="form-select">
|
||||
<option value="">— Select —</option>
|
||||
<option value="">— Select —</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -95,14 +95,14 @@
|
||||
<label class="form-label fw-semibold">Vendor</label>
|
||||
<select asp-for="BillVendorId" asp-items="@((IEnumerable<SelectListItem>)ViewBag.Vendors)"
|
||||
class="form-select">
|
||||
<option value="">— Select vendor —</option>
|
||||
<option value="">— Select vendor —</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<label class="form-label fw-semibold">AP Account</label>
|
||||
<select asp-for="APAccountId" asp-items="@((IEnumerable<SelectListItem>)ViewBag.APAccounts)"
|
||||
class="form-select">
|
||||
<option value="">— Select —</option>
|
||||
<option value="">— Select —</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
@@ -110,7 +110,7 @@
|
||||
<div class="col-6">
|
||||
<label class="form-label fw-semibold">Terms</label>
|
||||
<select asp-for="BillTerms" class="form-select">
|
||||
<option value="">— None —</option>
|
||||
<option value="">— None —</option>
|
||||
<option>Net 15</option>
|
||||
<option>Net 30</option>
|
||||
<option>Net 45</option>
|
||||
@@ -143,7 +143,7 @@
|
||||
<div class="row g-2 mb-2 bill-line">
|
||||
<div class="col-4">
|
||||
<select name="LineItems[@i].AccountId" class="form-select form-select-sm">
|
||||
<option value="">— Account —</option>
|
||||
<option value="">— Account —</option>
|
||||
@foreach (var a in (IEnumerable<SelectListItem>)ViewBag.AllExpenseAccounts)
|
||||
{
|
||||
if (a.Value == Model.LineItems[i].AccountId?.ToString())
|
||||
@@ -189,7 +189,7 @@
|
||||
<label class="form-label fw-semibold">Vendor <span class="text-muted">(optional)</span></label>
|
||||
<select asp-for="ExpenseVendorId" asp-items="@((IEnumerable<SelectListItem>)ViewBag.Vendors)"
|
||||
class="form-select">
|
||||
<option value="">— None —</option>
|
||||
<option value="">— None —</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
@@ -205,14 +205,14 @@
|
||||
<label class="form-label fw-semibold">Expense Account</label>
|
||||
<select asp-for="ExpenseAccountId" asp-items="@((IEnumerable<SelectListItem>)ViewBag.ExpenseAccounts)"
|
||||
class="form-select">
|
||||
<option value="">— Select —</option>
|
||||
<option value="">— Select —</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<label class="form-label fw-semibold">Payment Account</label>
|
||||
<select asp-for="PaymentAccountId" asp-items="@((IEnumerable<SelectListItem>)ViewBag.BankAccounts)"
|
||||
class="form-select">
|
||||
<option value="">— Select —</option>
|
||||
<option value="">— Select —</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -176,7 +176,7 @@ else
|
||||
}
|
||||
else
|
||||
{
|
||||
<span class="text-muted">—</span>
|
||||
<span class="text-muted">—</span>
|
||||
}
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Reference in New Issue
Block a user