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
15 lines
391 B
C#
15 lines
391 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PlanTempus.Application.Features.Kasse.Components;
|
|
|
|
/// <summary>
|
|
/// ViewComponent for the reconciliation table on the Kasse list page.
|
|
/// Shows all reconciliations with action bar and SAF-T export.
|
|
/// </summary>
|
|
public class KasseTableViewComponent : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke()
|
|
{
|
|
return View();
|
|
}
|
|
}
|