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

Payment Terms & Quote Defaults

Set the default terms that appear on your quotes and invoices. These can always be overridden per document.

@Html.AntiForgeryToken()
Payment & Turnaround Defaults
Appears on quotes and invoices (e.g. Net 30, Due on Receipt).
days
How long a quote remains valid before it expires.
days
Default expected completion time for new jobs.
Quote Document Defaults
These terms print in the Terms & Conditions section of every quote PDF.
A short note that appears at the bottom of quote PDFs.
@await Html.PartialAsync("_WizardFooter", step)