edit array report summary
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-08-10 17:51:01 +07:00
parent 358938b6a4
commit 71f93ff704
14 changed files with 1845 additions and 5462 deletions

View File

@@ -0,0 +1,307 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using FastReport;
using FastReport.Export.OoXML;
using FastReport.Export.Pdf;
using Microsoft.AspNetCore.Mvc;
using rmutr_report.Models;
using rmutr_report.Models.Personnel;
using Swashbuckle.AspNetCore.Annotations;
namespace rmutr_report.Controllers
{
[SwaggerTag("สำหรับรายงาน HR")]
public class PersonnelReport : Controller
{
readonly Setting _setting;
public PersonnelReport(Setting setting)
{
_setting = setting;
}
[HttpPost, Route("reports/personnel_1/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel1Report([FromRoute] string type, [FromBody] personnel_report personnelReport1)
{
var sum1 = personnelReport1.personnel_report_detail.Sum(d => d.value_1);
var sum2 = personnelReport1.personnel_report_detail.Sum(d => d.value_2);
var sum3 = personnelReport1.personnel_report_detail.Sum(d => d.value_3);
var sum4 = personnelReport1.personnel_report_detail.Sum(d => d.value_4);
var sum5 = personnelReport1.personnel_report_detail.Sum(d => d.value_5);
var sum6 = personnelReport1.personnel_report_detail.Sum(d => d.value_6);
var sum7 = personnelReport1.personnel_report_detail.Sum(d => d.value_7);
var sum8 = personnelReport1.personnel_report_detail.Sum(d => d.value_8);
var sum9 = personnelReport1.personnel_report_detail.Sum(d => d.value_9);
var sum10 = personnelReport1.personnel_report_detail.Sum(d => d.value_10);
var sum11 = personnelReport1.personnel_report_detail.Sum(d => d.value_11);
var sum12 = personnelReport1.personnel_report_detail.Sum(d => d.value_12);
var sum13 = personnelReport1.personnel_report_detail.Sum(d => d.value_13);
var sum14 = personnelReport1.personnel_report_detail.Sum(d => d.value_14);
var sum15 = personnelReport1.personnel_report_detail.Sum(d => d.value_15);
var sum16 = personnelReport1.personnel_report_detail.Sum(d => d.value_16);
var sum17 = personnelReport1.personnel_report_detail.Sum(d => d.value_17);
var sum18 = personnelReport1.personnel_report_detail.Sum(d => d.value_18);
var sum19 = personnelReport1.personnel_report_detail.Sum(d => d.value_19);
var sum20 = personnelReport1.personnel_report_detail.Sum(d => d.value_20);
var sum21 = personnelReport1.personnel_report_detail.Sum(d => d.value_21);
var sum22 = personnelReport1.personnel_report_detail.Sum(d => d.value_22);
var sum23 = personnelReport1.personnel_report_detail.Sum(d => d.value_23);
var sum24 = personnelReport1.personnel_report_detail.Sum(d => d.value_24);
var sum25 = personnelReport1.personnel_report_detail.Sum(d => d.value_25);
var sum26 = personnelReport1.personnel_report_detail.Sum(d => d.value_26);
var sum27 = personnelReport1.personnel_report_detail.Sum(d => d.value_27);
var sum28 = personnelReport1.personnel_report_detail.Sum(d => d.value_28);
personnelReport1.value_1 = sum1;
personnelReport1.value_2 = sum2;
personnelReport1.value_3 = sum3;
personnelReport1.value_4 = sum4;
personnelReport1.value_5 = sum5;
personnelReport1.value_6 = sum6;
personnelReport1.value_7 = sum7;
personnelReport1.value_8 = sum8;
personnelReport1.value_9 = sum9;
personnelReport1.value_10 = sum10;
personnelReport1.value_11 = sum11;
personnelReport1.value_12 = sum12;
personnelReport1.value_13 = sum13;
personnelReport1.value_14 = sum14;
personnelReport1.value_15 = sum15;
personnelReport1.value_16 = sum16;
personnelReport1.value_17 = sum17;
personnelReport1.value_18 = sum18;
personnelReport1.value_19 = sum19;
personnelReport1.value_20 = sum20;
personnelReport1.value_21 = sum21;
personnelReport1.value_22 = sum22;
personnelReport1.value_23 = sum23;
personnelReport1.value_24 = sum2 + sum9 + sum15 + sum20;
personnelReport1.value_25 = sum25;
personnelReport1.value_26 = sum4 + sum13 + sum17 + sum22;
personnelReport1.value_27 = sum27;
personnelReport1.value_28 = personnelReport1.value_24 + personnelReport1.value_26;
var report1 = new List<personnel_report>() { personnelReport1 };
Report report = new Report();
report.Load(_setting.report_path + "personnel_table_1.frx");
report.RegisterData(report1, "personnel_report");
report.Prepare();
MemoryStream stream = new MemoryStream();
switch (type)
{
case "pdf":
PDFExport pdf = new PDFExport();
report.Export(pdf, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/pdf");
case "xls":
Excel2007Export excels = new Excel2007Export();
report.Export(excels, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/vnd.ms-excel");
case "xlsx":
Excel2007Export excel = new Excel2007Export();
report.Export(excel, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(
stream,
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"personnelReport1" + ".xlsx");
}
return Ok();
}
[HttpPost, Route("reports/personnel_2/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel2Report([FromRoute] string type, [FromBody] personnel_report personnelReport1)
{
var sum1 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_1);
var sum_1 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_1);
var sum2 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_2);
var sum_2 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_2);
var sum3 = personnelReport1.personnel_report_detail.Sum(d => d.value_3);
var sum4 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_4);
var sum_4 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_4);
var sum5 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_5);
var sum_5 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_5);
var sum6 = personnelReport1.personnel_report_detail.Sum(d => d.value_6);
var sum7 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_7);
var sum_7 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_7);
var sum8 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_8);
var sum_8 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_8);
var sum9 = personnelReport1.personnel_report_detail.Sum(d => d.value_9);
var sum10 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_10);
var sum_10 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_10);
var sum11 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_11);
var sum_11 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_11);
var sum12 = personnelReport1.personnel_report_detail.Sum(d => d.value_12);
var sum13 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_13);
var sum_13 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_13);
var sum14 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_14);
var sum_14 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_14);
var sum15 = personnelReport1.personnel_report_detail.Sum(d => d.value_15);
var sum16 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_16);
var sum_16 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_16);
var sum17 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 1).Sum(d => d.value_17);
var sum_17 = personnelReport1.personnel_report_detail.Where(f => f.topic_type == 4).Sum(d => d.value_17);
var sum18 = personnelReport1.personnel_report_detail.Sum(d => d.value_18);
personnelReport1.value_1 = sum1 + sum_1;
personnelReport1.value_2 = sum2 + sum_2;
personnelReport1.value_3 = personnelReport1.value_1 + personnelReport1.value_2;
personnelReport1.value_4 = sum4 + sum_4;
personnelReport1.value_5 = sum5 + sum_5;
personnelReport1.value_6 = personnelReport1.value_4 + personnelReport1.value_5;
personnelReport1.value_7 = sum7 + sum_7;
personnelReport1.value_8 = sum8 + sum_8;
personnelReport1.value_9 = personnelReport1.value_7 + personnelReport1.value_8;
personnelReport1.value_10 = sum10 + sum_10;
personnelReport1.value_11 = sum11 + sum_11;
personnelReport1.value_12 = personnelReport1.value_10 + personnelReport1.value_11;
personnelReport1.value_13 = sum13 + sum_13;
personnelReport1.value_14 = sum14 + sum_14;
personnelReport1.value_15 = personnelReport1.value_13 + personnelReport1.value_14;
personnelReport1.value_16 = sum16 + sum_16;
personnelReport1.value_17 = sum17 + sum_17;
personnelReport1.value_18 = personnelReport1.value_16 + personnelReport1.value_17;
foreach (var detail in personnelReport1.personnel_report_detail)
{
if (detail.topic_type == 3)
{
detail.topic = "- " + detail.topic;
}
}
var report1 = new List<personnel_report>() { personnelReport1 };
Report report = new Report();
report.Load(_setting.report_path + "personnel_table_2.frx");
report.RegisterData(report1, "personnel_report");
report.Prepare();
MemoryStream stream = new MemoryStream();
switch (type)
{
case "pdf":
PDFExport pdf = new PDFExport();
report.Export(pdf, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/pdf");
case "xls":
Excel2007Export excels = new Excel2007Export();
report.Export(excels, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/vnd.ms-excel");
case "xlsx":
Excel2007Export excel = new Excel2007Export();
report.Export(excel, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(
stream,
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"personnelReport2" + ".xlsx");
}
return Ok();
}
[HttpPost, Route("reports/personnel_3/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel3Report([FromRoute] string type, [FromBody] personnel_report personnelReport1)
{
var sum1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_1);
var sum1_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_1);
var sum1_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_1);
var sum2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_2);
var sum2_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_2);
var sum2_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_2);
var sum5 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_5);
var sum5_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_5);
var sum5_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_5);
var sum4 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_4);
var sum4_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_4);
var sum4_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_4);
var sum7 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_7);
var sum7_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_7);
var sum7_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_7);
var sum8 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_8);
var sum8_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_8);
var sum8_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_8);
var sum10 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_10);
var sum10_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_10);
var sum10_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_10);
var sum11 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_11);
var sum11_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_11);
var sum11_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_11);
var sum13 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_13);
var sum13_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_13);
var sum13_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_13);
var sum14 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_14);
var sum14_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_14);
var sum14_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_14);
personnelReport1.value_1 = sum1 + sum1_1 + sum1_2;
personnelReport1.value_2 = sum2 + sum2_1 + sum2_2;
personnelReport1.value_3 = personnelReport1.value_1 + personnelReport1.value_2;
personnelReport1.value_4 = sum4 + sum4_1 + sum4_2;
personnelReport1.value_5 = sum5 + sum5_1 + sum5_2;
personnelReport1.value_6 = personnelReport1.value_4 + personnelReport1.value_5;
personnelReport1.value_7 = sum7 + sum7_1 + sum7_2;
personnelReport1.value_8 = sum8 + sum8_1 + sum8_2;
personnelReport1.value_9 = personnelReport1.value_7 + personnelReport1.value_8;
personnelReport1.value_10 = sum10 + sum10_1 + sum10_2;
personnelReport1.value_11 = sum11 + sum11_1 + sum11_2;
personnelReport1.value_12 = personnelReport1.value_10 + personnelReport1.value_11;
personnelReport1.value_13 = sum13 + sum13_1 + sum13_2;
personnelReport1.value_14 = sum14 + sum14_1 + sum14_2;
personnelReport1.value_15 = personnelReport1.value_13 + personnelReport1.value_14;
foreach (var detail in personnelReport1.personnel_report_detail)
{
if (detail.topic_type == 4)
{
detail.topic = "- " + detail.topic;
}
}
var report1 = new List<personnel_report>() { personnelReport1 };
Report report = new Report();
report.Load(_setting.report_path + "personnel_table_3.frx");
report.RegisterData(report1, "personnel_report");
report.Prepare();
MemoryStream stream = new MemoryStream();
switch (type)
{
case "pdf":
PDFExport pdf = new PDFExport();
report.Export(pdf, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/pdf");
case "xls":
Excel2007Export excels = new Excel2007Export();
report.Export(excels, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/vnd.ms-excel");
case "xlsx":
Excel2007Export excel = new Excel2007Export();
report.Export(excel, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(
stream,
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"personnelReport3" + ".xlsx");
}
return Ok();
}
}
}

View File

@@ -0,0 +1,133 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace rmutr_report.Models.Personnel
{
public class personnel_report
{
[Key] public Guid? personnel_uid { get; set; }
public Guid? sync_uid { get; set; }
public string academic_year_name_th { get; set; }
public string agency_name_th { get; set; }
public string personnel_type_code { get; set; }
public List<t_personnel_report_detail> personnel_report_detail { get; set; }
public double? value_1 { get; set; }
public double? value_2 { get; set; }
public double? value_3 { get; set; }
public double? value_4 { get; set; }
public double? value_5 { get; set; }
public double? value_6 { get; set; }
public double? value_7 { get; set; }
public double? value_8 { get; set; }
public double? value_9 { get; set; }
public double? value_10 { get; set; }
public double? value_11 { get; set; }
public double? value_12 { get; set; }
public double? value_13 { get; set; }
public double? value_14 { get; set; }
public double? value_15 { get; set; }
public double? value_16 { get; set; }
public double? value_17 { get; set; }
public double? value_18 { get; set; }
public double? value_19 { get; set; }
public double? value_20 { get; set; }
public double? value_21 { get; set; }
public double? value_22 { get; set; }
public double? value_23 { get; set; }
public double? value_24 { get; set; }
public double? value_25 { get; set; }
public double? value_26 { get; set; }
public double? value_27 { get; set; }
public double? value_28 { get; set; }
public double? value_29 { get; set; }
public double? value_30 { get; set; }
}
public class t_personnel_report_detail
{
[Key] public Guid? personnel_report_detail_uid { get; set; }
public Guid? personnel_report_uid { get; set; }
public int? topic_type { get; set; }
public string topic { get; set; }
public double? value_1 { get; set; }
public double? value_2 { get; set; }
public double? value_3 { get; set; }
public double? value_4 { get; set; }
public double? value_5 { get; set; }
public double? value_6 { get; set; }
public double? value_7 { get; set; }
public double? value_8 { get; set; }
public double? value_9 { get; set; }
public double? value_10 { get; set; }
public double? value_11 { get; set; }
public double? value_12 { get; set; }
public double? value_13 { get; set; }
public double? value_14 { get; set; }
public double? value_15 { get; set; }
public double? value_16 { get; set; }
public double? value_17 { get; set; }
public double? value_18 { get; set; }
public double? value_19 { get; set; }
public double? value_20 { get; set; }
public double? value_21 { get; set; }
public double? value_22 { get; set; }
public double? value_23 { get; set; }
public double? value_24 { get; set; }
public double? value_25 { get; set; }
public double? value_26 { get; set; }
public double? value_27 { get; set; }
public double? value_28 { get; set; }
public double? value_29 { get; set; }
public double? value_30 { get; set; }
public double? value_31 { get; set; }
public double? value_32 { get; set; }
public double? value_33 { get; set; }
public double? value_34 { get; set; }
public double? value_35 { get; set; }
public double? value_36 { get; set; }
public double? value_37 { get; set; }
public double? value_38 { get; set; }
public double? value_39 { get; set; }
public double? value_40 { get; set; }
public double? value_41 { get; set; }
public double? value_42 { get; set; }
public double? value_43 { get; set; }
public double? value_44 { get; set; }
public double? value_45 { get; set; }
public double? value_46 { get; set; }
public double? value_47 { get; set; }
public double? value_48 { get; set; }
public double? value_49 { get; set; }
public double? value_50 { get; set; }
}
}

View File

@@ -150,54 +150,55 @@ namespace rmutr_report.Models
public class operating_expenses_details2 public class operating_expenses_details2
{ {
public int? color { get; set; }
public string list { get; set; } public string list { get; set; }
public decimal? total_amount { get; set; } public decimal? total_amount { get; set; }
public string remark { get; set; }
public List<operating_expenses_details3> research_support_3 { get; set; }
//public List<operating_expenses_details3> research_support_3 { get; set; }
//public List<operating_expenses_details3> subsidy_science_3 { get; set; } //public List<operating_expenses_details3> subsidy_science_3 { get; set; }
//public List<operating_expenses_details3> subsidy_society_3 { get; set; } //public List<operating_expenses_details3> subsidy_society_3 { get; set; }
} }
public class operating_expenses_details3 // public class operating_expenses_details3
{ // {
public int? color { get; set; } // public int? color { get; set; }
public string list { get; set; } // public string list { get; set; }
public decimal? total_amount { get; set; } // public decimal? total_amount { get; set; }
//
// public List<operating_expenses_details4> research_support_4 { get; set; }
// //public List<operating_expenses_details4> subsidy_science_4 { get; set; }
// //public List<operating_expenses_details4> subsidy_society_4 { get; set; }
// }
public List<operating_expenses_details4> research_support_4 { get; set; } // public class operating_expenses_details4
//public List<operating_expenses_details4> subsidy_science_4 { get; set; } // {
//public List<operating_expenses_details4> subsidy_society_4 { get; set; } // public int? color { get; set; }
} // public string list { get; set; }
// public decimal? total_amount { get; set; }
//
// public List<operating_expenses_details5> research_support_detail { get; set; }
// //public List<operating_expenses_details5> subsidy_science_detail { get; set; }
// //public List<operating_expenses_details5> subsidy_society_detail { get; set; }
// }
public class operating_expenses_details4 // public class operating_expenses_details5
{ // {
public int? color { get; set; } // public string list { get; set; }
public string list { get; set; } // public decimal? total_amount { get; set; }
public decimal? total_amount { get; set; } // public string remark { get; set; }
//
// public List<operating_expenses_details6> research_support_detail_2 { get; set; }
// //public List<operating_expenses_details_6> subsidy_science_detail_2 { get; set; }
// //public List<operating_expenses_details_6> subsidy_society_detail_2 { get; set; }
// }
public List<operating_expenses_details5> research_support_detail { get; set; } // public class operating_expenses_details6
//public List<operating_expenses_details5> subsidy_science_detail { get; set; } // {
//public List<operating_expenses_details5> subsidy_society_detail { get; set; } // public string list { get; set; }
} // public decimal? total_amount { get; set; }
// public string remark { get; set; }
public class operating_expenses_details5 // }
{
public string list { get; set; }
public decimal? total_amount { get; set; }
public string remark { get; set; }
public List<operating_expenses_details6> research_support_detail_2 { get; set; }
//public List<operating_expenses_details_6> subsidy_science_detail_2 { get; set; }
//public List<operating_expenses_details_6> subsidy_society_detail_2 { get; set; }
}
public class operating_expenses_details6
{
public string list { get; set; }
public decimal? total_amount { get; set; }
public string remark { get; set; }
}
public class subsidy_science_details public class subsidy_science_details
{ {
@@ -208,38 +209,6 @@ namespace rmutr_report.Models
} }
public class subsidy_science_details2 public class subsidy_science_details2
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<subsidy_science_details3> subsidy_science_3 { get; set; }
}
public class subsidy_science_details3
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<subsidy_science_details4> subsidy_science_4 { get; set; }
}
public class subsidy_science_details4
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<subsidy_science_details5> subsidy_science_detail { get; set; }
}
public class subsidy_science_details5
{
public string list { get; set; }
public decimal? total_amount { get; set; }
public string remark { get; set; }
public List<subsidy_science_details6> subsidy_science_detail_2 { get; set; }
}
public class subsidy_science_details6
{ {
public string list { get; set; } public string list { get; set; }
public string unit { get; set; } public string unit { get; set; }
@@ -248,6 +217,7 @@ namespace rmutr_report.Models
public string remark { get; set; } public string remark { get; set; }
} }
public class subsidy_society_details public class subsidy_society_details
{ {
public int? color { get; set; } public int? color { get; set; }
@@ -259,43 +229,15 @@ namespace rmutr_report.Models
public class subsidy_society_details2 public class subsidy_society_details2
{ {
public int? color { get; set; } public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<subsidy_society_details3> subsidy_society_3 { get; set; }
}
public class subsidy_society_details3
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<subsidy_society_details4> subsidy_society_4 { get; set; }
}
public class subsidy_society_details4
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<subsidy_society_details5> subsidy_society_detail { get; set; }
}
public class subsidy_society_details5
{
public string list { get; set; }
public decimal? total_amount { get; set; }
public string remark { get; set; }
public List<subsidy_society_details6> subsidy_society_detail_2 { get; set; }
}
public class subsidy_society_details6
{
public string list { get; set; } public string list { get; set; }
public string unit { get; set; } public string unit { get; set; }
public decimal? unit_amount { get; set; } public decimal? unit_amount { get; set; }
public decimal? total_amount { get; set; } public decimal? total_amount { get; set; }
public string remark { get; set; } public string remark { get; set; }
} }
// public class durable_articles_headers // public class durable_articles_headers
// { // {
// public string header_name { get; set; } // public string header_name { get; set; }
@@ -507,61 +449,61 @@ namespace rmutr_report.Models
public decimal? amount_7 { get; set; } public decimal? amount_7 { get; set; }
//public string remark { get; set; } public string remark { get; set; }
public List<subsidy_service_headers_detail3> subsidy_service_3 { get; set; } //public List<subsidy_service_headers_detail3> subsidy_service_3 { get; set; }
//public List<subsidy_service_headers_detail3> subsidy_arts_culture_3 { get; set; } //public List<subsidy_service_headers_detail3> subsidy_arts_culture_3 { get; set; }
} }
//
// public class subsidy_service_headers_detail3
// {
// public int? color { get; set; }
//
// //public string rowno { get; set; }
// public string list { get; set; }
// public decimal? amount_1 { get; set; }
// public decimal? amount_2 { get; set; }
// public decimal? amount_3 { get; set; }
// public decimal? amount_4 { get; set; }
// public decimal? amount_5 { get; set; }
// public decimal? amount_6 { get; set; }
//
// public decimal? amount_7 { get; set; }
//
// //public string remark { get; set; }
// public List<subsidy_service_headers_detail4> subsidy_service_4 { get; set; }
// //public List<subsidy_service_headers_detail4> subsidy_arts_culture_4 { get; set; }
// }
public class subsidy_service_headers_detail3 // public class subsidy_service_headers_detail4
{ // {
public int? color { get; set; } // public int? color { get; set; }
// public string list { get; set; }
//public string rowno { get; set; } // public decimal? amount_1 { get; set; }
public string list { get; set; } // public decimal? amount_2 { get; set; }
public decimal? amount_1 { get; set; } // public decimal? amount_3 { get; set; }
public decimal? amount_2 { get; set; } // public decimal? amount_4 { get; set; }
public decimal? amount_3 { get; set; } // public decimal? amount_5 { get; set; }
public decimal? amount_4 { get; set; } // public decimal? amount_6 { get; set; }
public decimal? amount_5 { get; set; } // public decimal? amount_7 { get; set; }
public decimal? amount_6 { get; set; } //
// public List<subsidy_service_headers_detail5> subsidy_service_detail { get; set; }
public decimal? amount_7 { get; set; } // //public List<subsidy_service_headers_detail5> subsidy_arts_culture_detail { get; set; }
// }
//
// public class subsidy_service_headers_detail5
// {
// //public string color { get; set; }
// //public string rowno { get; set; }
// public string list { get; set; }
// public decimal? amount_1 { get; set; }
// public decimal? amount_2 { get; set; }
// public decimal? amount_3 { get; set; }
// public decimal? amount_4 { get; set; }
// public decimal? amount_5 { get; set; }
// public decimal? amount_6 { get; set; }
// public decimal? amount_7 { get; set; }
// public string remark { get; set; } // public string remark { get; set; }
public List<subsidy_service_headers_detail4> subsidy_service_4 { get; set; } // }
//public List<subsidy_service_headers_detail4> subsidy_arts_culture_4 { get; set; }
}
public class subsidy_service_headers_detail4
{
public int? color { get; set; }
public string list { get; set; }
public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; }
public decimal? amount_3 { get; set; }
public decimal? amount_4 { get; set; }
public decimal? amount_5 { get; set; }
public decimal? amount_6 { get; set; }
public decimal? amount_7 { get; set; }
public List<subsidy_service_headers_detail5> subsidy_service_detail { get; set; }
//public List<subsidy_service_headers_detail5> subsidy_arts_culture_detail { get; set; }
}
public class subsidy_service_headers_detail5
{
//public string color { get; set; }
//public string rowno { get; set; }
public string list { get; set; }
public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; }
public decimal? amount_3 { get; set; }
public decimal? amount_4 { get; set; }
public decimal? amount_5 { get; set; }
public decimal? amount_6 { get; set; }
public decimal? amount_7 { get; set; }
public string remark { get; set; }
}
public class subsidy_arts_culture_detail public class subsidy_arts_culture_detail
{ {
@@ -584,62 +526,6 @@ namespace rmutr_report.Models
public class subsidy_arts_culture_detail2 public class subsidy_arts_culture_detail2
{ {
public int? color { get; set; }
//public string rowno { get; set; }
public string list { get; set; }
public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; }
public decimal? amount_3 { get; set; }
public decimal? amount_4 { get; set; }
public decimal? amount_5 { get; set; }
public decimal? amount_6 { get; set; }
//public decimal? amount_7 { get; set; }
//public string remark { get; set; }
public List<subsidy_arts_culture_detail3> subsidy_arts_culture_3 { get; set; }
}
public class subsidy_arts_culture_detail3
{
public int? color { get; set; }
//public string rowno { get; set; }
public string list { get; set; }
public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; }
public decimal? amount_3 { get; set; }
public decimal? amount_4 { get; set; }
public decimal? amount_5 { get; set; }
public decimal? amount_6 { get; set; }
//public decimal? amount_7 { get; set; }
//public string remark { get; set; }
public List<subsidy_arts_culture_detail4> subsidy_arts_culture_4 { get; set; }
}
public class subsidy_arts_culture_detail4
{
public int? color { get; set; }
public string list { get; set; }
public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; }
public decimal? amount_3 { get; set; }
public decimal? amount_4 { get; set; }
public decimal? amount_5 { get; set; }
public decimal? amount_6 { get; set; }
//public decimal? amount_7 { get; set; }
public List<subsidy_arts_culture_detail5> subsidy_arts_culture_detail { get; set; }
}
public class subsidy_arts_culture_detail5
{
//public string color { get; set; }
//public string rowno { get; set; }
public string list { get; set; } public string list { get; set; }
public decimal? amount_1 { get; set; } public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; } public decimal? amount_2 { get; set; }
@@ -653,6 +539,12 @@ namespace rmutr_report.Models
public string remark { get; set; } public string remark { get; set; }
} }
public class thailand_details public class thailand_details
{ {
public int? color { get; set; } public int? color { get; set; }
@@ -662,30 +554,6 @@ namespace rmutr_report.Models
} }
public class thailand_detail2 public class thailand_detail2
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<thailand_detail3> thailand_3 { get; set; }
}
public class thailand_detail3
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<thailand_detail4> thailand_4 { get; set; }
}
public class thailand_detail4
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<thailand_detail5> thailand_detail { get; set; }
}
public class thailand_detail5
{ {
public string list { get; set; } public string list { get; set; }
public string unit { get; set; } public string unit { get; set; }
@@ -694,6 +562,8 @@ namespace rmutr_report.Models
public string remark { get; set; } public string remark { get; set; }
} }
public class subsidy_budget_details public class subsidy_budget_details
{ {
public int? color { get; set; } public int? color { get; set; }
@@ -710,7 +580,6 @@ namespace rmutr_report.Models
public class subsidy_budget_details2 public class subsidy_budget_details2
{ {
public int? color { get; set; }
public string list { get; set; } public string list { get; set; }
public decimal? amount_1 { get; set; } public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; } public decimal? amount_2 { get; set; }
@@ -719,61 +588,12 @@ namespace rmutr_report.Models
public decimal? amount_5 { get; set; } public decimal? amount_5 { get; set; }
public decimal? total_amount { get; set; } public decimal? total_amount { get; set; }
public string remark { get; set; } public string remark { get; set; }
public List<subsidy_budget_details3> subsidy_budget_project_3 { get; set; }
} }
public class subsidy_budget_details3
{
public int? color { get; set; }
public string list { get; set; }
public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; }
public decimal? amount_3 { get; set; }
public decimal? amount_4 { get; set; }
public decimal? amount_5 { get; set; }
public decimal? total_amount { get; set; }
public string remark { get; set; }
public List<subsidy_budget_details4> subsidy_budget_project_4 { get; set; }
}
public class subsidy_budget_details4
{
public int? color { get; set; }
public string list { get; set; }
public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; }
public decimal? amount_3 { get; set; }
public decimal? amount_4 { get; set; }
public decimal? amount_5 { get; set; }
public decimal? total_amount { get; set; }
public string remark { get; set; }
public List<subsidy_budget_details5> subsidy_budget_project_detail { get; set; }
}
public class subsidy_budget_details5
{
public string list { get; set; }
public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; }
public decimal? amount_3 { get; set; }
public decimal? amount_4 { get; set; }
public decimal? amount_5 { get; set; }
public decimal? total_amount { get; set; }
public string remark { get; set; }
public List<subsidy_budget_details6> subsidy_budget_project_detail_2 { get; set; }
}
public class subsidy_budget_details6
{
public string list { get; set; }
public decimal? amount_1 { get; set; }
public decimal? amount_2 { get; set; }
public decimal? amount_3 { get; set; }
public decimal? amount_4 { get; set; }
public decimal? amount_5 { get; set; }
public decimal? total_amount { get; set; }
public string remark { get; set; }
}
public class integrated_plan_details public class integrated_plan_details
{ {
public int? color { get; set; } public int? color { get; set; }
@@ -783,37 +603,39 @@ namespace rmutr_report.Models
} }
public class integrated_plan_detail2 public class integrated_plan_detail2
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<integrated_plan_detail3> integrated_plan_3 { get; set; }
}
public class integrated_plan_detail3
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<integrated_plan_detail4>integrated_plan_4 { get; set; }
}
public class integrated_plan_detail4
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<integrated_plan_detail5> integrated_plan_detail { get; set; }
}
public class integrated_plan_detail5
{ {
public string list { get; set; } public string list { get; set; }
public string unit { get; set; } public string unit { get; set; }
public decimal? unit_amount { get; set; } public decimal? unit_amount { get; set; }
public decimal? total_amount { get; set; } public decimal? total_amount { get; set; }
public string remark { get; set; } public string remark { get; set; }
//public List<integrated_plan_detail3> integrated_plan_3 { get; set; }
} }
// public class integrated_plan_detail3
// {
// public int? color { get; set; }
// public string list { get; set; }
// public decimal? total_amount { get; set; }
// public List<integrated_plan_detail4>integrated_plan_4 { get; set; }
// }
//
// public class integrated_plan_detail4
// {
// public int? color { get; set; }
// public string list { get; set; }
// public decimal? total_amount { get; set; }
// public List<integrated_plan_detail5> integrated_plan_detail { get; set; }
// }
// public class integrated_plan_detail5
// {
// public string list { get; set; }
// public string unit { get; set; }
// public decimal? unit_amount { get; set; }
// public decimal? total_amount { get; set; }
// public string remark { get; set; }
// }
public class strategic_plan_details public class strategic_plan_details
{ {
public int? color { get; set; } public int? color { get; set; }
@@ -823,35 +645,37 @@ namespace rmutr_report.Models
} }
public class strategic_plan_details2 public class strategic_plan_details2
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<strategic_plan_details3> strategic_plan_3 { get; set; }
}
public class strategic_plan_details3
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<strategic_plan_details4> strategic_plan_4 { get; set; }
}
public class strategic_plan_details4
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total_amount { get; set; }
public List<strategic_plan_details5> strategic_plan_detail { get; set; }
}
public class strategic_plan_details5
{ {
public string list { get; set; } public string list { get; set; }
public string unit { get; set; } public string unit { get; set; }
public decimal? unit_amount { get; set; } public decimal? unit_amount { get; set; }
public decimal? total_amount { get; set; } public decimal? total_amount { get; set; }
public string remark { get; set; } public string remark { get; set; }
//public List<strategic_plan_details3> strategic_plan_3 { get; set; }
} }
// public class strategic_plan_details3
// {
// public int? color { get; set; }
// public string list { get; set; }
// public decimal? total_amount { get; set; }
// public List<strategic_plan_details4> strategic_plan_4 { get; set; }
// }
//
// public class strategic_plan_details4
// {
// public int? color { get; set; }
// public string list { get; set; }
// public decimal? total_amount { get; set; }
// public List<strategic_plan_details5> strategic_plan_detail { get; set; }
// }
// public class strategic_plan_details5
// {
// public string list { get; set; }
// public string unit { get; set; }
// public decimal? unit_amount { get; set; }
// public decimal? total_amount { get; set; }
// public string remark { get; set; }
// }
} }

View File

@@ -1 +1 @@
dafcd97c1154f7c231cb7691293bbd8d24fedfcf c9d0b288823c33aa8cd4e462ebf1e29f2a1ca1f9

View File

@@ -1 +1 @@
16911428465191941 16916645559107601

File diff suppressed because it is too large Load Diff

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 11:03:56" ReportInfo.CreatorVersion="2021.1.0.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/10/2023 14:51:24" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary> <Dictionary>
<BusinessObjectDataSource Name="student_news_area" ReferenceName="student_news_area" DataType="null" Enabled="true"> <BusinessObjectDataSource Name="personnel_report" ReferenceName="personnel_report" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/> <Column Name="academic_year_name_th" DataType="System.String"/>
<Column Name="curriculum_name_th" DataType="System.String"/> <Column Name="agency_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/> <Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true"> <BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/> <Column Name="topic_type" DataType="System.Int32"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/> <Column Name="topic" DataType="System.String"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/> <Column Name="value_1" DataType="System.Double"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/> <Column Name="value_2" DataType="System.Double"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/> <Column Name="value_3" DataType="System.Double"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/> <Column Name="value_4" DataType="System.Double"/>
<Column Name="total1" DataType="System.Decimal"/> <Column Name="value_5" DataType="System.Double"/>
<Column Name="total2" DataType="System.Decimal"/> <Column Name="value_6" DataType="System.Double"/>
<Column Name="total3" DataType="System.Decimal"/> <Column Name="value_7" DataType="System.Double"/>
<Column Name="total4" DataType="System.Decimal"/> <Column Name="value_8" DataType="System.Double"/>
<Column Name="total5" DataType="System.Decimal"/> <Column Name="value_9" DataType="System.Double"/>
<Column Name="value_10" DataType="System.Double"/>
<Column Name="value_11" DataType="System.Double"/>
<Column Name="value_12" DataType="System.Double"/>
<Column Name="value_13" DataType="System.Double"/>
<Column Name="value_14" DataType="System.Double"/>
<Column Name="value_15" DataType="System.Double"/>
<Column Name="value_16" DataType="System.Double"/>
<Column Name="value_17" DataType="System.Double"/>
<Column Name="value_18" DataType="System.Double"/>
<Column Name="value_19" DataType="System.Double"/>
<Column Name="value_20" DataType="System.Double"/>
<Column Name="value_21" DataType="System.Double"/>
<Column Name="value_22" DataType="System.Double"/>
<Column Name="value_23" DataType="System.Double"/>
<Column Name="value_24" DataType="System.Double"/>
<Column Name="value_25" DataType="System.Double"/>
<Column Name="value_26" DataType="System.Double"/>
<Column Name="value_27" DataType="System.Double"/>
<Column Name="value_28" DataType="System.Double"/>
<Column Name="value_29" DataType="System.Double"/>
<Column Name="value_30" DataType="System.Double"/>
<Column Name="value_31" DataType="System.Double"/>
<Column Name="value_32" DataType="System.Double"/>
<Column Name="value_33" DataType="System.Double"/>
<Column Name="value_34" DataType="System.Double"/>
<Column Name="value_35" DataType="System.Double"/>
<Column Name="value_36" DataType="System.Double"/>
<Column Name="value_37" DataType="System.Double"/>
<Column Name="value_38" DataType="System.Double"/>
<Column Name="value_39" DataType="System.Double"/>
<Column Name="value_40" DataType="System.Double"/>
<Column Name="value_41" DataType="System.Double"/>
<Column Name="value_42" DataType="System.Double"/>
<Column Name="value_43" DataType="System.Double"/>
<Column Name="value_44" DataType="System.Double"/>
<Column Name="value_45" DataType="System.Double"/>
<Column Name="value_46" DataType="System.Double"/>
<Column Name="value_47" DataType="System.Double"/>
<Column Name="value_48" DataType="System.Double"/>
<Column Name="value_49" DataType="System.Double"/>
<Column Name="value_50" DataType="System.Double"/>
</BusinessObjectDataSource> </BusinessObjectDataSource>
<Column Name="value_1" DataType="System.Double"/>
<Column Name="value_2" DataType="System.Double"/>
<Column Name="value_3" DataType="System.Double"/>
<Column Name="value_4" DataType="System.Double"/>
<Column Name="value_5" DataType="System.Double"/>
<Column Name="value_6" DataType="System.Double"/>
<Column Name="value_7" DataType="System.Double"/>
<Column Name="value_8" DataType="System.Double"/>
<Column Name="value_9" DataType="System.Double"/>
<Column Name="value_10" DataType="System.Double"/>
<Column Name="value_11" DataType="System.Double"/>
<Column Name="value_12" DataType="System.Double"/>
<Column Name="value_13" DataType="System.Double"/>
<Column Name="value_14" DataType="System.Double"/>
<Column Name="value_15" DataType="System.Double"/>
<Column Name="value_16" DataType="System.Double"/>
<Column Name="value_17" DataType="System.Double"/>
<Column Name="value_18" DataType="System.Double"/>
<Column Name="value_19" DataType="System.Double"/>
<Column Name="value_20" DataType="System.Double"/>
<Column Name="value_21" DataType="System.Double"/>
<Column Name="value_22" DataType="System.Double"/>
<Column Name="value_23" DataType="System.Double"/>
<Column Name="value_24" DataType="System.Double"/>
<Column Name="value_25" DataType="System.Double"/>
<Column Name="value_26" DataType="System.Double"/>
<Column Name="value_27" DataType="System.Double"/>
<Column Name="value_28" DataType="System.Double"/>
<Column Name="value_29" DataType="System.Double"/>
<Column Name="value_30" DataType="System.Double"/>
</BusinessObjectDataSource> </BusinessObjectDataSource>
</Dictionary> </Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="405" PaperHeight="210" Watermark.Font="Arial, 60pt"> <ReportPage Name="Page1" Landscape="true" PaperWidth="405" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -96,10 +167,10 @@
</TableObject> </TableObject>
<TextObject Name="Text2" Width="1455.3" Height="28.35" Text="ตารางที่ 1" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/> <TextObject Name="Text2" Width="1455.3" Height="28.35" Text="ตารางที่ 1" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text3" Top="28.35" Width="1455.3" Height="28.35" Text="แสดงจำนวนบุคลากรทั้งหมด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/> <TextObject Name="Text3" Top="28.35" Width="1455.3" Height="28.35" Text="แสดงจำนวนบุคลากรทั้งหมด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text15" Top="56.7" Width="1455.3" Height="28.35" Text="จำแนกตามหน่วยงานที่สังกัด ประเภทบุคลากรและสายงาน ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/> <TextObject Name="Text15" Top="56.7" Width="1455.3" Height="28.35" Text="จำแนกตามหน่วยงานที่สังกัด ประเภทบุคลากรและสายงาน ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand> </PageHeaderBand>
<DataBand Name="Data1" Top="195.56" Width="1455.3"> <DataBand Name="Data1" Top="194.8" Width="1455.3">
<DataBand Name="Data2" Top="202.11" Width="1455.3" Height="28.35"> <DataBand Name="Data2" Top="200.59" Width="1455.3" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table14" Width="1455.3" Height="28.35" Border.Lines="All"> <TableObject Name="Table14" Width="1455.3" Height="28.35" Border.Lines="All">
<TableColumn Name="Column70" Width="302.4"/> <TableColumn Name="Column70" Width="302.4"/>
<TableColumn Name="Column71" Width="37.8"/> <TableColumn Name="Column71" Width="37.8"/>
@@ -131,60 +202,156 @@
<TableColumn Name="Column111" Width="37.8"/> <TableColumn Name="Column111" Width="37.8"/>
<TableColumn Name="Column112" Width="37.8"/> <TableColumn Name="Column112" Width="37.8"/>
<TableRow Name="Row14" Height="28.35"> <TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell110" Border.Lines="All" Text="[personnel_report.personnel_report_detail.topic]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 12pt">
<TableCell Name="Cell111" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell112" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell113" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell111" Border.Lines="All" Fill.Color="221, 235, 247" Text="[personnel_report.personnel_report_detail.value_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell118" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell112" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell119" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell113" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.personnel_report_detail.value_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell120" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell118" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell119" Border.Lines="All" Fill.Color="221, 235, 247" Text="[personnel_report.personnel_report_detail.value_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell120" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell131" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell132" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell133" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell134" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.personnel_report_detail.value_10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell135" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_11]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell136" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_12]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell137" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_13]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell138" Border.Lines="All" Fill.Color="221, 235, 247" Text="[personnel_report.personnel_report_detail.value_14]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell139" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_15]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell140" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.personnel_report_detail.value_16]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell141" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_17]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell142" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.personnel_report_detail.value_18]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell143" Border.Lines="All" Fill.Color="221, 235, 247" Text="[personnel_report.personnel_report_detail.value_19]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell144" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_20]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell145" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.personnel_report_detail.value_21]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell146" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_22]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell147" Border.Lines="All" Fill.Color="221, 235, 247" Text="[personnel_report.personnel_report_detail.value_23]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell148" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_24]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell149" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.personnel_report_detail.value_25]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell150" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_26]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell151" Border.Lines="All" Fill.Color="224, 224, 224" Text="[personnel_report.personnel_report_detail.value_27]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell152" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_28]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell131" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell132" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell133" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell134" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell135" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell136" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell137" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell138" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell139" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell140" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell141" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell142" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell143" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell144" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell145" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell146" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell147" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell148" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell149" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell150" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell151" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell152" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</DataBand> </DataBand>
</DataBand> </DataBand>
<ReportSummaryBand Name="ReportSummary1" Top="237.02" Width="1455.3" Height="94.5"> <ReportSummaryBand Name="ReportSummary1" Top="234.74" Width="1455.3" Height="94.5">
<TextObject Name="Text13" Top="37.8" Width="718.2" Height="28.35" Text="หมายเหตุ" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold, Underline"/> <TextObject Name="Text13" Top="37.8" Width="718.2" Height="28.35" Text="หมายเหตุ" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<TextObject Name="Text14" Top="66.15" Width="1445.85" Height="28.35" Text=" - อัตราว่างพนักงานมหาวิทยาลัย (สายวิชาการ) ว่างไม่มีเงิน หมายถึงอัตราว่างในปีงบประมาณ พ.ศ. 2565 ไม่ได้รับจัดสรรงบประมาณจากสำนักงบประมาณ เพื่อจ้างงานในปีงบประมาณ พ.ศ. 2565" VertAlign="Center" Font="TH Sarabun New, 15pt"/> <TextObject Name="Text14" Top="66.15" Width="1445.85" Height="28.35" Text=" - อัตราว่างพนักงานมหาวิทยาลัย (สายวิชาการ) ว่างไม่มีเงิน หมายถึงอัตราว่างในปีงบประมาณ พ.ศ. 2565 ไม่ได้รับจัดสรรงบประมาณจากสำนักงบประมาณ เพื่อจ้างงานในปีงบประมาณ พ.ศ. 2565" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TableObject Name="Table15" Width="1455.3" Height="28.35" Border.Lines="All"> <TableObject Name="Table15" Width="1455.3" Height="28.35" Border.Lines="All">
@@ -219,54 +386,54 @@
<TableColumn Name="Column141" Width="37.8"/> <TableColumn Name="Column141" Width="37.8"/>
<TableRow Name="Row15" Height="28.35"> <TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell153" Border.Lines="All" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell153" Border.Lines="All" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell154" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell154" Border.Lines="All" Fill.Color="221, 235, 247" Text="[personnel_report.value_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell155" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell155" Border.Lines="All" Text="[personnel_report.value_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell156" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell156" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.value_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell157" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell157" Border.Lines="All" Text="[personnel_report.value_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell158" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell158" Border.Lines="All" Fill.Color="221, 235, 247" Text="[personnel_report.value_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell159" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell159" Border.Lines="All" Text="[personnel_report.value_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell160" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell160" Border.Lines="All" Text="[personnel_report.value_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell161" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell161" Border.Lines="All" Text="[personnel_report.value_8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell162" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell162" Border.Lines="All" Text="[personnel_report.value_9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell163" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell163" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.value_10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell164" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell164" Border.Lines="All" Text="[personnel_report.value_11]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell165" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell165" Border.Lines="All" Text="[personnel_report.value_12]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell166" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell166" Border.Lines="All" Text="[personnel_report.value_13]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell167" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell167" Border.Lines="All" Fill.Color="221, 235, 247" Text="[personnel_report.value_14]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell168" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell168" Border.Lines="All" Text="[personnel_report.value_15]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell169" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell169" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.value_16]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell170" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell170" Border.Lines="All" Text="[personnel_report.value_17]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell171" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell171" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.value_18]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell172" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell172" Border.Lines="All" Fill.Color="221, 235, 247" Text="[personnel_report.value_19]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell173" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell173" Border.Lines="All" Text="[personnel_report.value_20]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell174" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell174" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.value_21]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell175" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell175" Border.Lines="All" Text="[personnel_report.value_22]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell176" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell176" Border.Lines="All" Fill.Color="221, 235, 247" Text="[personnel_report.value_23]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell177" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell177" Border.Lines="All" Text="[personnel_report.value_24]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell178" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell178" Border.Lines="All" Fill.Color="248, 203, 173" Text="[personnel_report.value_25]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell179" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell179" Border.Lines="All" Text="[personnel_report.value_26]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell180" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell180" Border.Lines="All" Fill.Color="224, 224, 224" Text="[personnel_report.value_27]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell181" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell181" Border.Lines="All" Text="[personnel_report.value_28]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 10:57:36" ReportInfo.CreatorVersion="2021.1.0.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/10/2023 15:49:21" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary> <Dictionary>
<BusinessObjectDataSource Name="student_news_area" ReferenceName="student_news_area" DataType="null" Enabled="true"> <BusinessObjectDataSource Name="personnel_report" ReferenceName="personnel_report" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/> <Column Name="academic_year_name_th" DataType="System.String"/>
<Column Name="curriculum_name_th" DataType="System.String"/> <Column Name="agency_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/> <Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true"> <BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/> <Column Name="topic_type" DataType="System.Int32"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/> <Column Name="topic" DataType="System.String"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/> <Column Name="value_1" DataType="System.Double"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/> <Column Name="value_2" DataType="System.Double"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/> <Column Name="value_3" DataType="System.Double"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/> <Column Name="value_4" DataType="System.Double"/>
<Column Name="total1" DataType="System.Decimal"/> <Column Name="value_5" DataType="System.Double"/>
<Column Name="total2" DataType="System.Decimal"/> <Column Name="value_6" DataType="System.Double"/>
<Column Name="total3" DataType="System.Decimal"/> <Column Name="value_7" DataType="System.Double"/>
<Column Name="total4" DataType="System.Decimal"/> <Column Name="value_8" DataType="System.Double"/>
<Column Name="total5" DataType="System.Decimal"/> <Column Name="value_9" DataType="System.Double"/>
<Column Name="value_10" DataType="System.Double"/>
<Column Name="value_11" DataType="System.Double"/>
<Column Name="value_12" DataType="System.Double"/>
<Column Name="value_13" DataType="System.Double"/>
<Column Name="value_14" DataType="System.Double"/>
<Column Name="value_15" DataType="System.Double"/>
<Column Name="value_16" DataType="System.Double"/>
<Column Name="value_17" DataType="System.Double"/>
<Column Name="value_18" DataType="System.Double"/>
<Column Name="value_19" DataType="System.Double"/>
<Column Name="value_20" DataType="System.Double"/>
<Column Name="value_21" DataType="System.Double"/>
<Column Name="value_22" DataType="System.Double"/>
<Column Name="value_23" DataType="System.Double"/>
<Column Name="value_24" DataType="System.Double"/>
<Column Name="value_25" DataType="System.Double"/>
<Column Name="value_26" DataType="System.Double"/>
<Column Name="value_27" DataType="System.Double"/>
<Column Name="value_28" DataType="System.Double"/>
<Column Name="value_29" DataType="System.Double"/>
<Column Name="value_30" DataType="System.Double"/>
<Column Name="value_31" DataType="System.Double"/>
<Column Name="value_32" DataType="System.Double"/>
<Column Name="value_33" DataType="System.Double"/>
<Column Name="value_34" DataType="System.Double"/>
<Column Name="value_35" DataType="System.Double"/>
<Column Name="value_36" DataType="System.Double"/>
<Column Name="value_37" DataType="System.Double"/>
<Column Name="value_38" DataType="System.Double"/>
<Column Name="value_39" DataType="System.Double"/>
<Column Name="value_40" DataType="System.Double"/>
<Column Name="value_41" DataType="System.Double"/>
<Column Name="value_42" DataType="System.Double"/>
<Column Name="value_43" DataType="System.Double"/>
<Column Name="value_44" DataType="System.Double"/>
<Column Name="value_45" DataType="System.Double"/>
<Column Name="value_46" DataType="System.Double"/>
<Column Name="value_47" DataType="System.Double"/>
<Column Name="value_48" DataType="System.Double"/>
<Column Name="value_49" DataType="System.Double"/>
<Column Name="value_50" DataType="System.Double"/>
</BusinessObjectDataSource> </BusinessObjectDataSource>
<Column Name="value_1" DataType="System.Double"/>
<Column Name="value_2" DataType="System.Double"/>
<Column Name="value_3" DataType="System.Double"/>
<Column Name="value_4" DataType="System.Double"/>
<Column Name="value_5" DataType="System.Double"/>
<Column Name="value_6" DataType="System.Double"/>
<Column Name="value_7" DataType="System.Double"/>
<Column Name="value_8" DataType="System.Double"/>
<Column Name="value_9" DataType="System.Double"/>
<Column Name="value_10" DataType="System.Double"/>
<Column Name="value_11" DataType="System.Double"/>
<Column Name="value_12" DataType="System.Double"/>
<Column Name="value_13" DataType="System.Double"/>
<Column Name="value_14" DataType="System.Double"/>
<Column Name="value_15" DataType="System.Double"/>
<Column Name="value_16" DataType="System.Double"/>
<Column Name="value_17" DataType="System.Double"/>
<Column Name="value_18" DataType="System.Double"/>
<Column Name="value_19" DataType="System.Double"/>
<Column Name="value_20" DataType="System.Double"/>
<Column Name="value_21" DataType="System.Double"/>
<Column Name="value_22" DataType="System.Double"/>
<Column Name="value_23" DataType="System.Double"/>
<Column Name="value_24" DataType="System.Double"/>
<Column Name="value_25" DataType="System.Double"/>
<Column Name="value_26" DataType="System.Double"/>
<Column Name="value_27" DataType="System.Double"/>
<Column Name="value_28" DataType="System.Double"/>
<Column Name="value_29" DataType="System.Double"/>
<Column Name="value_30" DataType="System.Double"/>
</BusinessObjectDataSource> </BusinessObjectDataSource>
</Dictionary> </Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="370" PaperHeight="210" Watermark.Font="Arial, 60pt"> <ReportPage Name="Page1" Landscape="true" PaperWidth="370" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -72,10 +143,10 @@
</TableObject> </TableObject>
<TextObject Name="Text102" Width="1323" Height="28.35" Text="ตารางที่ 2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/> <TextObject Name="Text102" Width="1323" Height="28.35" Text="ตารางที่ 2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text103" Top="28.35" Width="1323" Height="28.35" Text="แสดงจำนวนบุคลากรทั้งหมด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/> <TextObject Name="Text103" Top="28.35" Width="1323" Height="28.35" Text="แสดงจำนวนบุคลากรทั้งหมด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text104" Top="56.7" Width="1323" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ประเภทบุคลากร และเพศชาย-หญิง ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/> <TextObject Name="Text104" Top="56.7" Width="1323" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ประเภทบุคลากร และเพศชาย-หญิง ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand> </PageHeaderBand>
<DataBand Name="Data3" Top="176.66" Width="1323"> <DataBand Name="Data3" Top="175.9" Width="1323">
<DataBand Name="Data4" Top="183.21" Width="1323" Height="28.35"> <DataBand Name="Data4" Top="181.69" Width="1323" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table3" Width="1323" Height="28.35" Border.Lines="All"> <TableObject Name="Table3" Width="1323" Height="28.35" Border.Lines="All">
<TableColumn Name="Column12" Width="18.9"/> <TableColumn Name="Column12" Width="18.9"/>
<TableColumn Name="Column13" Width="283.5"/> <TableColumn Name="Column13" Width="283.5"/>
@@ -98,51 +169,217 @@
<TableColumn Name="Column30" Width="56.7"/> <TableColumn Name="Column30" Width="56.7"/>
<TableColumn Name="Column31" Width="56.7"/> <TableColumn Name="Column31" Width="56.7"/>
<TableRow Name="Row3" Height="28.35"> <TableRow Name="Row3" Height="28.35">
<TableCell Name="Cell12" Border.Lines="Left, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell12" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2">
<TableCell Name="Cell13" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell14" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell15" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell13" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell16" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell14" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell17" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell15" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell18" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell16" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.personnel_report_detail.value_3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell17" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell18" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell19" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.personnel_report_detail.value_6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell20" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell21" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_8]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell22" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.personnel_report_detail.value_9]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell23" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_10]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell24" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_11]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell25" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.personnel_report_detail.value_12]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell26" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_13]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell27" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_14]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell28" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.personnel_report_detail.value_15]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell29" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_16]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell30" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_17]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell31" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.personnel_report_detail.value_18]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell19" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell20" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell21" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell22" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell23" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell24" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell25" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell26" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell27" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell28" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell29" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell30" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell31" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</DataBand> </DataBand>
</DataBand> </DataBand>
<ReportSummaryBand Name="ReportSummary2" Top="218.12" Width="1323" Height="28.35"> <ReportSummaryBand Name="ReportSummary2" Top="215.84" Width="1323" Height="28.35">
<TableObject Name="Table16" Width="1323" Height="28.35" Border.Lines="All"> <TableObject Name="Table16" Width="1323" Height="28.35" Border.Lines="All">
<TableColumn Name="Column142" Width="18.9"/> <TableColumn Name="Column142" Width="18.9"/>
<TableColumn Name="Column143" Width="283.5"/> <TableColumn Name="Column143" Width="283.5"/>
@@ -167,44 +404,129 @@
<TableRow Name="Row16" Height="28.35"> <TableRow Name="Row16" Height="28.35">
<TableCell Name="Cell182" Border.Lines="Left, Top, Bottom" Fill.Color="255, 255, 192" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/> <TableCell Name="Cell182" Border.Lines="Left, Top, Bottom" Fill.Color="255, 255, 192" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell183" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell183" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell184" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell184" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell185" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell185" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell186" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell186" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell187" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell187" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell188" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell188" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell189" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell189" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TableCell Name="Cell190" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Formats>
<TableCell Name="Cell191" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <NumberFormat DecimalDigits="0"/>
<TableCell Name="Cell192" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <GeneralFormat/>
<TableCell Name="Cell193" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> </Formats>
<TableCell Name="Cell194" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> </TableCell>
<TableCell Name="Cell195" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell190" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TableCell Name="Cell196" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Formats>
<TableCell Name="Cell197" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <NumberFormat DecimalDigits="0"/>
<TableCell Name="Cell198" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <GeneralFormat/>
<TableCell Name="Cell199" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> </Formats>
<TableCell Name="Cell200" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> </TableCell>
<TableCell Name="Cell201" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell191" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_8]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell192" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_9]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell193" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_10]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell194" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_11]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell195" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_12]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell196" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_13]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell197" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_14]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell198" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_15]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell199" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_16]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell200" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_17]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell201" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_18]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 10:58:31" ReportInfo.CreatorVersion="2021.1.0.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/10/2023 16:28:29" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary> <Dictionary>
<BusinessObjectDataSource Name="student_news_area" ReferenceName="student_news_area" DataType="null" Enabled="true"> <BusinessObjectDataSource Name="personnel_report" ReferenceName="personnel_report" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/> <Column Name="academic_year_name_th" DataType="System.String"/>
<Column Name="curriculum_name_th" DataType="System.String"/> <Column Name="agency_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/> <Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true"> <BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/> <Column Name="topic_type" DataType="System.Int32"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/> <Column Name="topic" DataType="System.String"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/> <Column Name="value_1" DataType="System.Double"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/> <Column Name="value_2" DataType="System.Double"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/> <Column Name="value_3" DataType="System.Double"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/> <Column Name="value_4" DataType="System.Double"/>
<Column Name="total1" DataType="System.Decimal"/> <Column Name="value_5" DataType="System.Double"/>
<Column Name="total2" DataType="System.Decimal"/> <Column Name="value_6" DataType="System.Double"/>
<Column Name="total3" DataType="System.Decimal"/> <Column Name="value_7" DataType="System.Double"/>
<Column Name="total4" DataType="System.Decimal"/> <Column Name="value_8" DataType="System.Double"/>
<Column Name="total5" DataType="System.Decimal"/> <Column Name="value_9" DataType="System.Double"/>
<Column Name="value_10" DataType="System.Double"/>
<Column Name="value_11" DataType="System.Double"/>
<Column Name="value_12" DataType="System.Double"/>
<Column Name="value_13" DataType="System.Double"/>
<Column Name="value_14" DataType="System.Double"/>
<Column Name="value_15" DataType="System.Double"/>
<Column Name="value_16" DataType="System.Double"/>
<Column Name="value_17" DataType="System.Double"/>
<Column Name="value_18" DataType="System.Double"/>
<Column Name="value_19" DataType="System.Double"/>
<Column Name="value_20" DataType="System.Double"/>
<Column Name="value_21" DataType="System.Double"/>
<Column Name="value_22" DataType="System.Double"/>
<Column Name="value_23" DataType="System.Double"/>
<Column Name="value_24" DataType="System.Double"/>
<Column Name="value_25" DataType="System.Double"/>
<Column Name="value_26" DataType="System.Double"/>
<Column Name="value_27" DataType="System.Double"/>
<Column Name="value_28" DataType="System.Double"/>
<Column Name="value_29" DataType="System.Double"/>
<Column Name="value_30" DataType="System.Double"/>
<Column Name="value_31" DataType="System.Double"/>
<Column Name="value_32" DataType="System.Double"/>
<Column Name="value_33" DataType="System.Double"/>
<Column Name="value_34" DataType="System.Double"/>
<Column Name="value_35" DataType="System.Double"/>
<Column Name="value_36" DataType="System.Double"/>
<Column Name="value_37" DataType="System.Double"/>
<Column Name="value_38" DataType="System.Double"/>
<Column Name="value_39" DataType="System.Double"/>
<Column Name="value_40" DataType="System.Double"/>
<Column Name="value_41" DataType="System.Double"/>
<Column Name="value_42" DataType="System.Double"/>
<Column Name="value_43" DataType="System.Double"/>
<Column Name="value_44" DataType="System.Double"/>
<Column Name="value_45" DataType="System.Double"/>
<Column Name="value_46" DataType="System.Double"/>
<Column Name="value_47" DataType="System.Double"/>
<Column Name="value_48" DataType="System.Double"/>
<Column Name="value_49" DataType="System.Double"/>
<Column Name="value_50" DataType="System.Double"/>
</BusinessObjectDataSource> </BusinessObjectDataSource>
<Column Name="value_1" DataType="System.Double"/>
<Column Name="value_2" DataType="System.Double"/>
<Column Name="value_3" DataType="System.Double"/>
<Column Name="value_4" DataType="System.Double"/>
<Column Name="value_5" DataType="System.Double"/>
<Column Name="value_6" DataType="System.Double"/>
<Column Name="value_7" DataType="System.Double"/>
<Column Name="value_8" DataType="System.Double"/>
<Column Name="value_9" DataType="System.Double"/>
<Column Name="value_10" DataType="System.Double"/>
<Column Name="value_11" DataType="System.Double"/>
<Column Name="value_12" DataType="System.Double"/>
<Column Name="value_13" DataType="System.Double"/>
<Column Name="value_14" DataType="System.Double"/>
<Column Name="value_15" DataType="System.Double"/>
<Column Name="value_16" DataType="System.Double"/>
<Column Name="value_17" DataType="System.Double"/>
<Column Name="value_18" DataType="System.Double"/>
<Column Name="value_19" DataType="System.Double"/>
<Column Name="value_20" DataType="System.Double"/>
<Column Name="value_21" DataType="System.Double"/>
<Column Name="value_22" DataType="System.Double"/>
<Column Name="value_23" DataType="System.Double"/>
<Column Name="value_24" DataType="System.Double"/>
<Column Name="value_25" DataType="System.Double"/>
<Column Name="value_26" DataType="System.Double"/>
<Column Name="value_27" DataType="System.Double"/>
<Column Name="value_28" DataType="System.Double"/>
<Column Name="value_29" DataType="System.Double"/>
<Column Name="value_30" DataType="System.Double"/>
</BusinessObjectDataSource> </BusinessObjectDataSource>
</Dictionary> </Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="325" PaperHeight="210" Watermark.Font="Arial, 60pt"> <ReportPage Name="Page1" Landscape="true" PaperWidth="325" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -65,10 +136,10 @@
</TableObject> </TableObject>
<TextObject Name="Text81" Width="1152.9" Height="28.35" Text="ตารางที่ 3" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/> <TextObject Name="Text81" Width="1152.9" Height="28.35" Text="ตารางที่ 3" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text83" Top="28.35" Width="1152.9" Height="28.35" Text="แสดงจำนวนบุคลากรทั้งหมด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/> <TextObject Name="Text83" Top="28.35" Width="1152.9" Height="28.35" Text="แสดงจำนวนบุคลากรทั้งหมด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text84" Top="56.7" Width="1152.9" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา วุฒิการศึกษา และเพศชาย-หญิง ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/> <TextObject Name="Text84" Top="56.7" Width="1152.9" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา วุฒิการศึกษา และเพศชาย-หญิง ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand> </PageHeaderBand>
<DataBand Name="Data5" Top="176.66" Width="1152.9"> <DataBand Name="Data5" Top="175.9" Width="1152.9">
<DataBand Name="Data6" Top="183.21" Width="1152.9" Height="28.35"> <DataBand Name="Data6" Top="181.69" Width="1152.9" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table5" Width="1152.9" Height="28.35" Border.Lines="All"> <TableObject Name="Table5" Width="1152.9" Height="28.35" Border.Lines="All">
<TableColumn Name="Column39" Width="18.9"/> <TableColumn Name="Column39" Width="18.9"/>
<TableColumn Name="Column40" Width="283.5"/> <TableColumn Name="Column40" Width="283.5"/>
@@ -88,48 +159,164 @@
<TableColumn Name="Column54" Width="56.7"/> <TableColumn Name="Column54" Width="56.7"/>
<TableColumn Name="Column55" Width="56.7"/> <TableColumn Name="Column55" Width="56.7"/>
<TableRow Name="Row5" Height="28.35"> <TableRow Name="Row5" Height="28.35">
<TableCell Name="Cell39" Border.Lines="Left, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell39" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2">
<TableCell Name="Cell40" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell41" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell42" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell40" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell43" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell41" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell44" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell42" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell45" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"> <TableCell Name="Cell43" Border.Lines="All" Fill.Color="255, 255, 255" Text="[personnel_report.personnel_report_detail.value_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell44" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell45" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell46" Border.Lines="All" Fill.Color="255, 255, 255" Text="[personnel_report.personnel_report_detail.value_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell47" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell48" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell49" Border.Lines="All" Fill.Color="255, 255, 255" Text="[personnel_report.personnel_report_detail.value_9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell50" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell51" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_11]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell52" Border.Lines="All" Fill.Color="255, 255, 255" Text="[personnel_report.personnel_report_detail.value_12]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell53" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_13]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell54" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_14]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell55" Border.Lines="All" Fill.Color="255, 255, 255" Text="[personnel_report.personnel_report_detail.value_15]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell46" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell47" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell48" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell49" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell50" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell51" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell52" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell53" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell54" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell55" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</DataBand> </DataBand>
</DataBand> </DataBand>
<ReportSummaryBand Name="ReportSummary3" Top="218.12" Width="1152.9" Height="28.35"> <ReportSummaryBand Name="ReportSummary3" Top="215.84" Width="1152.9" Height="28.35">
<TableObject Name="Table6" Width="1152.9" Height="28.35" Border.Lines="All"> <TableObject Name="Table6" Width="1152.9" Height="28.35" Border.Lines="All">
<TableColumn Name="Column59" Width="18.9"/> <TableColumn Name="Column59" Width="18.9"/>
<TableColumn Name="Column60" Width="283.5"/> <TableColumn Name="Column60" Width="283.5"/>
@@ -149,43 +336,43 @@
<TableColumn Name="Column81" Width="56.7"/> <TableColumn Name="Column81" Width="56.7"/>
<TableColumn Name="Column82" Width="56.7"/> <TableColumn Name="Column82" Width="56.7"/>
<TableRow Name="Row6" Height="28.35"> <TableRow Name="Row6" Height="28.35">
<TableCell Name="Cell59" Border.Lines="Left, Top, Bottom" Fill.Color="255, 255, 192" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/> <TableCell Name="Cell59" Border.Lines="Left, Top, Bottom" Fill.Color="255, 255, 153" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell60" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell60" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell61" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell61" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell62" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell62" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell63" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell63" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell64" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell64" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell65" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"> <TableCell Name="Cell65" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight> <Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight> </Highlight>
</TableCell> </TableCell>
<TableCell Name="Cell66" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell66" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell67" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell67" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell68" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell68" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell69" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell69" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell70" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell70" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell71" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell71" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_11]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell72" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell72" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_12]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell73" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell73" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_13]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell74" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell74" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_14]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell75" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell75" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_15]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>

File diff suppressed because it is too large Load Diff