add ง.5-2.1

This commit is contained in:
kamonwan taengsuk
2023-03-16 15:44:49 +07:00
parent fd4e1bd21e
commit c301e46c12
4 changed files with 1634 additions and 98 deletions

View File

@@ -0,0 +1,93 @@
using System.Collections.Generic;
using System.IO;
using ClosedXML.Excel;
using FastReport;
using FastReport.Export.Csv;
using FastReport.Export.Mht;
using FastReport.Export.OoXML;
using FastReport.Export.Pdf;
using Microsoft.AspNetCore.Mvc;
using rmutr_report.Models;
using Swashbuckle.AspNetCore.Annotations;
namespace rmutr_report.Controllers
{
[SwaggerTag("สำหรับรายงานคำขอโครงการพันธุกรรมพืช ง.5-2.1")]
public class plant_genetic_conservation_project: Controller
{
readonly Setting _setting;
public plant_genetic_conservation_project(Setting setting)
{
this._setting = setting;
}
[HttpPost, Route("reports/plant_genetic_conservation_project/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetConservationProjectReport([FromRoute] string type, [FromBody] conservation_project project)
{
foreach (var v in project.five)
{
string na = "ประเด็นยุทธศาสตร์ที่ " ;
v.strategic_issues = na + v.strategic_issues;
string na2 = "กลยุทธ์ที่ " ;
v.measure = na2 + v.measure;
}
foreach (var v in project.eleventh)
{
foreach (var vv in v.elevenths)
{
string na = "ครั้งที่ ";
vv.the_time = na + vv.the_time;
// string na2 = " จำนวน ";
// vv.count_day = na2 + vv.count_day + " วัน";
// if (project.count_day != null)
// {
// project.text3 = "จำนวน " + project.count_day + " วัน";
// }
}
}
var _project = new List<conservation_project>() {project};
Report report = new Report();
report.Load(_setting.report_path + "plant_genetic_conservation_project.frx");
report.RegisterData(_project, "conservation_project");
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":
case "xlsx":
Excel2007Export excel = new Excel2007Export();
report.Export(excel, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/vnd.ms-excel");
break;
case "mht":
MHTExport mht = new MHTExport();
report.Export(mht, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "multipart/related");
break;
case "csv":
CSVExport csv = new CSVExport();
report.Export(csv, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "text/csv");
break;
}
return Ok();
}
}
}

View File

@@ -0,0 +1,380 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class conservation_project
{
public string product { get; set; }
public string project { get; set; }
public string faculty { get; set; }
public string project_name { get; set; }
public List<activitys_data> activity { get; set; }
public string project_activitie { get; set; } //ข้อ 2
public string principles_reasons { get; set; } //ข้อ 3
public string objective { get; set; } //ข้อ 4
public List<five_data> five { get; set; } //ข้อ 5
public string strategic_issues { get; set; } //ข้อ 6
public string subject { get; set; } //ข้อ 6
public string strategy { get; set; } //ข้อ 6
public string consistency_ministry { get; set; } //ข้อ 7
public string consistency_agency { get; set; } //ข้อ 8
public List<ninths_data> ninth { get; set; } //ข้อ 9
public List<tenths_data> tenth { get; set; } //ข้อ 10
// public int? count_day { get; set; } //ข้อ 11
// public string text3 { get; set; } //ข้อ 11
public List<eleventh_data> eleventh { get; set; } //ข้อ 11
public string count_activity { get; set; } //ข้อ 12
public List<twelfth_data> twelfth { get; set; } //ข้อ 12
public List<twelfth_data_detail> twelfths { get; set; } //ข้อ 12 detail ตาราง
public List<thirteenth_data> thirteenth { get; set; } //ข้อ 13
//public List<thirteenth_data1> thirteenth1 { get; set; } //ข้อ 13
public decimal? durable_articles { get; set; } //งบลงทุน
public decimal? land_building { get; set; } //งบลงทุน
public string url_file1 { get; set; } //งบลงทุน
public string url_file2 { get; set; } //งบลงทุน
public List<fourteenths_data> fourteenth { get; set; }//ข้อ 14
public string operational_activitie { get; set; }//ข้อ 15
public string evaluation { get; set; }//ข้อ 16
public decimal? budget_amount { get; set; } //ข้อ 17
public List<seventeenths_data> seventeenth{ get; set; } //ข้อ 17
public List<eighteenths_data> eighteenth { get; set; } //ข้อ 18
public List<nineteenths_data> nineteenth { get; set; } //ข้อ 19
public List<twentieths_data> twentieth { get; set; } //ข้อ 20
public List<twentieths_data> twenty_one { get; set; } //ข้อ 21
public List<twentys_two_data> twenty_two { get; set; } //ข้อ 22
public string url_file3 { get; set; } //ข้อ 23
}
public class activitys_data
{
public string activity { get; set; }
}
public class five_data
{
public string strategic_issues { get; set; }
public string measure { get; set; }
}
public class ninths_data
{
public string activity { get; set; }
public string text1 { get; set; }
public string text2 { get; set; }
public string text3 { get; set; }
public string text4 { get; set; }
public string text5 { get; set; }
public string text6 { get; set; }
public string responsible_person { get; set; }
public string agency { get; set; }
public string area { get; set; }
public string telephone_number { get; set; }
public string mobile_number { get; set; }
public string email { get; set; }
}
public class tenths_data
{
public string activity { get; set; }
public List<tenths_data_detail> tenths { get; set; }
}
public class tenths_data_detail
{
public string the_time { get; set; }
public List<tenths_data_details> tenths2 { get; set; }
}
public class tenths_data_details
{
public string internal_external1 { get; set; }
public string area_province1 { get; set; }
public string location1 { get; set; }
public string internal_external2 { get; set; }
public string area_province2 { get; set; }
public string location2 { get; set; }
}
public class eleventh_data
{
public string activity { get; set; }
public List<eleventh_data_detail> elevenths { get; set; }
}
public class eleventh_data_detail
{
public string the_time { get; set; }
public string count_day { get; set; }
public string start_date { get; set; }
public string end_date { get; set; }
}
public class twelfth_data
{
public string activity { get; set; }
}
public class twelfth_data_detail
{
public string activity_table { get; set; }
public List<twelfth_data_detail_details> twelfths2 { get; set; }
}
public class twelfth_data_detail_details
{
public decimal? salaya_executive { get; set; }
public decimal? bophitphimuk_executive { get; set; }
public decimal? pohchang_executive { get; set; }
public decimal? klai_kangwon_executive { get; set; }
public decimal? salaya_teacher { get; set; }
public decimal? bophitphimuk_teacher { get; set; }
public decimal? pohchang_teacher { get; set; }
public decimal? klai_kangwon_teacher { get; set; }
public decimal? salaya_officer { get; set; }
public decimal? bophitphimuk_officer { get; set; }
public decimal? pohchang_officer { get; set; }
public decimal? klai_kangwon_officer { get; set; }
public decimal? salaya_internal_student { get; set; }
public decimal? bophitphimuk_internal_student { get; set; }
public decimal? pohchang_internal_student { get; set; }
public decimal? klai_kangwon_internal_student { get; set; }
public decimal? salaya_external_student{ get; set; }
public decimal? bophitphimuk_external_student { get; set; }
public decimal? pohchang_external_student { get; set; }
public decimal? klai_kangwon_external_student { get; set; }
public decimal? salaya_person { get; set; }
public decimal? bophitphimuk_person { get; set; }
public decimal? pohchang_person{ get; set; }
public decimal? klai_kangwon_person { get; set; }
public decimal? salaya_lecturer { get; set; }
public decimal? bophitphimuk_lecturer { get; set; }
public decimal? pohchang_lecturer { get; set; }
public decimal? klai_kangwon_lecturer{ get; set; }
public decimal? salaya_board { get; set; }
public decimal? bophitphimuk_board { get; set; }
public decimal? pohchang_board { get; set; }
public decimal? klai_kangwon_board { get; set; }
public decimal? salaya_driver { get; set; }
public decimal? bophitphimuk_driver { get; set; }
public decimal? pohchang_driver { get; set; }
public decimal? klai_kangwon_driver{ get; set; }
public decimal? salaya_other { get; set; }
public decimal? bophitphimuk_other { get; set; }
public decimal? pohchang_other { get; set; }
public decimal? klai_kangwon_other { get; set; }
public decimal? salaya_total { get; set; }
public decimal? bophitphimuk_total { get; set; }
public decimal? pohchang_total { get; set; }
public decimal? klai_kangwon_total { get; set; }
}
// public class thirteenth_data1
// {
// public string text1 { get; set; }
// public string text2 { get; set; }
// public string text3 { get; set; }
// public decimal? total_compensation { get; set; }
// public decimal? total_expenses { get; set; }
// public decimal? total_material { get; set; }
// }
public class thirteenth_data
{
public decimal? budget_total_amount { get; set; }
//public string text { get; set; }
//public decimal? total { get; set; }
//public decimal? total_expenses { get; set; }
//public decimal? total_material { get; set; }
//public string activity { get; set; }
//public decimal? budget_amount { get; set; }
public decimal? compensation { get; set; }
public decimal? expenses { get; set; }
public decimal? material { get; set; }
public string text1 { get; set; }
public string text2 { get; set; }
public string text3 { get; set; }
public decimal? total_compensation { get; set; }
public decimal? total_expenses { get; set; }
public decimal? total_material { get; set; }
public List<thirteenth_data_headers> thirteenth_data_header { get; set; }
}
public class thirteenth_data_headers
{
public string text4 { get; set; }
public decimal? budget_amount { get; set; }
public string activity { get; set; }
public List<thirteenth_data_detail> thirteenths_compensation { get; set; }
public List<thirteenth_data_detail2> thirteenths_expenses { get; set; }
public List<thirteenth_data_detail3> thirteenths_material { get; set; }
}
public class thirteenth_data_detail
{
public string header_name { get; set; }
public decimal? amount { get; set; }
public List<thirteenth_data_details> thirteenths2_compensation { get; set; }
}
public class thirteenth_data_details
{
public string name { get; set; }
public decimal? hour { get; set; }
public decimal? amount { get; set; }
public decimal? count_person { get; set; }
public decimal? total_amount { get; set; }
}
public class thirteenth_data_detail2
{
public string header_name1 { get; set; }
public decimal? amount { get; set; }
public string header_name2 { get; set; }
//public string header_name3 { get; set; }
public List<thirteenth2_data_details> thirteenths_expenses1 { get; set; }
public List<thirteenth2_data_details2> thirteenths_expenses2 { get; set; }
public List<thirteenth2_data_details3> thirteenths_expenses3 { get; set; }
}
public class thirteenth2_data_details
{
public string name { get; set; }
public decimal? amount { get; set; }
public decimal? count_person { get; set; }
public decimal? total_amount { get; set; }
}
public class thirteenth2_data_details2
{
public string name { get; set; }
public decimal? amount { get; set; }
public decimal? day { get; set; }
public decimal? count_person { get; set; }
public decimal? total_amount { get; set; }
}
public class thirteenth2_data_details3
{
public string header_name3 { get; set; }
public List<thirteenths_expenses3_detail> thirteenths_expenses3_details { get; set; }
}
public class thirteenths_expenses3_detail
{
public string name { get; set; }
public decimal? amount { get; set; }
public decimal? potion { get; set; }
public decimal? count_person { get; set; }
public decimal? total_amount { get; set; }
}
public class thirteenth_data_detail3
{
public decimal? amount { get; set; }
public List<thirteenth_data_materials> thirteenths2_material { get; set; }
}
public class thirteenth_data_materials
{
public string name { get; set; }
public string unit { get; set; }
public decimal? amount { get; set; }
public decimal? unit_price { get; set; }
public decimal? total_amount { get; set; }
}
public class fourteenths_data
{
public string side { get; set; }
}
public class seventeenths_data
{
public string action_plan { get; set; }
public string month_1 { get; set; }
public string month_2 { get; set; }
public string month_3 { get; set; }
public string month_4 { get; set; }
public string month_5 { get; set; }
public string month_6 { get; set; }
public string month_7 { get; set; }
public string month_8 { get; set; }
public string month_9 { get; set; }
public string month_10 { get; set; }
public string month_11 { get; set; }
public string month_12 { get; set; }
}
public class eighteenths_data
{
public string text1 { get; set; }
public string text2 { get; set; }
public string text3 { get; set; }
public string text4 { get; set; }
public string text5 { get; set; }
public string text6 { get; set; }
public string text7 { get; set; }
public string text8 { get; set; }
// public string text9 { get; set; }
// public string text10 { get; set; }
public string bath { get; set; }
public string nuai_nap { get; set; }
public string khrang1 { get; set; }
public string khrang2 { get; set; }
public string khrang3 { get; set; }
public string rueang { get; set; }
public string activity { get; set; }
public string clause1 { get; set; }
public string count_quantitative { get; set; }
public string count_unit { get; set; }
public string count_project { get; set; }
public string count_training { get; set; }
public string count_knowledge { get; set; }
public string clause2 { get; set; }
public string project_start_date { get; set; }
public string project_end_date { get; set; }
public string percentage_finish { get; set; }
public string clause3 { get; set; }
public string percentage1 { get; set; }
public string percentage2 { get; set; }
public string target { get; set; }
public string results { get; set; }
public string clause4 { get; set; }
public decimal? expenses { get; set; }
}
public class nineteenths_data
{
public string type_project { get; set; }
}
public class twentieths_data
{
public string target { get; set; }
public string positive { get; set; }
public string negative { get; set; }
}
public class twentys_two_data
{
public string activity { get; set; }
public string activity_display_name { get; set; }
public string dates { get; set; }
public string location { get; set; }
public List<twentys_two_data_details> twenty_two_data_detail { get; set; }
}
public class twentys_two_data_details
{
public string dates { get; set; }
public string times { get; set; }
public string detail { get; set; }
public string lecturer { get; set; }
}
}

File diff suppressed because it is too large Load Diff

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="02/21/2023 15:05:27" ReportInfo.CreatorVersion="2022.1.0.0">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="03/16/2023 11:58:33" ReportInfo.CreatorVersion="2022.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="project_principle_rationale" ReferenceName="project_principle_rationale" DataType="null" Enabled="true">
<Column Name="faculty" DataType="System.String"/>
@@ -81,6 +81,38 @@
<Column Name="bophitphimuk_officer" DataType="System.Decimal"/>
<Column Name="pohchang_officer" DataType="System.Decimal"/>
<Column Name="klai_kangwon_officer" DataType="System.Decimal"/>
<Column Name="salaya_internal_student" DataType="System.Decimal"/>
<Column Name="bophitphimuk_internal_student" DataType="System.Decimal"/>
<Column Name="pohchang_internal_student" DataType="System.Decimal"/>
<Column Name="klai_kangwon_internal_student" DataType="System.Decimal"/>
<Column Name="salaya_external_student" DataType="System.Decimal"/>
<Column Name="bophitphimuk_external_student" DataType="System.Decimal"/>
<Column Name="pohchang_external_student" DataType="System.Decimal"/>
<Column Name="klai_kangwon_external_student" DataType="System.Decimal"/>
<Column Name="salaya_person" DataType="System.Decimal"/>
<Column Name="bophitphimuk_person" DataType="System.Decimal"/>
<Column Name="pohchang_person" DataType="System.Decimal"/>
<Column Name="klai_kangwon_person" DataType="System.Decimal"/>
<Column Name="salaya_lecturer" DataType="System.Decimal"/>
<Column Name="bophitphimuk_lecturer" DataType="System.Decimal"/>
<Column Name="pohchang_lecturer" DataType="System.Decimal"/>
<Column Name="klai_kangwon_lecturer" DataType="System.Decimal"/>
<Column Name="salaya_board" DataType="System.Decimal"/>
<Column Name="bophitphimuk_board" DataType="System.Decimal"/>
<Column Name="pohchang_board" DataType="System.Decimal"/>
<Column Name="klai_kangwon_board" DataType="System.Decimal"/>
<Column Name="salaya_driver" DataType="System.Decimal"/>
<Column Name="bophitphimuk_driver" DataType="System.Decimal"/>
<Column Name="pohchang_driver" DataType="System.Decimal"/>
<Column Name="klai_kangwon_driver" DataType="System.Decimal"/>
<Column Name="salaya_other" DataType="System.Decimal"/>
<Column Name="bophitphimuk_other" DataType="System.Decimal"/>
<Column Name="pohchang_other" DataType="System.Decimal"/>
<Column Name="klai_kangwon_other" DataType="System.Decimal"/>
<Column Name="salaya_total" DataType="System.Decimal"/>
<Column Name="bophitphimuk_total" DataType="System.Decimal"/>
<Column Name="pohchang_total" DataType="System.Decimal"/>
<Column Name="klai_kangwon_total" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="seventeenth" DataType="null" Enabled="true">
@@ -276,12 +308,12 @@
<TextObject Name="Text42" Left="56.7" Top="37.8" Width="652.05" Height="28.35" Text="[project_principle_rationale.product]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text40" Width="708.75" Height="28.35" Text="[project_principle_rationale.faculty]" Font="TH Sarabun New, 16pt, style=Bold"/>
</DataBand>
<DataBand Name="Data1" Top="183.55" Width="774.9">
<DataBand Name="Data2" Top="187.55" Width="774.9" Height="28.35" DataSource="activity">
<DataBand Name="Data1" Top="184.04" Width="774.9">
<DataBand Name="Data2" Top="188.54" Width="774.9" Height="28.35" DataSource="activity">
<TextObject Name="Text48" Width="718.2" Height="28.35" Text="[project_principle_rationale.activity.activity]" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data3" Top="219.9" Width="774.9" Height="897.75" DataSource="project_principle_rationale">
<DataBand Name="Data3" Top="221.38" Width="774.9" Height="897.75" DataSource="project_principle_rationale">
<TextObject Name="Text49" Width="708.75" Height="28.35" Text="2. โครงการนี้สอดคล้องกับแผนยุทธศาสตร์ชาติ (รายละเอียดอยู่ในภาคผนวก)" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text50" Top="28.35" Width="132.3" Height="28.35" Text="แผนยุทธศาสตร์ชาติ :" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text51" Left="122.85" Top="28.35" Width="585.9" Height="28.35" Text="[project_principle_rationale.strategic_plan]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
@@ -305,11 +337,11 @@
<TextObject Name="Text70" Top="368.55" Width="708.75" Height="28.35" Text="5. ความเป็นมาหรือหลักการและเหตุผล" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text71" Top="396.9" Width="765.45" Height="463.05" Text="[project_principle_rationale.principles_reasons]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text72" Top="869.4" Width="708.75" Height="28.35" Text="6. วัตถุประสงค์" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data66" Top="1121.65" Width="774.9" Height="28.35" DataSource="sixth">
<DataBand Name="Data66" Top="1123.63" Width="774.9" Height="28.35" DataSource="sixth">
<TextObject Name="Text73" Width="765.45" Height="28.35" Text="[project_principle_rationale.sixth.objective]" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data4" Top="1154" Width="774.9" Height="141.75">
<DataBand Name="Data4" Top="1156.47" Width="774.9" Height="141.75">
<TextObject Name="Text74" Width="708.75" Height="28.35" Text="7. ความสอดคล้องกับอัตลักษณ์และเอกลักษณ์ของมหาวิทยาลัย" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text75" Left="47.25" Top="28.35" Width="75.6" Height="28.35" Text="อัตลักษณ์ :" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text76" Left="113.4" Top="28.35" Width="595.35" Height="28.35" Text="[project_principle_rationale.identity1]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
@@ -320,84 +352,84 @@
<TextObject Name="Text199" Left="47.25" Top="113.4" Width="75.6" Height="28.35" Text="คำอธิบาย :" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text200" Left="113.4" Top="113.4" Width="595.35" Height="28.35" Text="[project_principle_rationale.description2]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
<DataBand Name="Data42" Top="1299.75" Width="774.9" Height="28.35">
<DataBand Name="Data42" Top="1302.72" Width="774.9" Height="28.35">
<TextObject Name="Text83" Width="708.75" Height="28.35" Text="8. ความสอดคล้องกับยุทธศาสตร์การพัฒนามหาวิทยาลัย" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data43" Top="1332.1" Width="774.9" Height="94.5" DataSource="eighth">
<DataBand Name="Data43" Top="1335.56" Width="774.9" Height="94.5" DataSource="eighth">
<TextObject Name="Text84" Left="47.25" Width="718.2" Height="47.25" Text="[project_principle_rationale.eighth.strategic_issues]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text139" Left="47.25" Top="47.25" Width="718.2" Height="47.25" Text="[project_principle_rationale.eighth.measure]" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data6" Top="1430.6" Width="774.9" Height="28.35">
<DataBand Name="Data6" Top="1434.56" Width="774.9" Height="28.35">
<TextObject Name="Text85" Width="708.75" Height="28.35" Text="9. ความสอดคล้องกับตัวชี้วัดผลสัมฤทธิ์" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data7" Top="1462.95" Width="774.9" Height="28.35" DataSource="ninth">
<DataBand Name="Data7" Top="1467.4" Width="774.9" Height="28.35" DataSource="ninth">
<TextObject Name="Text86" Left="47.25" Width="718.2" Height="28.35" Text="[project_principle_rationale.ninth.clause]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<DataBand Name="Data12" Top="1495.3" Width="774.9" Height="28.35" DataSource="ninths">
<DataBand Name="Data12" Top="1500.24" Width="774.9" Height="28.35" DataSource="ninths">
<TextObject Name="Text87" Left="85.05" Width="859.95" Height="28.35" Text="[project_principle_rationale.ninth.ninths.detail]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data8" Top="1527.65" Width="774.9" Height="28.35">
<DataBand Name="Data8" Top="1533.09" Width="774.9" Height="28.35">
<TextObject Name="Text88" Left="47.25" Width="718.2" Height="28.35" Text="อธิบายความสอดคล้อง" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<DataBand Name="Data9" Top="1560" Width="774.9" Height="28.35">
<DataBand Name="Data9" Top="1565.93" Width="774.9" Height="28.35">
<TextObject Name="Text89" Left="85.05" Width="680.4" Height="28.35" Text="[project_principle_rationale.explain_consistency1]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data10" Top="1592.35" Width="774.9" Height="28.35">
<DataBand Name="Data10" Top="1598.78" Width="774.9" Height="28.35">
<TextObject Name="Text90" Width="708.75" Height="28.35" Text="10. ความสอดคล้องกับเป้าหมายการพัฒนาที่ยั่งยืน (Sustainable Development Goals : SDGs)" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data11" Top="1624.7" Width="774.9" Height="28.35" DataSource="tenth">
<DataBand Name="Data11" Top="1631.62" Width="774.9" Height="28.35" DataSource="tenth">
<TextObject Name="Text91" Left="47.25" Width="718.2" Height="28.35" Text="[project_principle_rationale.tenth.target]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data13" Top="1657.05" Width="774.9" Height="28.35">
<DataBand Name="Data13" Top="1664.47" Width="774.9" Height="28.35">
<TextObject Name="Text92" Left="47.25" Width="718.2" Height="28.35" Text="อธิบายความสอดคล้อง" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<DataBand Name="Data14" Top="1689.4" Width="774.9" Height="28.35">
<DataBand Name="Data14" Top="1697.31" Width="774.9" Height="28.35">
<TextObject Name="Text93" Left="85.05" Width="680.4" Height="28.35" Text="[project_principle_rationale.explain_consistency2]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data15" Top="1721.75" Width="774.9" Height="28.35">
<DataBand Name="Data15" Top="1730.15" Width="774.9" Height="28.35">
<TextObject Name="Text94" Width="708.75" Height="28.35" Text="11. ความสอดคล้องกับเป้าหมายการให้บริการกระทรวง" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data16" Top="1754.1" Width="774.9" Height="28.35">
<DataBand Name="Data16" Top="1763" Width="774.9" Height="28.35">
<TextObject Name="Text95" Left="47.25" Width="718.2" Height="28.35" Text="[project_principle_rationale.subject_eleventh]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data17" Top="1786.45" Width="774.9" Height="28.35">
<DataBand Name="Data17" Top="1795.84" Width="774.9" Height="28.35">
<TextObject Name="Text96" Width="708.75" Height="28.35" Text="12. ความสอดคล้องกับเป้าหมายการให้บริการหน่วยงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data18" Top="1818.8" Width="774.9" Height="28.35">
<DataBand Name="Data18" Top="1828.69" Width="774.9" Height="28.35">
<TextObject Name="Text97" Left="47.25" Width="718.2" Height="28.35" Text="[project_principle_rationale.subject_twelfth]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data19" Top="1851.15" Width="774.9" Height="113.4">
<DataBand Name="Data19" Top="1861.53" Width="774.9" Height="113.4">
<TextObject Name="Text98" Width="708.75" Height="28.35" Text="13. ความสอดคล้องกับยุทธศาสตร์ คณะ/หน่วยงานที่เสนอขอ" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text99" Left="47.25" Top="28.35" Width="718.2" Height="28.35" Text="ประเด็นยุทธศาสตร์ที่ [project_principle_rationale.strategic_issues_thirteenth]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text100" Left="47.25" Top="56.7" Width="718.2" Height="28.35" Text="เรื่อง [project_principle_rationale.subject_thirteenth]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text101" Left="47.25" Top="85.05" Width="718.2" Height="28.35" Text="กลยุทธ์ [project_principle_rationale.strategy_thirteenth]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
<DataBand Name="Data20" Top="1968.55" Width="774.9" Height="56.7">
<DataBand Name="Data20" Top="1979.43" Width="774.9" Height="56.7">
<TextObject Name="Text102" Width="765.45" Height="28.35" Text="14. โครงการนี้สอดคล้องกับตัวบ่งชี้การประกันคุณภาพการศึกษาภายใน (สกอ.) ข้อใด" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text103" Left="56.7" Top="28.35" Width="274.05" Height="28.35" Text="กรอบการประกันคุณภาพการศึกษาภายใน" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text104" Left="349.65" Top="28.35" Width="340.2" Height="28.35" Text="[project_principle_rationale.level]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataBand Name="Data21" Top="2029.25" Width="774.9" Height="28.35" DataSource="fourteenth">
<DataBand Name="Data21" Top="2040.62" Width="774.9" Height="28.35" DataSource="fourteenth">
<TextObject Name="Text105" Left="56.7" Width="292.95" Height="28.35" Text="[project_principle_rationale.fourteenth.component]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text106" Left="349.65" Width="415.8" Height="28.35" Text="[project_principle_rationale.fourteenth.indicator]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data22" Top="2061.6" Width="774.9" Height="28.35">
<DataBand Name="Data22" Top="2073.46" Width="774.9" Height="28.35">
<TextObject Name="Text107" Width="765.45" Height="28.35" Text="15. กิจกรรมการดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data23" Top="2093.95" Width="774.9" Height="28.35" DataSource="fifteenth">
<DataBand Name="Data23" Top="2106.31" Width="774.9" Height="28.35" DataSource="fifteenth">
<TextObject Name="Text108" Left="47.25" Width="718.2" Height="28.35" Text="[project_principle_rationale.fifteenth.activity]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data44" Top="2126.3" Width="774.9" Height="28.35" DataSource="fifteenths">
<DataBand Name="Data44" Top="2139.15" Width="774.9" Height="28.35" DataSource="fifteenths">
<TextObject Name="Text135" Left="47.25" Width="718.2" Height="28.35" Text="[project_principle_rationale.fifteenth.fifteenths.detail]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data24" Top="2158.65" Width="774.9" Height="75.6">
<DataBand Name="Data24" Top="2172" Width="774.9" Height="75.6">
<TextObject Name="Text109" Width="765.45" Height="28.35" Text="16. กลุ่มเป้าหมายผู้ร่วมโครงการทั้งสิ้น จำนวน [project_principle_rationale.count_activity] คน" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text188" Top="18.9" Width="765.45" Height="28.35" Text="[project_principle_rationale.text1]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text189" Top="47.25" Width="765.45" Height="28.35" Text="[project_principle_rationale.text2]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data31" Top="2238.25" Width="774.9" Height="28.35" DataSource="sixteenth">
<DataBand Name="Data31" Top="2252.09" Width="774.9" Height="28.35" DataSource="sixteenth">
<TextObject Name="Text136" Left="28.35" Width="718.2" Height="28.35" Text="[project_principle_rationale.sixteenth.activity]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data25" Top="2270.6" Width="774.9" Height="66.15" DataSource="sixteenths">
<DataBand Name="Data25" Top="2284.94" Width="774.9" Height="66.15" DataSource="sixteenths">
<TextObject Name="Text137" Left="28.35" Width="718.2" Height="28.35" Text="[project_principle_rationale.sixteenths.activity_table]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table1" Left="28.35" Top="37.8" Width="718.2" Height="28.35">
<TableColumn Name="Column1" Width="151.2"/>
@@ -413,7 +445,8 @@
<TableCell Name="Cell5" Border.Lines="All" Text="วังไกลกังวล" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data45" Top="2340.75" Width="774.9" Height="349.65" DataSource="sixteenths2">
<DataBand Name="Data45" Top="2355.58" Width="774.9" Height="349.65" DataSource="sixteenths2">
<TextObject Name="Text110" Left="28.35" Top="311.85" Width="718.2" Height="37.8" Text="* หมายเหตุ ทั้งนี้วิทยากร,คณะกรรมการ, พนักงานขับรถ ไม่นับรวมเป็นผู้เข้าร่วมโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableObject Name="Table2" Left="28.35" Width="718.2" Height="311.85">
<TableColumn Name="Column6" Width="151.2"/>
<TableColumn Name="Column7" Width="132.3"/>
@@ -429,86 +462,85 @@
</TableRow>
<TableRow Name="Row3" Height="28.35">
<TableCell Name="Cell11" Border.Lines="All" Text="อาจารย์" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell12" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell13" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell14" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell15" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell12" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell13" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell14" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell15" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row4" Height="28.35">
<TableCell Name="Cell16" Border.Lines="All" Text="เจ้าหน้าที่" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell17" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell18" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell19" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell20" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell17" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell18" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell19" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell20" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row5" Height="28.35">
<TableCell Name="Cell21" Border.Lines="All" Text="นักศึกษาภายใน" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell22" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell23" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell24" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell25" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell22" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell23" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell24" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell25" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row6" Height="28.35">
<TableCell Name="Cell26" Border.Lines="All" Text="นักศึกษาภายนอก" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell27" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell28" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell29" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell30" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell27" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell28" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell29" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell30" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row7" Height="28.35">
<TableCell Name="Cell31" Border.Lines="All" Text="บุคคลทั่วไป" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell32" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell33" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell34" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell35" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell32" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell33" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell34" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell35" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row8" Height="28.35">
<TableCell Name="Cell36" Border.Lines="All" Text="**วิทยากร" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell37" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell38" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell39" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell40" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell37" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell38" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell39" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell40" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row9" Height="28.35">
<TableCell Name="Cell41" Border.Lines="All" Text="**คณะกรรมการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell42" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell43" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell44" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell45" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell42" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell43" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell44" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell45" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row10" Height="28.35">
<TableCell Name="Cell46" Border.Lines="All" Text="**พนักงานขับรถ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell47" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell48" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell49" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell50" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell47" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell48" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell49" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell50" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row11" Height="28.35">
<TableCell Name="Cell51" Border.Lines="All" Text="อื่นๆ ระบุ.............." VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell52" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell53" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell54" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell55" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell52" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell53" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell54" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell55" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row12" Height="28.35">
<TableCell Name="Cell56" Border.Lines="All" Text="รวม" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell57" Border.Lines="All" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell58" Border.Lines="All" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell59" Border.Lines="All" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell60" Border.Lines="All" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell57" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell58" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell59" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell60" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TextObject Name="Text110" Left="28.35" Top="311.85" Width="718.2" Height="37.8" Text="* หมายเหตุ ทั้งนี้วิทยากร,คณะกรรมการ, พนักงานขับรถ ไม่นับรวมเป็นผู้เข้าร่วมโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data26" Top="2694.4" Width="774.9" Height="28.35">
<DataBand Name="Data26" Top="2709.73" Width="774.9" Height="28.35">
<TextObject Name="Text111" Width="765.45" Height="28.35" Text="17. สถานที่ดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data27" Top="2726.75" Width="774.9" Height="28.35" DataSource="seventeenth">
<DataBand Name="Data27" Top="2742.57" Width="774.9" Height="28.35" DataSource="seventeenth">
<TextObject Name="Text112" Left="28.35" Width="718.2" Height="28.35" Text="[project_principle_rationale.seventeenth.activity]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data28" Top="2759.1" Width="774.9" Height="28.35" DataSource="seventeenths">
<DataBand Name="Data28" Top="2775.41" Width="774.9" Height="28.35" DataSource="seventeenths">
<TextObject Name="Text138" Left="28.35" Width="718.2" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.the_time]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data29" Top="2791.45" Width="774.9" Height="28.35" DataSource="seventeenths2">
<DataBand Name="Data29" Top="2808.26" Width="774.9" Height="28.35" DataSource="seventeenths2">
<TextObject Name="Text113" Left="28.35" Width="217.35" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.seventeenths2.internal_external1]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text114" Left="245.7" Width="217.35" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.seventeenths2.area_province1]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text115" Left="463.05" Width="292.95" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.seventeenths2.location1]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
@@ -519,11 +551,11 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data30" Top="2823.8" Width="774.9" Height="28.35">
<DataBand Name="Data30" Top="2841.1" Width="774.9" Height="28.35">
<TextObject Name="Text116" Width="756" Height="28.35" Text="18. ระยะเวลาในการดำเนินงาน [project_principle_rationale.text3]" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data32" Top="2856.15" Width="774.9" Height="28.35" DataSource="eighteenth">
<DataBand Name="Data32" Top="2873.95" Width="774.9" Height="28.35" DataSource="eighteenth">
<TextObject Name="Text143" Width="765.45" Height="28.35" Text="[project_principle_rationale.eighteenth.activity]" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data33" Top="2888.5" Width="774.9" Height="85.05" DataSource="eighteenths">
<DataBand Name="Data33" Top="2906.79" Width="774.9" Height="85.05" DataSource="eighteenths">
<TextObject Name="Text118" Left="47.25" Top="28.35" Width="132.3" Height="28.35" Text="วันที่เริ่มจัดทำโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text119" Left="179.55" Top="28.35" Width="217.35" Height="28.35" Text="[project_principle_rationale.eighteenth.eighteenths.start_date]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text120" Left="47.25" Top="56.7" Width="132.3" Height="28.35" Text="วันที่เสร็จสิ้นโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
@@ -532,11 +564,11 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data48" Top="2977.55" Width="774.9" Height="28.35">
<DataBand Name="Data48" Top="2996.34" Width="774.9" Height="28.35">
<TextObject Name="Text122" Width="378" Height="28.35" Text="19. งบประมาณ" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text123" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.budget_total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data49" Top="3009.9" Width="774.9" Height="28.35" DataSource="nineteenth1">
<DataBand Name="Data49" Top="3029.18" Width="774.9" Height="28.35" DataSource="nineteenth1">
<TextObject Name="Text190" Left="47.25" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.text2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text191" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.total_compensation]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text192" Left="47.25" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.text1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH Sarabun New, 14pt, style=Bold"/>
@@ -544,14 +576,14 @@
<TextObject Name="Text194" Left="47.25" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.text3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text195" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.total_material]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data34" Top="3042.25" Width="774.9" DataSource="nineteenth">
<DataBand Name="Data67" Top="3046.25" Width="774.9" Height="37.8" DataSource="nineteenth_data_header">
<DataBand Name="Data34" Top="3062.03" Width="774.9" DataSource="nineteenth">
<DataBand Name="Data67" Top="3066.52" Width="774.9" Height="37.8" DataSource="nineteenth_data_header">
<TextObject Name="Text124" Top="18.9" Width="330.75" Height="18.9" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.text4]" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text125" Left="396.9" Top="18.9" Width="330.75" Height="18.9" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.budget_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text145" Width="774.9" Height="28.35" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.activity]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data36" Top="3167.65" Width="774.9" Height="28.35" DataSource="nineteenths_compensation">
<DataBand Name="Data36" Top="3188.91" Width="774.9" Height="28.35" DataSource="nineteenths_compensation">
<TextObject Name="Text126" Left="47.25" Width="680.4" Height="28.35" Border.Lines="Left, Right, Top" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_compensation.header_name]" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataHeaderBand Name="DataHeader1" Top="3088.05" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader1" Top="3108.81" Width="774.9" Height="75.6">
<TextObject Name="Text146" Left="47.25" Width="330.75" Height="28.35" Text="ค่าตอบแทน" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text147" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.compensation]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table3" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
@@ -575,7 +607,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data37" Top="3200" Width="774.9" Height="27.23" DataSource="nineteenths2_compensation">
<DataBand Name="Data37" Top="3221.75" Width="774.9" Height="27.23" DataSource="nineteenths2_compensation">
<TableObject Name="Table5" Left="47.25" Top="-1.12" Width="680.4" Height="28.35">
<TableColumn Name="Column17" Width="226.8"/>
<TableColumn Name="Column18" Width="103.95"/>
@@ -590,14 +622,14 @@
<TableCell Name="Cell71" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_compensation.nineteenths2_compensation.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
<DataFooterBand Name="DataFooter1" Top="3231.23" Width="774.9" Height="28.35">
<DataFooterBand Name="DataFooter1" Top="3253.48" Width="774.9" Height="28.35">
<TextObject Name="Text127" Left="47.25" Width="689.85" Height="28.35" Text="**หมายเหตุ : การบรรยายสามารถใช้วิทยากรได้เพียง 1 คนเท่านั้น" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataFooterBand>
</DataBand>
</DataBand>
<DataBand Name="Data68" Top="3343.18" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data68" Top="3366.42" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<TextObject Name="Text148" Left="47.25" Width="680.4" Height="28.35" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.header_name1]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader3" Top="3263.58" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader3" Top="3286.32" Width="774.9" Height="75.6">
<TextObject Name="Text128" Left="47.25" Width="330.75" Height="28.35" Text="ค่าใช้สอย" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text129" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.expenses]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table6" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
@@ -621,7 +653,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data38" Top="3375.53" Width="774.9" Height="28.35" DataSource="nineteenths_expenses1">
<DataBand Name="Data38" Top="3399.26" Width="774.9" Height="28.35" DataSource="nineteenths_expenses1">
<TableObject Name="Table8" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column28" Width="226.8"/>
<TableColumn Name="Column29" Width="103.95"/>
@@ -638,9 +670,9 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data39" Top="3459.13" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data39" Top="3483.85" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<TextObject Name="Text150" Left="47.25" Width="680.4" Height="28.35" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.header_name2]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader4" Top="3407.88" Width="774.9" Height="47.25">
<DataHeaderBand Name="DataHeader4" Top="3432.11" Width="774.9" Height="47.25">
<TableObject Name="Table9" Left="47.25" Width="680.4" Height="47.25">
<TableColumn Name="Column33" Width="226.8"/>
<TableColumn Name="Column34" Width="311.85"/>
@@ -662,7 +694,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data40" Top="3491.48" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
<DataBand Name="Data40" Top="3516.7" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
<TableObject Name="Table11" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column39" Width="226.8"/>
<TableColumn Name="Column40" Width="103.95"/>
@@ -679,9 +711,9 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data41" Top="3575.08" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
<DataBand Name="Data41" Top="3601.28" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
<TextObject Name="Text151" Left="47.25" Width="680.4" Height="28.35" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses3.header_name3]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader5" Top="3523.83" Width="774.9" Height="47.25">
<DataHeaderBand Name="DataHeader5" Top="3549.54" Width="774.9" Height="47.25">
<TableObject Name="Table12" Left="47.25" Width="680.4" Height="47.25">
<TableColumn Name="Column44" Width="226.8"/>
<TableColumn Name="Column45" Width="311.85"/>
@@ -703,7 +735,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data46" Top="3607.43" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3_details">
<DataBand Name="Data46" Top="3634.13" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3_details">
<TableObject Name="Table14" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column50" Width="226.8"/>
<TableColumn Name="Column51" Width="103.95"/>
@@ -720,7 +752,7 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data47" Top="3719.38" Width="774.9" Height="28.35" DataSource="nineteenths_material">
<DataBand Name="Data47" Top="3747.07" Width="774.9" Height="28.35" DataSource="nineteenths_material">
<TableObject Name="Table16" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column60" Width="198.45"/>
<TableColumn Name="Column61" Width="132.3"/>
@@ -735,7 +767,7 @@
<TableCell Name="Cell114" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_material.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader6" Top="3639.78" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader6" Top="3666.97" Width="774.9" Height="75.6">
<TextObject Name="Text133" Left="47.25" Width="444.15" Height="28.35" Text="ค่าวัสดุ / อุปกรณ์ (แสดงรายละเอียดการคำนวณให้ละเอียดชัดเจน)" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text134" Left="500.85" Width="226.8" Height="28.35" Text="[project_principle_rationale.nineteenth.material]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table15" Left="47.25" Top="28.35" Width="680.4" Height="47.25">