@{ ViewData["Title"] = "Dashboard"; Layout = "~/Views/Shared/_Layout.cshtml"; } @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

Inventory Admin Dashboard

Store: {{ currentUserCompanyDept.departmentName }}

@await Html.PartialAsync("~/Areas/Inventory/Views/_InventoryPartial.cshtml");

Inventory Report

Statistic

Total Number of Item Registered: {{ reportData.itemCountRegistered }}

Total Number of Item Still in Stock: {{ reportData.itemCountStillInStock }}

Item Registered

This Month: {{ reportData.itemCountRegisteredThisMonth }}

Last Month: {{ reportData.itemCountRegisteredLastMonth }}

Item Stock Out

This Month: {{ reportData.itemCountStockOutThisMonth }}

Last Month: {{ reportData.itemCountStockOutLastMonth }}

@section Scripts { @{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); } }