fix(kpi): don't number vision/values/uniqueness/identity as strategic issues
continuous-integration/drone/push Build is passing

Add is_reference_section flag to header_data/detail_kpi_data so the
kpi_performance_result and detail_kpi Excel exports render the 4
reference-indicator sections (วิสัยทัศน์/ค่านิยม/เอกลักษณ์/อัตลักษณ์)
with their bare category name instead of a "ประเด็นยุทธ์ศาสตร์ที่ N"
prefix, and skip them in the real strategic-issue numbering.
This commit is contained in:
Nut.ไปเรื่อย
2026-08-31 15:34:23 +07:00
parent 076f8ed4d7
commit 966d34d1fe
4 changed files with 46 additions and 43 deletions
+1
View File
@@ -31,6 +31,7 @@ namespace rmutr_report.Models
{
public string year_range { get; set; }
public string strategic_issues { get; set;}
public bool is_reference_section { get; set; }
//public string agency_name { get; set; }
public List<detail_kpi_datas> data { get; set; }
}
+2
View File
@@ -14,6 +14,8 @@ namespace rmutr_report.Models
{
public string strategic_issues { get; set; }
public bool is_reference_section { get; set; }
public List<detail_kpi_performance_result> data { get; set; }
}