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

Shop Equipment

Register your ovens and blast setups. Ovens power the Oven Scheduler and quoting engine — at least one is required. Blast setups define each rig's throughput rate so the AI quote engine can estimate sandblasting time accurately.

@Html.AntiForgeryToken()
Shop Ovens

Each oven appears in the Oven Scheduler's capacity planner and the oven selector on quotes. Enter dimensions to get a suggested max load, and use the cycle time guide to set a realistic batch time.

Blast Setups

Add each blast rig in your shop (cabinets, pressure pots, blast rooms). The AI quoting engine uses CFM, nozzle size, and substrate to derive a sqft/hr throughput rate. Mark one as the default — it will be pre-selected when quoting. You can also enter a measured rate override if you prefer to use real shop data. Blast setups are optional; skip this section if you don't do in-house blasting.

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