PlanTempusApp/PlanTempus.Application/Features/Kasse/Components/KasseGodkendelse/KasseGodkendelseViewComponent.cs
Janus C. H. Knudsen 754681059d Adds Kasse (Cash Register) module and related components
Introduces comprehensive cash management functionality with multiple view components for tracking daily transactions, filtering, and reconciliation

Implements:
- Cash calculation and difference tracking
- Dynamic tab switching
- Checkbox selection and row expansion
- Date filtering and approval mechanisms
2026-01-11 21:08:56 +01:00

15 lines
373 B
C#

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.Kasse.Components;
/// <summary>
/// ViewComponent for the approval section.
/// Handles status, approver selection, and confirmation checkbox.
/// </summary>
public class KasseGodkendelseViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}