add report
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -6212,7 +6212,7 @@ namespace rmutr_report.Controllers
|
||||
ws.Range("B3:F3").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("B3:F3").Style.Fill.BackgroundColor = XLColor.FromArgb(255,153,204);
|
||||
ws.Range("B3:F3").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("B4").Value = " ปี "+personnel.agency_name_th.Substring(2,2) + " วิทย์";
|
||||
ws.Cell("B4").Value = " ปี "+personnel.academic_year_name_th.Substring(2,2) + " วิทย์";
|
||||
ws.Cell("B4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("B4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("B4").Style.Font.FontName = "TH SarabunPSK";
|
||||
@@ -6220,7 +6220,7 @@ namespace rmutr_report.Controllers
|
||||
ws.Cell("B4").Style.Alignment.WrapText = true;
|
||||
ws.Cell("B4").Style.Fill.BackgroundColor = XLColor.FromArgb(255,153,204);
|
||||
ws.Cell("B4").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("C4").Value = " ปี "+personnel.agency_name_th.Substring(2,2) + " สังคม";
|
||||
ws.Cell("C4").Value = " ปี "+personnel.academic_year_name_th.Substring(2,2) + " สังคม";
|
||||
ws.Cell("C4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("C4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("C4").Style.Font.FontName = "TH SarabunPSK";
|
||||
@@ -6228,7 +6228,7 @@ namespace rmutr_report.Controllers
|
||||
ws.Cell("C4").Style.Alignment.WrapText = true;
|
||||
ws.Cell("C4").Style.Fill.BackgroundColor = XLColor.FromArgb(255,153,204);
|
||||
ws.Cell("C4").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("D4").Value = " ปี "+personnel.agency_name_th.Substring(2,2) + " บริการวิชาการ";
|
||||
ws.Cell("D4").Value = " ปี "+personnel.academic_year_name_th.Substring(2,2) + " บริการวิชาการ";
|
||||
ws.Cell("D4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("D4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("D4").Style.Font.FontName = "TH SarabunPSK";
|
||||
@@ -6236,7 +6236,7 @@ namespace rmutr_report.Controllers
|
||||
ws.Cell("D4").Style.Alignment.WrapText = true;
|
||||
ws.Cell("D4").Style.Fill.BackgroundColor = XLColor.FromArgb(255,153,204);
|
||||
ws.Cell("D4").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("E4").Value = " ปี "+personnel.agency_name_th.Substring(2,2) + " ทำนุบำรุง";
|
||||
ws.Cell("E4").Value = " ปี "+personnel.academic_year_name_th.Substring(2,2) + " ทำนุบำรุง";
|
||||
ws.Cell("E4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("E4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("E4").Style.Font.FontName = "TH SarabunPSK";
|
||||
@@ -6244,7 +6244,7 @@ namespace rmutr_report.Controllers
|
||||
ws.Cell("E4").Style.Alignment.WrapText = true;
|
||||
ws.Cell("E4").Style.Fill.BackgroundColor = XLColor.FromArgb(255,153,204);
|
||||
ws.Cell("F4").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("F4").Value = "งบประมาณปี " + personnel.agency_name_th.Substring(2, 2);
|
||||
ws.Cell("F4").Value = "งบประมาณปี " + personnel.academic_year_name_th.Substring(2, 2);
|
||||
ws.Cell("F4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("F4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("F4").Style.Font.FontName = "TH SarabunPSK";
|
||||
|
||||
48
Models/Personnel/integration_strategic_plan.cs
Normal file
48
Models/Personnel/integration_strategic_plan.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.Personnel
|
||||
{
|
||||
public class integration_strategic_plan
|
||||
{
|
||||
public string academic_year_name_th { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
public decimal? science { get; set; }
|
||||
public decimal? society { get; set; }
|
||||
public decimal? academic_service { get; set; }
|
||||
public decimal? nourish { get; set; }
|
||||
public decimal? plan_1 { get; set; }
|
||||
public decimal? plan_2 { get; set; }
|
||||
public decimal? plan_3 { get; set; }
|
||||
public decimal? plan_4 { get; set; }
|
||||
public decimal? plan_5 { get; set; }
|
||||
public decimal? plan_6 { get; set; }
|
||||
public decimal? plan_7 { get; set; }
|
||||
public decimal? plan_8 { get; set; }
|
||||
public decimal? plan_9 { get; set; }
|
||||
public decimal? budget { get; set; }
|
||||
public List<integration_strategic_plan_detail> integration_strategic_plan_details { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class integration_strategic_plan_detail
|
||||
{
|
||||
public string topic { get; set; }
|
||||
public decimal? science { get; set; }
|
||||
public decimal? society { get; set; }
|
||||
public decimal? academic_service { get; set; }
|
||||
public decimal? nourish { get; set; }
|
||||
public decimal? plan_1 { get; set; }
|
||||
public decimal? plan_2 { get; set; }
|
||||
public decimal? plan_3 { get; set; }
|
||||
public decimal? plan_4 { get; set; }
|
||||
public decimal? plan_5 { get; set; }
|
||||
public decimal? plan_6 { get; set; }
|
||||
public decimal? plan_7 { get; set; }
|
||||
public decimal? plan_8 { get; set; }
|
||||
public decimal? plan_9 { get; set; }
|
||||
public decimal? budget { get; set; }
|
||||
|
||||
public int? topic_type { get; set; }
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
7e2739011ea2dfb9109e8abe681c5a2c80dbe65d
|
||||
c72c85eb313e56d69a393160878d05d03a62510b
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user