@model PowderCoating.Application.DTOs.Accounting.CreateBillDto @{ ViewData["Title"] = "New Bill"; ViewData["PageIcon"] = "bi-receipt-cutoff"; ViewData["PageHelpTitle"] = "New Bill"; ViewData["PageHelpContent"] = "Record a vendor invoice to track what you owe. Bills start as Draft (editable) and become Open once confirmed. Partial payments are supported — each payment reduces the balance. Link line items to expense accounts and optionally to specific jobs for cost tracking."; string? fromPoNumber = ViewBag.FromPoNumber as string; int? fromPoId = ViewBag.FromPoId as int?; }
@if (!string.IsNullOrEmpty(fromPoNumber)) {

Pre-filled from @fromPoNumber — review and save

}
@if (fromPoId.HasValue) { } else { }
@Html.AntiForgeryToken() @if (Model.PurchaseOrderId.HasValue) { }
Bill Details
JPG, PNG, GIF, WebP, or PDF — up to 10 MB.
Line Items
Account Description Job Qty Unit Price Amount
Summary
Subtotal $0.00
Tax $0.00

Total $0.00

Cancel
@section Scripts { @{await Html.RenderPartialAsync("_ValidationScriptsPartial");} }