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

Pricing Tiers

Create discount tiers for your commercial customers. Once set up, you can assign a tier to any customer so their quotes automatically apply the discount.

@Html.AntiForgeryToken()
Pricing Tiers

Common examples: Gold (10% off), Silver (5% off), Wholesale (15% off). Customers without a tier are billed at standard rates.

@await Html.PartialAsync("_WizardFooter", step)
@section Scripts { }