@{ ViewData["Title"] = "Record Sales Tax Payment"; ViewData["PageIcon"] = "bi-cash-stack"; var taxLiability = (decimal)(ViewBag.TaxLiability ?? 0m); var taxFound = (bool)(ViewBag.TaxAccountFound ?? false); var banks = ViewBag.BankAccounts as List ?? new List(); }
Record Sales Tax Payment
@if (!taxFound) {
No active Sales Tax Payable (2200) account was found in your chart of accounts. Add one first.
} else {
Current Sales Tax Payable Tax collected on invoices and owed to the authority.
@taxLiability.ToString("C")
@Html.AntiForgeryToken()
$
Defaults to the full balance — edit if you're paying a partial period.
Posts a journal entry: DR Sales Tax Payable / CR the chosen bank account.
}