feat(kpi): render vision/values/uniqueness/identity indicator sections in budget policy Excel export
continuous-integration/drone/push Build is passing
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:
+13
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user