Trip Reports
System generated consolidated cost per trip, in line with NT Cost Containment reporting
Trip TRP-2026-0488, J. Mokoena, Cape Town engagement
Travel Authorisation TA-44219, dated 02 to 04 Jun 2026
All components consolidated
| Component |
Supplier |
Reference |
Date |
Negotiated |
Amount |
@foreach (var item in ConsolidatedItems)
{
|
@item.Component
|
@item.Supplier |
@item.Reference |
@item.Date |
@item.Negotiated |
@item.Amount |
}
| Total trip cost |
R 12,960.00 |
| Savings against open rates |
R 1,840.00 |
Standard Monthly Reports
Auto-issued per NT Cost Containment template
@foreach (var report in MonthlyReports)
{
@report.Title
@report.Description
}
SLA Reports
Per the SAQA SLA template
@foreach (var report in SlaReports)
{
@report.Title
@report.Description
}
@code {
public class ReportItem
{
public string Component { get; set; } = string.Empty;
public string Supplier { get; set; } = string.Empty;
public string Reference { get; set; } = string.Empty;
public string Date { get; set; } = string.Empty;
public string Negotiated { get; set; } = string.Empty;
public string Amount { get; set; } = string.Empty;
public string Type { get; set; } = "default";
}
public class ReportInfo
{
public string Title { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
}
private List