@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?; }
Pre-filled from @fromPoNumber — review and save
}