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

Chart of Accounts

Your Chart of Accounts has been pre-loaded with standard accounts for a powder coating business. Review them below.

Account Summary

These accounts are used throughout the system to categorize expenses, revenue, and inventory. You can manage them in detail from Accounting → Chart of Accounts.

@Model.AccountCount
Total Accounts
@Model.RevenueAccounts
Revenue Accounts
@Model.ExpenseAccounts
Expense Accounts
@Model.AssetAccounts
Asset Accounts
@Html.AntiForgeryToken() @await Html.PartialAsync("_WizardFooter", step)