feat(kpi): render vision/values/uniqueness/identity indicator sections in budget policy Excel export
continuous-integration/drone/push Build is passing

Mirrors the existing indicator table layout for the 4 new reference
sections coming from rmutr-api (unit, target value, 3 responsible-role
columns), reusing the same 8-column styling as the strategic indicators.
This commit is contained in:
Nut.ไปเรื่อย
2026-08-26 19:15:26 +07:00
parent e2fcd26b8f
commit bbfcaa088e
2 changed files with 55 additions and 4 deletions
+13 -2
View File
@@ -5,9 +5,20 @@ namespace rmutr_report.Models
public class kpi
{
public string academic_year { get; set; }
public List<kpi_data_detail> header_data { get; set; }
public List<kpi_reference_header> vision_data { get; set; }
public List<kpi_reference_header> popularity_data { get; set; }
public List<kpi_reference_header> uniqueness_data { get; set; }
public List<kpi_reference_header> identity_data { get; set; }
}
public class kpi_reference_header
{
public string header_1 { get; set; }
public List<kpi_data_details2> data_detail { get; set; }
}
public class kpi_data_detail