@using PowderCoating.Application.DTOs.Wizard @model WizardStep3Dto @{ ViewData["Title"] = "Setup Wizard — Document Numbering"; var progress = ViewBag.Progress as WizardProgressDto ?? new WizardProgressDto(); int step = ViewBag.Step as int? ?? 5; } @section Styles { @await Html.PartialAsync("_WizardStyles") }
@await Html.PartialAsync("_WizardProgress", progress)
Step @step of @WizardProgressDto.TotalSteps

Document Numbering & Branding

Customize how your document numbers are formatted and choose the accent color for each PDF type.

@Html.AntiForgeryToken()
Document Prefixes

Numbers are generated automatically in the format PREFIX-YYMM-#### — for example, QT-2604-0001 or JOB-2604-0001. You can use any short prefix (up to 10 characters) that makes sense for your business.

e.g. QT-2604-0001
e.g. JOB-2604-0001
e.g. INV-2604-0001
PDF Accent Colors

Choose the header accent color for each document type. Each can be set independently to match your brand or to visually distinguish document types.

Quote Header
Invoice Header
Work Order Header
@await Html.PartialAsync("_WizardFooter", step)
@section Scripts { }