add personnel_report
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-08-11 15:00:02 +07:00
parent 0967dd97da
commit 171ec756e4
27 changed files with 3986 additions and 945 deletions

View File

@@ -303,5 +303,947 @@ namespace rmutr_report.Controllers
return Ok();
}
[HttpPost, Route("reports/personnel_4/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel4Report([FromRoute] string type, [FromBody] personnel_report personnelReport1)
{
var sum1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 2).Sum(d => d.value_1);
var sum1_1 = 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 == 2).Sum(d => d.value_2);
var sum2_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_2);
var sum3 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 2).Sum(d => d.value_3);
var sum3_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_3);
personnelReport1.value_1 = sum1 + sum1_1;
personnelReport1.value_2 = sum2 + sum2_1;
personnelReport1.value_3 = sum3 + sum3_1;
personnelReport1.value_4 = personnelReport1.value_1 + personnelReport1.value_2 + personnelReport1.value_3;
var report1 = new List<personnel_report>() { personnelReport1 };
Report report = new Report();
report.Load(_setting.report_path + "personnel_table_4.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",
"personnelReport4" + ".xlsx");
}
return Ok();
}
[HttpPost, Route("reports/personnel_5/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel5Report([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);
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;
var report1 = new List<personnel_report>() { personnelReport1 };
Report report = new Report();
report.Load(_setting.report_path + "personnel_table_5.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",
"personnelReport5" + ".xlsx");
}
return Ok();
}
[HttpPost, Route("reports/personnel_6/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel6Report([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 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 sum3 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_3);
var sum3_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_3);
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 sum6 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_6);
var sum6_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_6);
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 sum9 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_9);
var sum9_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_9);
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 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 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 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 sum15 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_15);
var sum15_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 3).Sum(d => d.value_15);
personnelReport1.value_1 = sum1 + sum1_1;
personnelReport1.value_2 = sum2 + sum2_1;
personnelReport1.value_3 = sum3 + sum3_1;
personnelReport1.value_4 = personnelReport1.value_1 + personnelReport1.value_2 + personnelReport1.value_3;
personnelReport1.value_5 = sum5 + sum5_1;
personnelReport1.value_6 = sum6 + sum6_1;
personnelReport1.value_7 = sum7 + sum7_1;
personnelReport1.value_8 = personnelReport1.value_5 + personnelReport1.value_6 + personnelReport1.value_7;
personnelReport1.value_9 = sum9 + sum9_1;
personnelReport1.value_10 = sum10 + sum10_1;
personnelReport1.value_11 = sum11 + sum11_1;
personnelReport1.value_12 =
personnelReport1.value_9 + personnelReport1.value_10 + personnelReport1.value_11;
personnelReport1.value_13 = sum13 + sum13_1;
personnelReport1.value_14 = sum14 + sum14_1;
personnelReport1.value_15 = sum15 + sum15_1;
personnelReport1.value_16 =
personnelReport1.value_13 + personnelReport1.value_14 + personnelReport1.value_15;
foreach (var detail in personnelReport1.personnel_report_detail)
{
if (detail.topic_type == 2)
{
detail.topic = " " + detail.topic;
}
}
var report1 = new List<personnel_report>() { personnelReport1 };
Report report = new Report();
report.Load(_setting.report_path + "personnel_table_6.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",
"personnelReport6" + ".xlsx");
}
return Ok();
}
[HttpPost, Route("reports/personnel_7/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel7Report([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 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 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 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 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 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 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 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);
personnelReport1.value_1 = sum1 + sum1_1;
personnelReport1.value_2 = sum2 + sum2_1;
personnelReport1.value_3 = personnelReport1.value_1 + personnelReport1.value_2;
personnelReport1.value_4 = sum4 + sum4_1;
personnelReport1.value_5 = sum5 + sum5_1;
personnelReport1.value_6 = personnelReport1.value_4 + personnelReport1.value_5;
personnelReport1.value_7 = sum7 + sum7_1;
personnelReport1.value_8 = sum8 + sum8_1;
personnelReport1.value_9 = personnelReport1.value_7 + personnelReport1.value_8;
personnelReport1.value_10 = sum10 + sum10_1;
personnelReport1.value_11 = sum11 + sum11_1;
personnelReport1.value_12 = personnelReport1.value_10 + personnelReport1.value_11;
foreach (var detail in personnelReport1.personnel_report_detail)
{
if (detail.topic_type == 2)
{
detail.topic = " " + detail.topic;
}
}
var report1 = new List<personnel_report>() { personnelReport1 };
Report report = new Report();
report.Load(_setting.report_path + "personnel_table_7.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",
"personnelReport7" + ".xlsx");
}
return Ok();
}
[HttpPost, Route("reports/personnel_8/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel8Report([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 == 4).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 == 4).Sum(d => d.value_2);
var sum2_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_2);
var sum3 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_3);
var sum3_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_3);
var sum3_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_3);
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 == 4).Sum(d => d.value_5);
var sum5_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_5);
var sum6 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_6);
var sum6_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_6);
var sum6_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_6);
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 == 4).Sum(d => d.value_7);
var sum7_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_7);
var sum9 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_9);
var sum9_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_9);
var sum9_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_9);
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 == 4).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 == 4).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 == 4).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 == 4).Sum(d => d.value_14);
var sum14_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_14);
var sum16 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_16);
var sum16_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_16);
var sum16_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_16);
var sum17 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_17);
var sum17_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_17);
var sum17_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_17);
var sum18 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_18);
var sum18_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_18);
var sum18_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_18);
var sum20 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_20);
var sum20_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_20);
var sum20_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_20);
var sum21 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_21);
var sum21_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_21);
var sum21_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_21);
var sum22 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_22);
var sum22_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_22);
var sum22_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_22);
var sum23 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_23);
var sum23_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_23);
var sum23_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_23);
personnelReport1.value_1 = sum1 + sum1_1 + sum1_2;
personnelReport1.value_2 = sum2 + sum2_1 + sum2_2;
personnelReport1.value_3 = sum3 + sum3_1 + sum3_2;
personnelReport1.value_4 = personnelReport1.value_1 + personnelReport1.value_2 + personnelReport1.value_3;
personnelReport1.value_5 = sum5 + sum5_1 + sum5_2;
personnelReport1.value_6 = sum6 + sum6_1 + sum6_2;
personnelReport1.value_7 = sum7 + sum7_1 + sum7_2;
personnelReport1.value_8 = personnelReport1.value_5 + personnelReport1.value_6 + personnelReport1.value_7;
personnelReport1.value_9 = sum9 + sum9_1 + sum9_2;
personnelReport1.value_10 = sum10 + sum10_1 + sum10_2;
personnelReport1.value_11 = sum11 + sum11_1 + sum11_2;
personnelReport1.value_12 =
personnelReport1.value_9 + 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;
personnelReport1.value_16 = sum16 + sum16_1 + sum16_2;
personnelReport1.value_17 = sum17 + sum17_1 + sum17_2;
personnelReport1.value_18 = sum18 + sum18_1 + sum18_2;
personnelReport1.value_19 =
personnelReport1.value_16 + personnelReport1.value_17 + personnelReport1.value_18;
personnelReport1.value_20 = sum20 + sum20_1 + sum20_2;
personnelReport1.value_21 = sum21 + sum21_1 + sum21_2;
personnelReport1.value_22 = sum22 + sum22_1 + sum22_2;
personnelReport1.value_23 = sum23 + sum23_1 + sum23_2;
personnelReport1.value_24 = personnelReport1.value_20 + personnelReport1.value_21 +
personnelReport1.value_22 + personnelReport1.value_23;
foreach (var detail in personnelReport1.personnel_report_detail)
{
if (detail.topic_type == 2)
{
detail.topic = " " + detail.topic;
}
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_8.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",
"personnelReport8" + ".xlsx");
}
return Ok();
}
[HttpPost, Route("reports/personnel_9/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel9Report([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 == 4).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 == 4).Sum(d => d.value_2);
var sum2_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_2);
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 == 4).Sum(d => d.value_4);
var sum4_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_4);
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 == 4).Sum(d => d.value_5);
var sum5_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_5);
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 == 4).Sum(d => d.value_8);
var sum8_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_8);
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 == 4).Sum(d => d.value_7);
var sum7_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_7);
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 == 4).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 == 4).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 == 4).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 == 4).Sum(d => d.value_14);
var sum14_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_14);
var sum16 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_16);
var sum16_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_16);
var sum16_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_16);
var sum17 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_17);
var sum17_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_17);
var sum17_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_17);
var sum20 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_20);
var sum20_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_20);
var sum20_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_20);
var sum19 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_19);
var sum19_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_19);
var sum19_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_19);
var sum22 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_22);
var sum22_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_22);
var sum22_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_22);
var sum23 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_23);
var sum23_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_23);
var sum23_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_23);
var sum25 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_25);
var sum25_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_25);
var sum25_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_25);
var sum26 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_26);
var sum26_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_26);
var sum26_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_26);
var sum28 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_28);
var sum28_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_28);
var sum28_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_28);
var sum29 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_29);
var sum29_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_29);
var sum29_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_29);
var sum31 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_31);
var sum31_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_31);
var sum31_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_31);
var sum32 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_32);
var sum32_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_32);
var sum32_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_32);
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;
personnelReport1.value_16 = sum16 + sum16_1 + sum16_2;
personnelReport1.value_17 = sum17 + sum17_1 + sum17_2;
personnelReport1.value_18 = personnelReport1.value_16 + personnelReport1.value_17;
personnelReport1.value_19 = sum19 + sum19_1 + sum19_2;
personnelReport1.value_20 = sum20 + sum20_1 + sum20_2;
personnelReport1.value_21 = personnelReport1.value_19 + personnelReport1.value_20;
personnelReport1.value_22 = sum22 + sum22_1 + sum22_2;
personnelReport1.value_23 = sum23 + sum23_1 + sum23_2;
personnelReport1.value_24 = personnelReport1.value_22 + personnelReport1.value_23;
personnelReport1.value_25 = sum25 + sum25_1 + sum25_2;
personnelReport1.value_26 = sum26 + sum26_1 + sum26_2;
personnelReport1.value_27 = personnelReport1.value_25 + personnelReport1.value_26;
personnelReport1.value_28 = sum28 + sum28_1 + sum28_2;
personnelReport1.value_29 = sum29 + sum29_1 + sum29_2;
personnelReport1.value_30 = personnelReport1.value_28 + personnelReport1.value_29;
personnelReport1.value_31 = sum31 + sum31_1 + sum31_2;
personnelReport1.value_32 = sum32 + sum32_1 + sum32_2;
personnelReport1.value_33 = personnelReport1.value_31 + personnelReport1.value_32;
foreach (var detail in personnelReport1.personnel_report_detail)
{
if (detail.topic_type == 2)
{
detail.topic = " " + detail.topic;
}
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_9.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",
"personnelReport9" + ".xlsx");
}
return Ok();
}
[HttpPost, Route("reports/personnel_10/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel10Report([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);
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;
var report1 = new List<personnel_report>() { personnelReport1 };
Report report = new Report();
report.Load(_setting.report_path + "personnel_table_10.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",
"personnelReport10" + ".xlsx");
}
return Ok();
}
[HttpPost, Route("reports/personnel_11/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel11Report([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 == 4).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 == 4).Sum(d => d.value_2);
var sum2_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_2);
var sum3 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_3);
var sum3_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_3);
var sum3_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_3);
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 == 4).Sum(d => d.value_5);
var sum5_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_5);
var sum6 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_6);
var sum6_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_6);
var sum6_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_6);
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 == 4).Sum(d => d.value_7);
var sum7_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_7);
var sum9 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_9);
var sum9_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_9);
var sum9_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_9);
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 == 4).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 == 4).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 == 4).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 == 4).Sum(d => d.value_14);
var sum14_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_14);
var sum15 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_15);
var sum15_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_15);
var sum15_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_15);
var sum17 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_17);
var sum17_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_17);
var sum17_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_17);
var sum18 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_18);
var sum18_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_18);
var sum18_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_18);
var sum19 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_19);
var sum19_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_19);
var sum19_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_19);
var sum21 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_21);
var sum21_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_21);
var sum21_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_21);
var sum22 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_22);
var sum22_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_22);
var sum22_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_22);
var sum23 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_23);
var sum23_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_23);
var sum23_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_23);
var sum25 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_25);
var sum25_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_25);
var sum25_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_25);
var sum26 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_26);
var sum26_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_26);
var sum26_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_26);
var sum27 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_27);
var sum27_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_27);
var sum27_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_27);
personnelReport1.value_1 = sum1 + sum1_1 + sum1_2;
personnelReport1.value_2 = sum2 + sum2_1 + sum2_2;
personnelReport1.value_3 = sum3 + sum3_1 + sum3_2;
personnelReport1.value_4 = personnelReport1.value_1 + personnelReport1.value_2 + personnelReport1.value_3;
personnelReport1.value_5 = sum5 + sum5_1 + sum5_2;
personnelReport1.value_6 = sum6 + sum6_1 + sum6_2;
personnelReport1.value_7 = sum7 + sum7_1 + sum7_2;
personnelReport1.value_8 = personnelReport1.value_5 + personnelReport1.value_6 + personnelReport1.value_7;
personnelReport1.value_9 = sum9 + sum9_1 + sum9_2;
personnelReport1.value_10 = sum10 + sum10_1 + sum10_2;
personnelReport1.value_11 = sum11 + sum11_1 + sum11_2;
personnelReport1.value_12 =
personnelReport1.value_9 + 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 = sum15 + sum15_1 + sum15_2;
personnelReport1.value_16 =
personnelReport1.value_13 + personnelReport1.value_14 + personnelReport1.value_15;
personnelReport1.value_17 = sum17 + sum17_1 + sum17_2;
personnelReport1.value_18 = sum18 + sum18_1 + sum18_2;
personnelReport1.value_19 = sum19 + sum19_1 + sum19_2;
personnelReport1.value_20 =
personnelReport1.value_17 + personnelReport1.value_18 + personnelReport1.value_19;
personnelReport1.value_21 = sum21 + sum21_1 + sum21_2;
personnelReport1.value_22 = sum22 + sum22_1 + sum22_2;
personnelReport1.value_23 = sum23 + sum23_1 + sum23_2;
personnelReport1.value_24 =
personnelReport1.value_21 + personnelReport1.value_22 + personnelReport1.value_23;
personnelReport1.value_25 = sum25 + sum25_1 + sum25_2;
personnelReport1.value_26 = sum26 + sum26_1 + sum26_2;
personnelReport1.value_27 = sum27 + sum27_1 + sum27_2;
personnelReport1.value_28 =
personnelReport1.value_25 + personnelReport1.value_26 + personnelReport1.value_27;
foreach (var detail in personnelReport1.personnel_report_detail)
{
if (detail.topic_type == 2)
{
detail.topic = " " + detail.topic;
}
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_11.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",
"personnelReport11" + ".xlsx");
}
return Ok();
}
[HttpPost, Route("reports/personnel_12/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetPersonnel12Report([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 == 4).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 == 4).Sum(d => d.value_2);
var sum2_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_2);
var sum3 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_3);
var sum3_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_3);
var sum3_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_3);
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 == 4).Sum(d => d.value_4);
var sum4_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_4);
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 == 4).Sum(d => d.value_5);
var sum5_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_5);
var sum6 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_6);
var sum6_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_6);
var sum6_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_6);
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 == 4).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 == 4).Sum(d => d.value_8);
var sum8_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_8);
var sum9 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_9);
var sum9_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_9);
var sum9_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_9);
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 == 4).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 == 4).Sum(d => d.value_11);
var sum11_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_11);
var sum12 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_12);
var sum12_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_12);
var sum12_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_12);
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 == 4).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 == 4).Sum(d => d.value_14);
var sum14_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_14);
var sum15 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_15);
var sum15_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_15);
var sum15_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_15);
var sum16 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_16);
var sum16_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_16);
var sum16_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_16);
var sum17 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_17);
var sum17_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_17);
var sum17_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_17);
var sum18 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_18);
var sum18_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_18);
var sum18_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_18);
var sum19 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_19);
var sum19_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_19);
var sum19_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_19);
var sum20 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_20);
var sum20_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_20);
var sum20_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_20);
var sum21 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_21);
var sum21_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_21);
var sum21_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_21);
var sum22 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_22);
var sum22_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_22);
var sum22_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_22);
var sum23 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_23);
var sum23_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_23);
var sum23_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_23);
var sum24 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_24);
var sum24_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_24);
var sum24_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_24);
var sum25 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_25);
var sum25_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_25);
var sum25_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_25);
var sum26 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_26);
var sum26_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_26);
var sum26_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_26);
var sum27 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 1).Sum(d => d.value_27);
var sum27_1 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 4).Sum(d => d.value_27);
var sum27_2 = personnelReport1.personnel_report_detail.Where(x => x.topic_type == 6).Sum(d => d.value_27);
personnelReport1.value_1 = sum1 + sum1_1 + sum1_2;
personnelReport1.value_2 = sum2 + sum2_1 + sum2_2;
personnelReport1.value_3 = sum3 + sum3_1 + sum3_2;
personnelReport1.value_4 = sum4 + sum4_1 + sum4_2;
personnelReport1.value_5 = sum5 + sum5_1 + sum5_2;
personnelReport1.value_6 = sum6 + sum6_1 + sum6_2;
personnelReport1.value_7 = sum7 + sum7_1 + sum7_2;
personnelReport1.value_8 = sum8 + sum8_1 + sum8_2;
personnelReport1.value_9 = sum9 + sum9_1 + sum9_2;
personnelReport1.value_10 = sum10 + sum10_1 + sum10_2;
personnelReport1.value_11 = sum11 + sum11_1 + sum11_2;
personnelReport1.value_12 = sum12 + sum12_1 + sum12_2;
personnelReport1.value_13 = sum13 + sum13_1 + sum13_2;
personnelReport1.value_14 = sum14 + sum14_1 + sum14_2;
personnelReport1.value_15 = sum15 + sum15_1 + sum15_2;
personnelReport1.value_16 = sum16 + sum16_1 + sum16_2;
personnelReport1.value_17 = sum17 + sum17_1 + sum17_2;
personnelReport1.value_18 = sum18 + sum18_1 + sum18_2;
personnelReport1.value_19 = sum19 + sum19_1 + sum19_2;
personnelReport1.value_20 = sum20 + sum20_1 + sum20_2;
personnelReport1.value_21 = sum21 + sum21_1 + sum21_2;
personnelReport1.value_22 = sum22 + sum22_1 + sum22_2;
personnelReport1.value_23 = sum23 + sum23_1 + sum23_2;
personnelReport1.value_24 = sum24 + sum24_1 + sum24_2;
personnelReport1.value_25 = sum25 + sum25_1 + sum25_2;
personnelReport1.value_26 = sum26 + sum26_1 + sum26_2;
personnelReport1.value_27 = sum27 + sum27_1 + sum27_2;
foreach (var detail in personnelReport1.personnel_report_detail)
{
if (detail.topic_type == 2)
{
detail.topic = " " + detail.topic;
}
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_12.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",
"personnelReport12" + ".xlsx");
}
return Ok();
}
}
}

View File

@@ -55,6 +55,12 @@ namespace rmutr_report.Models.Personnel
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 class t_personnel_report_detail

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
6791f979674f8208d0ae6e1ffdc73e601bb071c9
880859379cd997a9162e3f5a8bf1827cf99cdc7d

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
c9d0b288823c33aa8cd4e462ebf1e29f2a1ca1f9
4d0f1df7896c70c97a1bff4f0233f6b6c499c19c

View File

@@ -1 +1 @@
16916645559107601
16917407168862588

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/10/2023 18:07:59" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="personnel_report" ReferenceName="personnel_report" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/>
@@ -207,142 +207,142 @@
<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="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">
<TableCell Name="Cell111" Border.Lines="All" Fill.Color="255, 255, 255" 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>
<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="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">
<TableCell Name="Cell112" Border.Lines="All" Fill.Color="255, 255, 255" 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>
<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="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">
<TableCell Name="Cell113" Border.Lines="All" Fill.Color="255, 255, 255" 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>
<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="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">
<TableCell Name="Cell118" Border.Lines="All" Fill.Color="255, 255, 255" 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>
<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">
<TableCell Name="Cell119" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell120" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell131" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell132" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell133" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell134" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell135" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell136" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell137" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell138" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell139" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell140" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell141" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell142" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell143" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell144" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell145" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell146" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell147" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell148" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell149" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell150" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell151" Border.Lines="All" Fill.Color="255, 255, 255" 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">
<TableCell Name="Cell152" Border.Lines="All" Fill.Color="255, 255, 255" 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>
@@ -385,55 +385,55 @@
<TableColumn Name="Column140" Width="37.8"/>
<TableColumn Name="Column141" Width="37.8"/>
<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="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" 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">
<TableCell Name="Cell153" Border.Lines="All" Fill.Color="255, 255, 153" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell154" Border.Lines="All" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<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">
<TableCell Name="Cell156" Border.Lines="All" Fill.Color="255, 255, 153" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<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">
<TableCell Name="Cell157" Border.Lines="All" Fill.Color="255, 255, 153" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<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">
<TableCell Name="Cell158" Border.Lines="All" Fill.Color="255, 255, 153" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<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">
<TableCell Name="Cell159" Border.Lines="All" Fill.Color="255, 255, 153" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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"/>
<TableCell Name="Cell160" Border.Lines="All" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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" Fill.Color="255, 255, 153" 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>
</TableObject>
</ReportSummaryBand>

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 11:11:02" ReportInfo.CreatorVersion="2021.1.0.0">
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 14:00:19" ReportInfo.CreatorVersion="2021.1.0.0">
<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="curriculum_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="agency_name_th" DataType="System.String"/>
<Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="topic_type" DataType="System.Int32"/>
<Column Name="topic" DataType="System.String"/>
<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"/>
<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>
<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>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="330" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -30,26 +101,26 @@
<TableRow Name="Row10" Height="66.15">
<TableCell Name="Cell76" Border.Lines="All" Fill.Color="255, 255, 153" Text="พื้นที่การศึกษา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell77" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold">
<TextObject Name="Text77" Left="226.8" Width="113.4" Height="66.15" Border.Lines="Left, Right" Text="เชี่ยวชาญ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text88" Left="113.4" Width="113.4" Height="66.15" Border.Lines="Left" Text="เชี่ยวชาญพิเศษ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text87" Width="113.4" Height="66.15" Text="ผู้บริหาร" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text77" Left="226.8" Width="113.4" Height="66.15" Border.Lines="Left, Right" Text="เชี่ยวชาญ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text88" Left="113.4" Width="113.4" Height="66.15" Border.Lines="Left" Text="เชี่ยวชาญพิเศษ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text87" Width="113.4" Height="66.15" Text="ผู้บริหาร" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell78" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold">
<TextObject Name="Text136" Left="226.8" Width="113.4" Height="66.15" Border.Lines="Left, Right" Text="ปฏิบัติการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text137" Width="113.4" Height="66.15" Text="ชำนาญการพิเศษ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text138" Left="113.4" Width="113.4" Height="66.15" Border.Lines="Left" Text="ชำนาญการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text136" Left="226.8" Width="113.4" Height="66.15" Border.Lines="Left, Right" Text="ปฏิบัติการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text137" Width="113.4" Height="66.15" Text="ชำนาญการพิเศษ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text138" Left="113.4" Width="113.4" Height="66.15" Border.Lines="Left" Text="ชำนาญการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell79" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold">
<TextObject Name="Text141" Width="113.4" Height="66.15" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text141" Width="113.4" Height="66.15" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</TableCell>
</TableRow>
</TableObject>
<TextObject Name="Text132" Width="1181.25" Height="28.35" Text="ตารางที่ 10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text133" Top="28.35" Width="1181.25" Height="28.35" Text="แสดงจำนวนข้าราชการ(บุคลากร)สายสนับสนุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text134" Top="56.7" Width="1181.25" Height="28.35" Text="จำแนกตามพื้นที่ และตำแหน่งทางวิชาการ/บริหาร ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text134" Top="56.7" Width="1181.25" Height="28.35" Text="จำแนกตามพื้นที่ และตำแหน่งทางวิชาการ/บริหาร ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data9" Top="157.76" Width="1171.8">
<DataBand Name="Data10" Top="164.31" Width="1171.8" Height="28.35">
<DataBand Name="Data9" Top="158.75" Width="1171.8">
<DataBand Name="Data10" Top="166.29" Width="1171.8" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table11" Width="1181.25" Height="28.35" Border.Lines="All">
<TableColumn Name="Column170" Width="28.35"/>
<TableColumn Name="Column171" Width="359.1"/>
@@ -61,40 +132,20 @@
<TableColumn Name="Column177" Width="113.4"/>
<TableColumn Name="Column184" Width="113.4"/>
<TableRow Name="Row11" Height="28.35">
<TableCell Name="Cell89" Border.Lines="Left, Top, Bottom" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell90" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell91" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell92" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell93" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell94" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell95" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell96" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell103" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell89" Border.Lines="Left, Top, Bottom" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell90" Border.Lines="Right, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell91" 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, 12pt"/>
<TableCell Name="Cell92" 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, 12pt"/>
<TableCell Name="Cell93" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell94" 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, 12pt"/>
<TableCell Name="Cell95" 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, 12pt"/>
<TableCell Name="Cell96" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell103" 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, 12pt"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary5" Top="199.22" Width="1171.8" Height="28.35">
<ReportSummaryBand Name="ReportSummary5" Top="202.19" Width="1171.8" Height="28.35">
<TableObject Name="Table12" Width="1181.25" Height="28.35" Border.Lines="All">
<TableColumn Name="Column193" Width="18.9"/>
<TableColumn Name="Column194" Width="368.55"/>
@@ -106,35 +157,15 @@
<TableColumn Name="Column200" Width="113.4"/>
<TableColumn Name="Column201" Width="113.4"/>
<TableRow Name="Row12" Height="28.35">
<TableCell Name="Cell116" 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="Cell117" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell121" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell122" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell123" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell124" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell125" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell116" Border.Lines="Left, Top, Bottom" Fill.Color="255, 255, 153" Text="รวมทั้งสิ้น" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell117" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 153" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell121" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell122" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell123" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell124" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell125" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</TableRow>
</TableObject>
</ReportSummaryBand>

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 16:37:11" ReportInfo.CreatorVersion="2021.1.0.0">
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 14:25:24" ReportInfo.CreatorVersion="2021.1.0.0">
<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="curriculum_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="agency_name_th" DataType="System.String"/>
<Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="topic_type" DataType="System.Int32"/>
<Column Name="topic" DataType="System.String"/>
<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"/>
<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>
<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>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="460" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -74,11 +145,11 @@
</TableRow>
</TableObject>
<TextObject Name="Text189" Width="1663.2" Height="28.35" Text="ตารางที่ 11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text190" Top="28.35" Width="1663.2" Height="28.35" Text="แสดงจำนวนบุคลากรสายสนับสนุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text191" Top="56.7" Width="1663.2" Height="28.35" Text="แสดงจำนวนบุคลากรสายสนับสนุน (ข้าราชการ)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text190" Top="28.35" Width="1663.2" Height="28.35" Text="แสดงจำนวนบุคลากรสายสนับสนุน (ข้าราชการ)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text191" Top="56.7" Width="1663.2" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ประเภทบุคลากร และวุฒิการศึกษา ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data15" Top="175.29" Width="1663.2">
<DataBand Name="Data16" Top="180.49" Width="1663.2" Height="28.35">
<DataBand Name="Data15" Top="177.51" Width="1663.2">
<DataBand Name="Data16" Top="184.91" Width="1663.2" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table23" Width="1663.2" Height="28.35" Border.Lines="All">
<TableColumn Name="Column280" Width="18.9"/>
<TableColumn Name="Column281" Width="283.5"/>
@@ -107,57 +178,271 @@
<TableColumn Name="Column323" Width="56.7"/>
<TableColumn Name="Column324" Width="56.7"/>
<TableRow Name="Row23" Height="28.35">
<TableCell Name="Cell280" Border.Lines="Left, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell281" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell282" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell280" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell283" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell281" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell284" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell282" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell285" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell283" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell286" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell284" Border.Lines="All" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell285" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell286" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell287" Border.Lines="All" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell288" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell289" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell290" Border.Lines="All" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell291" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell292" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell293" Border.Lines="All" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell294" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell295" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell296" Border.Lines="All" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell297" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_16]" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell317" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_17]" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell318" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_18]" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell319" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_19]" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell320" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_20]" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell321" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_21]" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell322" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_22]" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell323" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_23]" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell324" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_24]" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell287" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell288" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell289" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell290" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell291" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell292" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell293" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell294" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell295" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell296" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell297" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell317" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell318" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell319" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell320" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell321" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell322" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell323" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell324" Border.Lines="All" Font="Arial, 10pt"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary8" Top="214.03" Width="1663.2" Height="28.35">
<ReportSummaryBand Name="ReportSummary8" Top="220.67" Width="1663.2" Height="28.35">
<TableObject Name="Table24" Width="1663.2" Height="28.35" Border.Lines="All">
<TableColumn Name="Column325" Width="18.9"/>
<TableColumn Name="Column326" Width="283.5"/>
@@ -188,50 +473,30 @@
<TableRow Name="Row24" Height="28.35">
<TableCell Name="Cell325" 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="Cell326" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell327" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell328" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell329" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell330" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell331" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell332" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell333" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell334" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell335" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell336" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell337" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell338" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell339" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell340" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell341" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell342" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell343" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 12pt, style=Bold"/>
<TableCell Name="Cell344" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 12pt, style=Bold"/>
<TableCell Name="Cell345" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 12pt, style=Bold"/>
<TableCell Name="Cell346" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 12pt, style=Bold"/>
<TableCell Name="Cell347" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 12pt, style=Bold"/>
<TableCell Name="Cell348" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 12pt, style=Bold"/>
<TableCell Name="Cell349" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 12pt, style=Bold"/>
<TableCell Name="Cell350" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 12pt, style=Bold"/>
<TableCell Name="Cell327" 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"/>
<TableCell Name="Cell328" 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"/>
<TableCell Name="Cell329" 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"/>
<TableCell Name="Cell330" 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"/>
<TableCell Name="Cell331" 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"/>
<TableCell Name="Cell332" 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="Cell333" 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="Cell334" 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="Cell335" 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="Cell336" 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="Cell337" 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="Cell338" 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="Cell339" 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="Cell340" 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="Cell341" 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"/>
<TableCell Name="Cell342" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_16]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell343" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_17]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell344" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_18]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell345" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_19]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell346" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_20]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell347" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_21]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell348" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_22]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell349" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_23]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell350" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_24]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableRow>
</TableObject>
</ReportSummaryBand>

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 12:02:44" ReportInfo.CreatorVersion="2021.1.0.0">
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 14:50:14" ReportInfo.CreatorVersion="2021.1.0.0">
<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="curriculum_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="agency_name_th" DataType="System.String"/>
<Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="topic_type" DataType="System.Int32"/>
<Column Name="topic" DataType="System.String"/>
<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"/>
<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>
<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>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="625" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -68,7 +139,7 @@
<TextObject Name="Text160" Left="378" Top="37.8" Width="75.6" Height="47.25" Border.Lines="Left" Text="พนักงาน&#13;&#10;ราชการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text161" Left="453.6" Top="37.8" Width="75.6" Height="47.25" Border.Lines="Left" Text="ลูกจ้างประจำ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text162" Left="529.2" Top="37.8" Width="75.6" Height="47.25" Border.Lines="Left" Text="ลูกจ้าง&#13;&#10;ชั่วคราว" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text164" Left="680.4" Width="453.6" Height="37.8" Border.Lines="Bottom" Text="ปฏิบัติการ/ปฏิบัติงาน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text164" Left="680.4" Width="453.6" Height="37.8" Border.Lines="Bottom" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text166" Left="680.4" Top="37.8" Width="75.6" Height="47.25" Text="ข้าราชการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text167" Left="756" Top="37.8" Width="75.6" Height="47.25" Border.Lines="Left" Text="พนักงาน&#13;&#10;มหาวิทยาลัย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text168" Left="831.6" Top="37.8" Width="75.6" Height="47.25" Border.Lines="Left" Text="พนักงาน&#13;&#10;ราชการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
@@ -79,10 +150,10 @@
</TableObject>
<TextObject Name="Text132" Width="2286.9" Height="28.35" Text="ตารางที่ 12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text133" Top="28.35" Width="2286.9" Height="28.35" Text="แสดงจำนวนบุคลากรสายสนับสนุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text134" Top="56.7" Width="2286.9" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ตำแหน่งทางวิชาการ/บริหาร และวุฒิการศึกษา ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text134" Top="56.7" Width="2286.9" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ตำแหน่งทางวิชาการ/บริหาร และวุฒิการศึกษา ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data9" Top="176.66" Width="2286.9">
<DataBand Name="Data10" Top="183.21" Width="2286.9" Height="28.35">
<DataBand Name="Data9" Top="179.4" Width="2286.9">
<DataBand Name="Data10" Top="188.7" Width="2286.9" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table11" Width="2286.9" Height="28.35" Border.Lines="All">
<TableColumn Name="Column170" Width="245.7"/>
<TableColumn Name="Column171" Width="75.6"/>
@@ -113,59 +184,589 @@
<TableColumn Name="Column219" Width="75.6"/>
<TableColumn Name="Column220" Width="75.6"/>
<TableRow Name="Row11" Height="28.35">
<TableCell Name="Cell89" Border.Lines="Left, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell90" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell91" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell89" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell92" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell90" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell93" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell91" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell94" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell92" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell95" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell93" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell94" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell95" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell96" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell103" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell104" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_9]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell105" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell106" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell107" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_12]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell206" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell207" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell208" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_15]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell209" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell210" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell211" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_18]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell212" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_19]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell213" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_20]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell214" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_21]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell215" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_22]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell216" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_23]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell217" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_24]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell218" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_25]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell219" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_26]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell220" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_27]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 7" Fill.Color="252, 228, 214" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell96" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell103" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell104" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell105" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell106" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell107" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell206" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell207" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell208" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell209" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell210" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell211" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell212" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell213" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell214" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell215" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell216" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell217" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell218" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell219" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell220" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary5" Top="218.12" Width="2286.9" Height="28.35">
<ReportSummaryBand Name="ReportSummary5" Top="226.36" Width="2286.9" Height="28.35">
<TableObject Name="Table12" Width="2286.9" Height="28.35" Border.Lines="All">
<TableColumn Name="Column221" Width="245.7"/>
<TableColumn Name="Column222" Width="75.6"/>
@@ -197,53 +798,53 @@
<TableColumn Name="Column248" Width="75.6"/>
<TableRow Name="Row12" Height="28.35">
<TableCell Name="Cell221" Border.Lines="Left, Top, Bottom" Fill.Color="255, 255, 192" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell222" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell223" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold">
<TableCell Name="Cell222" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell223" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell224" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold">
<TableCell Name="Cell224" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell225" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold">
<TableCell Name="Cell225" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell226" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold">
<TableCell Name="Cell226" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell227" Border.Lines="All" Fill.Color="255, 255, 192" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold">
<TableCell Name="Cell227" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell228" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell229" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell230" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell231" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell232" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell233" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell234" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell235" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell236" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell237" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell238" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell239" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell240" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell241" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell242" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell243" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell244" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell245" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell246" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell247" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell248" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell228" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell229" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell230" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell231" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell232" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_11]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell233" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_12]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell234" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_13]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell235" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_14]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell236" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_15]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell237" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_16]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell238" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_17]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell239" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_18]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell240" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_19]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell241" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_20]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell242" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_21]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell243" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_22]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell244" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_23]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell245" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_24]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell246" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_25]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell247" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_26]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell248" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_27]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
</TableRow>
</TableObject>
</ReportSummaryBand>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 14:53:05" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="personnel_report" ReferenceName="personnel_report" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/>
@@ -145,8 +145,8 @@
<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="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ประเภทบุคลากร และเพศชาย-หญิง ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data3" Top="175.9" Width="1323">
<DataBand Name="Data4" Top="181.69" Width="1323" Height="28.35" DataSource="personnel_report_detail">
<DataBand Name="Data3" Top="177.94" Width="1323">
<DataBand Name="Data4" Top="185.79" Width="1323" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table3" Width="1323" Height="28.35" Border.Lines="All">
<TableColumn Name="Column12" Width="18.9"/>
<TableColumn Name="Column13" Width="283.5"/>
@@ -171,16 +171,22 @@
<TableRow Name="Row3" Height="28.35">
<TableCell Name="Cell12" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2">
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell13" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell14" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
@@ -189,9 +195,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell15" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
@@ -200,9 +209,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<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">
@@ -211,8 +223,12 @@
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -221,9 +237,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -232,9 +251,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -243,8 +265,12 @@
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -253,9 +279,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -264,9 +293,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -275,8 +307,12 @@
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -285,9 +321,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -296,9 +335,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -307,8 +349,12 @@
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -317,9 +363,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -328,9 +377,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -339,8 +391,12 @@
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -349,9 +405,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -360,9 +419,12 @@
<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]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</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">
@@ -371,15 +433,19 @@
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 204, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<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="TH Sarabun New, 9.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary2" Top="215.84" Width="1323" Height="28.35">
<ReportSummaryBand Name="ReportSummary2" Top="221.98" Width="1323" Height="28.35">
<TableObject Name="Table16" Width="1323" Height="28.35" Border.Lines="All">
<TableColumn Name="Column142" Width="18.9"/>
<TableColumn Name="Column143" Width="283.5"/>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 14:54:51" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="personnel_report" ReferenceName="personnel_report" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/>
@@ -138,8 +138,8 @@
<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="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา วุฒิการศึกษา และเพศชาย-หญิง ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data5" Top="175.9" Width="1152.9">
<DataBand Name="Data6" Top="181.69" Width="1152.9" Height="28.35" DataSource="personnel_report_detail">
<DataBand Name="Data5" Top="177.94" Width="1152.9">
<DataBand Name="Data6" Top="185.79" Width="1152.9" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table5" Width="1152.9" Height="28.35" Border.Lines="All">
<TableColumn Name="Column39" Width="18.9"/>
<TableColumn Name="Column40" Width="283.5"/>
@@ -161,162 +161,179 @@
<TableRow Name="Row5" Height="28.35">
<TableCell Name="Cell39" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2">
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell40" Border.Lines="Right, Top, Bottom" 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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<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>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<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>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<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">
<TableCell Name="Cell43" Border.Lines="All" Fill.Color="White" 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>
<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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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">
<TableCell Name="Cell46" Border.Lines="All" Fill.Color="White" 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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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">
<TableCell Name="Cell49" Border.Lines="All" Fill.Color="White" 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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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">
<TableCell Name="Cell52" Border.Lines="All" Fill.Color="White" 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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</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">
<TableCell Name="Cell55" Border.Lines="All" Fill.Color="White" 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"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="228, 223, 236" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary3" Top="215.84" Width="1152.9" Height="28.35">
<ReportSummaryBand Name="ReportSummary3" Top="221.98" Width="1152.9" Height="28.35">
<TableObject Name="Table6" Width="1152.9" Height="28.35" Border.Lines="All">
<TableColumn Name="Column59" Width="18.9"/>
<TableColumn Name="Column60" Width="283.5"/>

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 10:59:21" ReportInfo.CreatorVersion="2021.1.0.0">
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 14:56:05" ReportInfo.CreatorVersion="2021.1.0.0">
<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="curriculum_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="agency_name_th" DataType="System.String"/>
<Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="topic_type" DataType="System.Int32"/>
<Column Name="topic" DataType="System.String"/>
<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"/>
<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>
<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>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="220" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -41,10 +112,10 @@
</TableObject>
<TextObject Name="Text124" Width="756" Height="28.35" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text125" Top="28.35" Width="756" Height="28.35" Text="แสดงจำนวนบุคลากรสายวิชาการ (ข้าราชการ , พนักงานมหาวิทยาลัย , ลูกจ้างชั่วคราว)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text126" Top="56.7" Width="756" Height="28.35" Text="จำแนกตามหน่วยงานที่สังกัด ประเภทบุคลากรและสายงาน ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text126" Top="56.7" Width="756" Height="28.35" Text="จำแนกตามหน่วยงานที่สังกัด ประเภทบุคลากรและสายงาน ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data7" Top="176.66" Width="756">
<DataBand Name="Data8" Top="183.21" Width="756" Height="28.35">
<DataBand Name="Data7" Top="177.94" Width="756">
<DataBand Name="Data8" Top="185.79" Width="756" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table8" Width="756" Height="28.35" Border.Lines="All">
<TableColumn Name="Column87" Width="18.9"/>
<TableColumn Name="Column162" Width="283.5"/>
@@ -53,33 +124,80 @@
<TableColumn Name="Column165" Width="94.5"/>
<TableColumn Name="Column166" Width="170.1"/>
<TableRow Name="Row8" Height="28.35">
<TableCell Name="Cell80" Border.Lines="Left, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell81" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell82" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell80" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell83" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell81" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell84" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell82" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell85" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell83" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell84" Border.Lines="All" 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>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell85" 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/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="255, 255, 153" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="224, 224, 224" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary4" Top="218.12" Width="756" Height="28.35">
<ReportSummaryBand Name="ReportSummary4" Top="221.98" Width="756" Height="28.35">
<TableObject Name="Table9" Width="756" Height="28.35" Border.Lines="All">
<TableColumn Name="Column178" Width="18.9"/>
<TableColumn Name="Column179" Width="283.5"/>
@@ -90,22 +208,26 @@
<TableRow Name="Row9" Height="28.35">
<TableCell Name="Cell97" 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="Cell98" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell99" 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="Cell99" Border.Lines="All" Fill.Color="255, 255, 192" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell100" 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="Cell100" Border.Lines="All" Fill.Color="255, 255, 192" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell101" 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="Cell101" Border.Lines="All" Fill.Color="255, 255, 192" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell102" 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="Cell102" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 10:59:55" ReportInfo.CreatorVersion="2021.1.0.0">
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 10:03:15" ReportInfo.CreatorVersion="2021.1.0.0">
<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="curriculum_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="agency_name_th" DataType="System.String"/>
<Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="topic_type" DataType="System.Int32"/>
<Column Name="topic" DataType="System.String"/>
<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"/>
<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>
<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>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="400" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -55,10 +126,10 @@
</TableObject>
<TextObject Name="Text132" Width="1436.4" Height="28.35" Text="ตารางที่ 5" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text133" Top="28.35" Width="1436.4" Height="28.35" Text="แสดงจำนวนข้าราชการ(บุคลากร)สายวิชาการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text134" Top="56.7" Width="1436.4" Height="28.35" Text="จำแนกตามพื้นที่ และตำแหน่งทางวิชาการ/บริหาร ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text134" Top="56.7" Width="1436.4" Height="28.35" Text="จำแนกตามพื้นที่ และตำแหน่งทางวิชาการ/บริหาร ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data9" Top="176.66" Width="1436.4">
<DataBand Name="Data10" Top="183.21" Width="1436.4" Height="28.35">
<DataBand Name="Data9" Top="175.9" Width="1436.4">
<DataBand Name="Data10" Top="181.69" Width="1436.4" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table11" Width="1436.4" Height="28.35" Border.Lines="All">
<TableColumn Name="Column170" Width="28.35"/>
<TableColumn Name="Column171" Width="198.45"/>
@@ -74,44 +145,24 @@
<TableColumn Name="Column187" Width="94.5"/>
<TableColumn Name="Column188" Width="94.5"/>
<TableRow Name="Row11" Height="28.35">
<TableCell Name="Cell89" Border.Lines="Left, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell90" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell91" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell92" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell93" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell94" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell95" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell96" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell103" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell104" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell105" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell106" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell107" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell89" Border.Lines="Left, Top, Bottom" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell90" Border.Lines="Right, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell91" 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"/>
<TableCell Name="Cell92" 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"/>
<TableCell Name="Cell93" Border.Lines="All" 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"/>
<TableCell Name="Cell94" 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"/>
<TableCell Name="Cell95" 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"/>
<TableCell Name="Cell96" Border.Lines="All" 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"/>
<TableCell Name="Cell103" 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"/>
<TableCell Name="Cell104" 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"/>
<TableCell Name="Cell105" Border.Lines="All" 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"/>
<TableCell Name="Cell106" 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"/>
<TableCell Name="Cell107" 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"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary5" Top="218.12" Width="1436.4" Height="28.35">
<ReportSummaryBand Name="ReportSummary5" Top="215.84" Width="1436.4" Height="28.35">
<TableObject Name="Table12" Width="1436.4" Height="28.35" Border.Lines="All">
<TableColumn Name="Column193" Width="18.9"/>
<TableColumn Name="Column194" Width="207.9"/>
@@ -127,39 +178,19 @@
<TableColumn Name="Column204" Width="94.5"/>
<TableColumn Name="Column205" Width="94.5"/>
<TableRow Name="Row12" Height="28.35">
<TableCell Name="Cell116" 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="Cell116" 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="Cell117" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell121" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell122" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell123" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell124" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell125" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell202" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell203" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell204" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell205" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell121" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell122" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell123" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell124" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell125" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell127" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell202" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell203" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell204" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell205" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_11]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableRow>
</TableObject>
</ReportSummaryBand>

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 11:01:25" ReportInfo.CreatorVersion="2021.1.0.0">
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 14:56:52" ReportInfo.CreatorVersion="2021.1.0.0">
<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="curriculum_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="agency_name_th" DataType="System.String"/>
<Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="topic_type" DataType="System.Int32"/>
<Column Name="topic" DataType="System.String"/>
<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"/>
<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>
<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>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="340" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -62,10 +133,10 @@
</TableObject>
<TextObject Name="Text147" Width="1209.6" Height="28.35" Text="ตารางที่ 6" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text148" Top="28.35" Width="1209.6" Height="28.35" Text="แสดงจำนวนบุคลากรสายวิชาการ (ข้าราชการ , พนักงานมหาวิทยาลัย , ลูกจ้างชั่วคราว)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text149" Top="56.7" Width="1209.6" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ประเภทบุคลากร และวุฒิการศึกษา ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text149" Top="56.7" Width="1209.6" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ประเภทบุคลากร และวุฒิการศึกษา ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data11" Top="176.66" Width="1209.6">
<DataBand Name="Data12" Top="183.21" Width="1209.6" Height="28.35">
<DataBand Name="Data11" Top="177.94" Width="1209.6">
<DataBand Name="Data12" Top="185.79" Width="1209.6" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table17" Width="1209.6" Height="28.35" Border.Lines="All">
<TableColumn Name="Column208" Width="18.9"/>
<TableColumn Name="Column209" Width="283.5"/>
@@ -86,49 +157,155 @@
<TableColumn Name="Column224" Width="56.7"/>
<TableColumn Name="Column242" Width="56.7"/>
<TableRow Name="Row17" Height="28.35">
<TableCell Name="Cell208" Border.Lines="Left, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell209" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell210" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell208" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell211" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell209" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell212" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell210" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell213" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell211" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell214" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell212" Border.Lines="All" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell213" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell214" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell215" Border.Lines="All" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell216" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell217" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell218" Border.Lines="All" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell219" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell220" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell221" Border.Lines="All" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell222" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell223" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell224" Border.Lines="All" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell242" Text="[personnel_report.personnel_report_detail.value_16]" 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="204, 255, 255" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell215" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell216" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell217" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell218" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell219" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell220" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell221" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell222" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell223" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell224" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell242" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary6" Top="218.12" Width="1209.6" Height="28.35">
<ReportSummaryBand Name="ReportSummary6" Top="221.98" Width="1209.6" Height="28.35">
<TableObject Name="Table18" Width="1209.6" Height="28.35" Border.Lines="All">
<TableColumn Name="Column225" Width="18.9"/>
<TableColumn Name="Column226" Width="283.5"/>
@@ -151,42 +328,22 @@
<TableRow Name="Row18" Height="28.35">
<TableCell Name="Cell225" 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="Cell226" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell227" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell228" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell229" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell230" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell231" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell232" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell233" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell234" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell235" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell236" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell237" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell238" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell239" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell240" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell241" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell243" Fill.Color="255, 255, 192" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell227" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell228" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell229" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell230" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell231" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell232" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell233" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell234" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell235" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell236" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell237" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell238" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell239" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell240" Border.Lines="All" Fill.Color="255, 255, 192" 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="Cell241" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_15]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell243" Fill.Color="255, 255, 192" Text="[personnel_report.value_16]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableRow>
</TableObject>
</ReportSummaryBand>

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 11:02:06" ReportInfo.CreatorVersion="2021.1.0.0">
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 14:57:16" ReportInfo.CreatorVersion="2021.1.0.0">
<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="curriculum_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="agency_name_th" DataType="System.String"/>
<Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="topic_type" DataType="System.Int32"/>
<Column Name="topic" DataType="System.String"/>
<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"/>
<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>
<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>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="280" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -58,10 +129,10 @@
</TableObject>
<TextObject Name="Text170" Width="982.8" Height="28.35" Text="ตารางที่ 7" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text171" Top="28.35" Width="982.8" Height="28.35" Text="แสดงจำนวนบุคลากรสายวิชาการ (ข้าราชการ , พนักงานมหาวิทยาลัย/พนักงานวิทยาลัย , ลูกจ้างชั่วคราว)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text172" Top="56.7" Width="982.8" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษาวุฒิการศึกษา ประจำสายวิทยาศาสตร์และเทคโนโลยีและสังคมศาสตร์ ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text172" Top="56.7" Width="982.8" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษาวุฒิการศึกษา ประจำสายวิทยาศาสตร์และเทคโนโลยีและสังคมศาสตร์ ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data13" Top="176.66" Width="982.8">
<DataBand Name="Data14" Top="183.21" Width="982.8" Height="28.35">
<DataBand Name="Data13" Top="177.94" Width="982.8">
<DataBand Name="Data14" Top="185.79" Width="982.8" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table20" Width="982.8" Height="28.35" Border.Lines="All">
<TableColumn Name="Column249" Width="18.9"/>
<TableColumn Name="Column250" Width="283.5"/>
@@ -78,45 +149,123 @@
<TableColumn Name="Column261" Width="56.7"/>
<TableColumn Name="Column262" Width="56.7"/>
<TableRow Name="Row20" Height="28.35">
<TableCell Name="Cell249" Border.Lines="Left, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell250" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell251" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell249" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell252" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell250" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell253" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell251" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell254" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell252" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell255" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell253" Border.Lines="All" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell254" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell255" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell256" Border.Lines="All" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell257" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell258" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell259" Border.Lines="All" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell260" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell261" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell262" Border.Lines="All" 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="189, 215, 238" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell256" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell257" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell258" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell259" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell260" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell261" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell262" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary7" Top="218.12" Width="982.8" Height="28.35">
<ReportSummaryBand Name="ReportSummary7" Top="221.98" Width="982.8" Height="28.35">
<TableObject Name="Table21" Width="982.8" Height="28.35" Border.Lines="All">
<TableColumn Name="Column266" Width="18.9"/>
<TableColumn Name="Column267" Width="283.5"/>
@@ -135,38 +284,78 @@
<TableRow Name="Row21" Height="28.35">
<TableCell Name="Cell266" 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="Cell267" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell268" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
<TableCell Name="Cell268" 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>
</TableCell>
<TableCell Name="Cell269" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
<TableCell Name="Cell269" 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>
</TableCell>
<TableCell Name="Cell270" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
<TableCell Name="Cell270" 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>
</TableCell>
<TableCell Name="Cell271" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
<TableCell Name="Cell271" 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>
</TableCell>
<TableCell Name="Cell272" 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">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
<TableCell Name="Cell272" 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>
</TableCell>
<TableCell Name="Cell273" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell274" Border.Lines="All" Fill.Color="255, 255, 192" Text="[personnel_report.value_7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell275" 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="Cell276" 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="Cell277" 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="Cell278" 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="Cell279" 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="Cell273" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell274" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell275" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell276" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell277" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell278" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell279" Border.Lines="All" Fill.Color="255, 255, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableRow>
</TableObject>
</ReportSummaryBand>

View File

@@ -1,23 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/27/2023 11:02:51" ReportInfo.CreatorVersion="2021.1.0.0">
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 14:57:56" ReportInfo.CreatorVersion="2021.1.0.0">
<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="curriculum_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="agency_name_th" DataType="System.String"/>
<Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="topic_type" DataType="System.Int32"/>
<Column Name="topic" DataType="System.String"/>
<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"/>
<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>
<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>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="460" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -75,10 +146,10 @@
</TableObject>
<TextObject Name="Text189" Width="1663.2" Height="28.35" Text="ตารางที่ 8" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text190" Top="28.35" Width="1663.2" Height="28.35" Text="แสดงจำนวนบุคลากรสายสนับสนุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text191" Top="56.7" Width="1663.2" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ประเภทบุคลากร และวุฒิการศึกษา ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text191" Top="56.7" Width="1663.2" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ประเภทบุคลากร และวุฒิการศึกษา ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data15" Top="176.66" Width="1663.2">
<DataBand Name="Data16" Top="183.21" Width="1663.2" Height="28.35">
<DataBand Name="Data15" Top="177.94" Width="1663.2">
<DataBand Name="Data16" Top="185.79" Width="1663.2" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table23" Width="1663.2" Height="28.35" Border.Lines="All">
<TableColumn Name="Column280" Width="18.9"/>
<TableColumn Name="Column281" Width="283.5"/>
@@ -107,57 +178,271 @@
<TableColumn Name="Column323" Width="56.7"/>
<TableColumn Name="Column324" Width="56.7"/>
<TableRow Name="Row23" Height="28.35">
<TableCell Name="Cell280" Border.Lines="Left, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell281" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell282" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell280" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell283" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell281" Border.Lines="Right, Top, Bottom" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell284" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell282" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell285" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell283" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell286" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell284" Border.Lines="All" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell285" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell286" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell287" Border.Lines="All" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell288" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell289" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell290" Border.Lines="All" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell291" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell292" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell293" Border.Lines="All" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell294" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell295" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell296" Border.Lines="All" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell297" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_16]" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell317" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_17]" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell318" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_18]" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell319" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_19]" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell320" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_20]" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell321" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_21]" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell322" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_22]" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell323" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_23]" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell324" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_24]" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 4" Fill.Color="184, 204, 228" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
</Highlight>
</TableCell>
<TableCell Name="Cell287" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell288" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell289" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell290" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell291" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell292" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell293" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell294" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell295" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell296" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell297" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell317" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell318" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell319" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell320" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell321" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell322" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell323" Border.Lines="All" Font="Arial, 10pt"/>
<TableCell Name="Cell324" Border.Lines="All" Font="Arial, 10pt"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary8" Top="218.12" Width="1663.2" Height="28.35">
<ReportSummaryBand Name="ReportSummary8" Top="221.98" Width="1663.2" Height="28.35">
<TableObject Name="Table24" Width="1663.2" Height="28.35" Border.Lines="All">
<TableColumn Name="Column325" Width="18.9"/>
<TableColumn Name="Column326" Width="283.5"/>
@@ -186,52 +471,32 @@
<TableColumn Name="Column349" Width="56.7"/>
<TableColumn Name="Column350" Width="56.7"/>
<TableRow Name="Row24" Height="28.35">
<TableCell Name="Cell325" Border.Lines="Left, Top, Bottom" Fill.Color="255, 255, 153" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2"/>
<TableCell Name="Cell325" Border.Lines="Left, Top, Bottom" Fill.Color="255, 255, 153" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell326" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell327" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell328" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell329" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell330" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell331" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell332" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell333" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell334" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell335" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell336" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell337" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell338" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell339" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell340" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell341" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell342" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell343" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 10pt"/>
<TableCell Name="Cell344" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 10pt"/>
<TableCell Name="Cell345" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 10pt"/>
<TableCell Name="Cell346" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 10pt"/>
<TableCell Name="Cell347" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 10pt"/>
<TableCell Name="Cell348" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 10pt"/>
<TableCell Name="Cell349" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 10pt"/>
<TableCell Name="Cell350" Border.Lines="All" Fill.Color="255, 255, 153" Font="Arial, 10pt"/>
<TableCell Name="Cell327" 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, 11pt, style=Bold"/>
<TableCell Name="Cell328" 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, 11pt, style=Bold"/>
<TableCell Name="Cell329" 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, 11pt, style=Bold"/>
<TableCell Name="Cell330" 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, 11pt, style=Bold"/>
<TableCell Name="Cell331" 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, 11pt, style=Bold"/>
<TableCell Name="Cell332" 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, 11pt, style=Bold"/>
<TableCell Name="Cell333" 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, 11pt, style=Bold"/>
<TableCell Name="Cell334" 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, 11pt, style=Bold"/>
<TableCell Name="Cell335" 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, 11pt, style=Bold"/>
<TableCell Name="Cell336" 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, 11pt, style=Bold"/>
<TableCell Name="Cell337" 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, 11pt, style=Bold"/>
<TableCell Name="Cell338" 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, 11pt, style=Bold"/>
<TableCell Name="Cell339" 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, 11pt, style=Bold"/>
<TableCell Name="Cell340" 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, 11pt, style=Bold"/>
<TableCell Name="Cell341" 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, 11pt, style=Bold"/>
<TableCell Name="Cell342" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_16]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell343" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_17]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell344" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_18]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell345" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_19]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell346" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_20]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell347" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_21]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell348" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_22]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell349" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_23]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
<TableCell Name="Cell350" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_24]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
</TableRow>
</TableObject>
</ReportSummaryBand>

View File

@@ -1,23 +1,97 @@
<?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:32" ReportInfo.CreatorVersion="2021.1.0.0">
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/11/2023 14:58:13" ReportInfo.CreatorVersion="2021.1.0.0">
<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="curriculum_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="bachelors_degree_science" DataType="System.Decimal"/>
<Column Name="bachelors_degree_social" DataType="System.Decimal"/>
<Column Name="bachelors_degree_total" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="agency_name_th" DataType="System.String"/>
<Column Name="personnel_type_code" DataType="System.String"/>
<BusinessObjectDataSource Name="personnel_report_detail" DataType="null" Enabled="true">
<Column Name="topic_type" DataType="System.Int32"/>
<Column Name="topic" DataType="System.String"/>
<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"/>
<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>
<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"/>
<Column Name="value_31" DataType="System.Double"/>
<Column Name="value_32" DataType="System.Double"/>
<Column Name="value_33" DataType="System.Double"/>
</BusinessObjectDataSource>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="595" PaperHeight="210" Watermark.Font="Arial, 60pt">
@@ -86,10 +160,10 @@
</TableObject>
<TextObject Name="Text218" Width="2173.5" Height="28.35" Text="ตารางที่ 9" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text219" Top="28.35" Width="2173.5" Height="28.35" Text="แสดงจำนวนบุคลากรสายสนับสนุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text220" Top="56.7" Width="2173.5" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ประเภทบุคลากร ประจำสายวิทยาศาสตร์และเทคโนโลยีและสังคมศาสตร์ ปีงบประมาณ " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TextObject Name="Text220" Top="56.7" Width="2173.5" Height="28.35" Text="จำแนกตามสังกัดหน่วยงาน พื้นที่การศึกษา ประเภทบุคลากร ประจำสายวิทยาศาสตร์และเทคโนโลยีและสังคมศาสตร์ ปีงบประมาณ [personnel_report.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data17" Top="176.66" Width="2173.5">
<DataBand Name="Data18" Top="183.21" Width="2173.5" Height="28.35">
<DataBand Name="Data17" Top="179.4" Width="2173.5">
<DataBand Name="Data18" Top="188.7" Width="2173.5" Height="28.35" DataSource="personnel_report_detail">
<TableObject Name="Table26" Width="2173.5" Height="28.35" Border.Lines="All">
<TableColumn Name="Column303" Width="18.9"/>
<TableColumn Name="Column304" Width="283.5"/>
@@ -127,66 +201,361 @@
<TableColumn Name="Column385" Width="56.7"/>
<TableColumn Name="Column386" Width="56.7"/>
<TableRow Name="Row26" Height="28.35">
<TableCell Name="Cell303" Border.Lines="Left, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell304" Border.Lines="Right, Top, Bottom" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell305" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell303" Border.Lines="Left, Top, Bottom" Text="[personnel_report.personnel_report_detail.topic]" VertAlign="Center" Font="TH Sarabun New, 11pt" ColSpan="2">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell306" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell304" Border.Lines="Right, Top, Bottom" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell307" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell305" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell308" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell306" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell309" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell307" Border.Lines="All" 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>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell308" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell309" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell310" Border.Lines="All" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell311" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell312" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell313" Border.Lines="All" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell314" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell315" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell351" Border.Lines="All" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell366" 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="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell367" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_14]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell368" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_15]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell369" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_16]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell370" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_17]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell371" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_18]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell372" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_19]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell373" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_20]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell374" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_21]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell375" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_22]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell376" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_23]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell377" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_24]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell378" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_25]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell379" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_26]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell380" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_27]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell381" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_28]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell382" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_29]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell383" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_30]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell384" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_31]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell385" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_32]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell386" Border.Lines="All" Text="[personnel_report.personnel_report_detail.value_33]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 1" Fill.Color="198, 224, 180" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 2" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 3" Font="TH Sarabun New, 11.25pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type] == 4" Fill.Color="204, 255, 255" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 5" Fill.Color="Yellow" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[personnel_report.personnel_report_detail.topic_type]== 6" Fill.Color="237, 237, 237" Font="TH Sarabun New, 11.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell310" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell311" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell312" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell313" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell314" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell315" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell351" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell366" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell367" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell368" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell369" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell370" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell371" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell372" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell373" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell374" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell375" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell376" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell377" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell378" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell379" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell380" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell381" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell382" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell383" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell384" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell385" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell386" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary9" Top="218.12" Width="2173.5" Height="28.35">
<ReportSummaryBand Name="ReportSummary9" Top="226.36" Width="2173.5" Height="28.35">
<TableObject Name="Table27" Width="2173.5" Height="28.35" Border.Lines="All">
<TableColumn Name="Column387" Width="18.9"/>
<TableColumn Name="Column388" Width="283.5"/>
@@ -224,61 +593,41 @@
<TableColumn Name="Column420" Width="56.7"/>
<TableColumn Name="Column421" Width="56.7"/>
<TableRow Name="Row27" Height="28.35">
<TableCell Name="Cell387" Border.Lines="Left, Top, Bottom" Fill.Color="255, 255, 153" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt" ColSpan="2"/>
<TableCell Name="Cell388" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell389" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell390" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell391" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell392" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell393" Border.Lines="All" Fill.Color="255, 255, 153" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell394" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell395" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell396" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell397" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell398" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell399" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell400" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell401" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell402" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell403" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell404" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell405" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell406" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell407" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell408" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell409" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell410" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell411" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
<TableCell Name="Cell412" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell413" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell414" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell415" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell416" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell417" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell418" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell419" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell420" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell421" Border.Lines="All" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell387" 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="Cell388" Border.Lines="Right, Top, Bottom" Fill.Color="255, 255, 153" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell389" 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"/>
<TableCell Name="Cell390" 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"/>
<TableCell Name="Cell391" 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"/>
<TableCell Name="Cell392" 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"/>
<TableCell Name="Cell393" 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"/>
<TableCell Name="Cell394" 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="Cell395" 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="Cell396" 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="Cell397" 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="Cell398" 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="Cell399" 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="Cell400" 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="Cell401" 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="Cell402" 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="Cell403" 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"/>
<TableCell Name="Cell404" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_16]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell405" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_17]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell406" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_18]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell407" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_19]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell408" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_20]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell409" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_21]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell410" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_22]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell411" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_23]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell412" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_24]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell413" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_25]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell414" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_26]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell415" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_27]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell416" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_28]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell417" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_29]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell418" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_30]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell419" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_31]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell420" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_32]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell421" Border.Lines="All" Fill.Color="255, 255, 153" Text="[personnel_report.value_33]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableRow>
</TableObject>
</ReportSummaryBand>