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

Equipment & Ovens

Register your ovens so the Oven Scheduler can track capacity and plan batches. You can add other equipment (spray booths, compressors) from the Equipment section later.

@Html.AntiForgeryToken()
Named Ovens

Each oven entry appears in the Oven Scheduler's capacity planner. Set the maximum load (sq ft) and typical cycle time so the scheduler can estimate how many batches fit in a day.

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