update ง 5

This commit is contained in:
kamonwan taengsuk
2023-02-20 12:29:38 +07:00
parent f8e4248d7f
commit 6b821f1615
3 changed files with 515 additions and 85 deletions

View File

@@ -65,34 +65,74 @@ namespace rmutr_report.Controllers
vv.count_day = na2 + vv.count_day + " วัน";
}
}
// foreach (var a in project.seventeenth)
if (project.twenty_one != null)
{
// foreach (var vv in project.twenty_one)
// {
// foreach (var aa in a.seventeenths)
// if (vv.activity != null || vv.activity!= "")
// {
// foreach (var a2 in aa.seventeenths2)
// {
// if (aa.type == "1")
// {
// a2.internal_external = "ภายในมหาวิทยาลัย";
// a2.area_province = "พื้นที่" + a2.area_province;
// a2.location = "ระบุสถานที่" + a2.location;
// vv.activity = vv.activity;
// }
// if (aa.type == "2")
// if (vv.clause1 != null || vv.clause1!= "")
// {
// a2.internal_external = "ภายนอกมหาวิทยาลัย";
// a2.area_province = "จังหวัด" + a2.area_province;
// a2.location = "ระบุสถานที่" + a2.location;
// vv.clause1 = vv.clause1;
// }
// if (aa.type == "3")
// if (vv.clause2 != null || vv.clause2!= "")
// {
// a2.internal_external = "ภายนอกมหาวิทยาลัย";
// a2.area_province = "จังหวัด" + a2.area_province;
// a2.location = "ระบุสถานที่" + a2.location;
// vv.clause2 = vv.clause2;
// }
// if (vv.clause3 != null || vv.clause3!= "")
// {
// vv.clause3 = vv.clause3;
// }
// if (vv.clause4 != null || vv.clause4!= "")
// {
// vv.clause4 = vv.clause4;
// }
// if (vv.count_unit != null || vv.count_unit != "")
// {
// string na = "ผู้เข้าร่วมโครงการ จำนวน ";
// string na2 = " หน่วยนับ";
// project.text1 = na + vv.count_unit + na2;
// }
//
// if (vv.count_project != null || vv.count_project != "")
// {
// string na = "จำนวนครั้งที่ดำเนินโครงการ ";
// string na2 = " ครั้ง";
// project.text2 = na + vv.count_project + na2;
// }
//
// if (vv.count_training != null || vv.count_training != "")
// {
// string na = "จำนวนการจัดอบรมและสัมมนา ";
// string na2 = " เรื่อง";
// project.text3 = na + vv.count_training + na2;
// }
//
// if (vv.count_knowledge != null || vv.count_knowledge != "")
// {
// string na = "จำนวนเผยแพร่ความรู้บริการวิชาการ ";
// string na2 = " ครั้ง";
// project.text4 = na + vv.count_knowledge + na2;
// }
// string na3 = "วัน/เดือน/ปี ที่จะดำเนินโครงการ ";
// string na4 = " ถึง ";
// project.text5 = na3 + vv.project_start_date + na4 + vv.project_end_date;
// string na5 = "โครงการแล้วเสร็จตามเวลาที่กำหนด (ร้อยละ) ";
// project.text6 = na5 + vv.percentage_finish;
//
// }
// }
if (project.twenty_one == null)
{
project.twenty_one = null;
}
}
var _project = new List<project_principle_rationale>() {project};
Report report = new Report();

View File

@@ -21,7 +21,7 @@ namespace rmutr_report.Models
public string target_fourth { get; set; }
public string pin_fourth { get; set; }
public string principles_reasons { get; set; } //ข้อ 5
public string objective { get; set; } //ข้อ 6
public List<sixth_data> sixth { get; set; } //ข้อ 6
public List<seventh_data> seventh { get; set; } //ข้อ 7
public List<eighth_data> eighth { get; set; } //ข้อ 8
public List<ninth_data> ninth { get; set; } //ข้อ 9
@@ -42,6 +42,14 @@ namespace rmutr_report.Models
public List<seventeenth_data> seventeenth { get; set; } //ข้อ 17
public List<eighteenth_data> eighteenth { get; set; } //ข้อ 18
public List<nineteenth_data> nineteenth { get; set; } //ข้อ 19
public decimal? budget_amount { get; set; } //ข้อ 20
public List<twentieth_data> twentieth { get; set; } //ข้อ 20
public List<twenty_one_data> twenty_one { get; set; } //ข้อ 21
public List<twenty_two_data> twenty_two { get; set; } //ข้อ 22
public List<twenty_three_data> twenty_three { get; set; } //ข้อ 23
public List<twenty_four_data> twenty_four { get; set; } //ข้อ 24
public List<twenty_fifth_data> twenty_fifth { get; set; } //ข้อ 25
}
@@ -49,6 +57,11 @@ namespace rmutr_report.Models
{
public string activity { get; set; }
}
public class sixth_data
{
public string objective{ get; set; }
}
public class seventh_data
{
public string identity { get; set; }
@@ -283,5 +296,103 @@ namespace rmutr_report.Models
public decimal? total_amount { get; set; }
}
public class twentieth_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 twenty_one_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 rueang { get; set; }
public string activity { get; set; }
public string clause1 { 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 acquired_knowledge { get; set; }
public string detail { get; set; }
public string clause4 { get; set; }
public decimal? expenses { get; set; }
}
public class twenty_two_data
{
public string list { get; set; }
}
public class twenty_three_data
{
public string list { get; set; }
}
public class twenty_four_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 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 twenty_fifth_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<twenty_fifth_data_details> twenty_fifth_data_detail { get; set; }
}
public class twenty_fifth_data_details
{
public string dates { get; set; }
public string times { get; set; }
public string detail { get; set; }
public string lecturer { get; set; }
}
}

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/17/2023 22:39:32" ReportInfo.CreatorVersion="2022.1.0.0">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="02/20/2023 12:27:46" 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"/>
@@ -20,7 +20,9 @@
<Column Name="target_fourth" DataType="System.String"/>
<Column Name="pin_fourth" DataType="System.String"/>
<Column Name="principles_reasons" DataType="System.String"/>
<BusinessObjectDataSource Name="sixth" DataType="null" Enabled="true">
<Column Name="objective" DataType="System.String"/>
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="seventh" DataType="null" Enabled="true">
<Column Name="identity" DataType="System.String"/>
<Column Name="description" DataType="System.String"/>
@@ -152,6 +154,88 @@
<Column Name="total_amount" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
<Column Name="budget_amount" DataType="System.Decimal"/>
<BusinessObjectDataSource Name="twentieth" DataType="null" Enabled="true">
<Column Name="action_plan" DataType="System.String"/>
<Column Name="month_1" DataType="System.String"/>
<Column Name="month_2" DataType="System.String"/>
<Column Name="month_3" DataType="System.String"/>
<Column Name="month_4" DataType="System.String"/>
<Column Name="month_5" DataType="System.String"/>
<Column Name="month_6" DataType="System.String"/>
<Column Name="month_7" DataType="System.String"/>
<Column Name="month_8" DataType="System.String"/>
<Column Name="month_9" DataType="System.String"/>
<Column Name="month_10" DataType="System.String"/>
<Column Name="month_11" DataType="System.String"/>
<Column Name="month_12" DataType="System.String"/>
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="twenty_one" DataType="null" Enabled="true">
<Column Name="nuai_nap" DataType="System.String"/>
<Column Name="khrang1" DataType="System.String"/>
<Column Name="khrang2" DataType="System.String"/>
<Column Name="rueang" DataType="System.String"/>
<Column Name="bath" DataType="System.String"/>
<Column Name="text1" DataType="System.String"/>
<Column Name="text2" DataType="System.String"/>
<Column Name="text3" DataType="System.String"/>
<Column Name="text4" DataType="System.String"/>
<Column Name="text5" DataType="System.String"/>
<Column Name="text6" DataType="System.String"/>
<Column Name="text7" DataType="System.String"/>
<Column Name="text8" DataType="System.String"/>
<Column Name="text9" DataType="System.String"/>
<Column Name="text10" DataType="System.String"/>
<Column Name="activity" DataType="System.String"/>
<Column Name="clause1" DataType="System.String"/>
<Column Name="count_unit" DataType="System.String"/>
<Column Name="count_project" DataType="System.String"/>
<Column Name="count_training" DataType="System.String"/>
<Column Name="count_knowledge" DataType="System.String"/>
<Column Name="clause2" DataType="System.String"/>
<Column Name="project_start_date" DataType="System.String"/>
<Column Name="project_end_date" DataType="System.String"/>
<Column Name="percentage_finish" DataType="System.String"/>
<Column Name="clause3" DataType="System.String"/>
<Column Name="percentage1" DataType="System.String"/>
<Column Name="percentage2" DataType="System.String"/>
<Column Name="acquired_knowledge" DataType="System.String"/>
<Column Name="detail" DataType="System.String"/>
<Column Name="clause4" DataType="System.String"/>
<Column Name="expenses" DataType="System.Decimal"/>
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="twenty_two" DataType="null" Enabled="true">
<Column Name="list" DataType="System.String"/>
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="twenty_three" DataType="null" Enabled="true">
<Column Name="list" DataType="System.String"/>
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="twenty_four" DataType="null" Enabled="true">
<Column Name="text1" DataType="System.String"/>
<Column Name="text2" DataType="System.String"/>
<Column Name="text3" DataType="System.String"/>
<Column Name="text4" DataType="System.String"/>
<Column Name="text5" DataType="System.String"/>
<Column Name="text6" DataType="System.String"/>
<Column Name="responsible_person" DataType="System.String"/>
<Column Name="agency" DataType="System.String"/>
<Column Name="area" DataType="System.String"/>
<Column Name="telephone_number" DataType="System.String"/>
<Column Name="mobile_number" DataType="System.String"/>
<Column Name="email" DataType="System.String"/>
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="twenty_fifth" DataType="null" Enabled="true">
<Column Name="activity" DataType="System.String"/>
<Column Name="activity_display_name" DataType="System.String"/>
<Column Name="dates" DataType="System.String"/>
<Column Name="location" DataType="System.String"/>
<BusinessObjectDataSource Name="twenty_fifth_data_detail" DataType="null" Enabled="true">
<Column Name="dates" DataType="System.String"/>
<Column Name="times" DataType="System.String"/>
<Column Name="detail" DataType="System.String"/>
<Column Name="lecturer" DataType="System.String"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</Dictionary>
<ReportPage Name="Page1" PaperWidth="225" PaperHeight="1500" Watermark.Font="Arial, 60pt">
@@ -170,7 +254,7 @@
<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="220.4" Width="774.9" Height="1115.1" DataSource="project_principle_rationale">
<DataBand Name="Data3" Top="220.4" Width="774.9" Height="888.3" 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"/>
@@ -194,93 +278,95 @@
<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="453.6" Text="[project_principle_rationale.principles_reasons]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text72" Top="859.95" Width="708.75" Height="28.35" Text="6. วัตถุประสงค์" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text73" Top="888.3" Width="765.45" Height="226.8" Text="[project_principle_rationale.objective]" Font="TH Sarabun New, 14pt"/>
<DataBand Name="Data66" Top="1112.87" 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 Name="Data4" Top="1339.67" Width="774.9" Height="28.35">
</DataBand>
<DataBand Name="Data4" Top="1145.38" Width="774.9" Height="28.35">
<TextObject Name="Text74" Width="708.75" Height="28.35" Text="7. ความสอดคล้องกับอัตลักษณ์และเอกลักษณ์ของมหาวิทยาลัย" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data5" Top="1372.18" Width="774.9" Height="56.7" DataSource="seventh">
<DataBand Name="Data5" Top="1177.9" Width="774.9" Height="56.7" DataSource="seventh">
<TextObject Name="Text77" Left="47.25" Top="28.35" Width="75.6" Height="28.35" Text="คำอธิบาย :" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text78" Left="113.4" Top="28.35" Width="595.35" Height="28.35" Text="[project_principle_rationale.seventh.description]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text75" Left="47.25" Width="75.6" Height="28.35" Text="อัตลักษณ์ :" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text76" Left="113.4" Width="595.35" Height="28.35" Text="[project_principle_rationale.seventh.identity]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data42" Top="1433.05" Width="774.9" Height="28.35">
<DataBand Name="Data42" Top="1238.77" 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="1465.57" Width="774.9" Height="94.5" DataSource="eighth">
<DataBand Name="Data43" Top="1271.28" 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="1564.23" Width="774.9" Height="28.35">
<DataBand Name="Data6" Top="1369.95" 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="1596.75" Width="774.9" Height="28.35" DataSource="ninth">
<DataBand Name="Data7" Top="1402.47" 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="1629.27" Width="774.9" Height="28.35" DataSource="ninths">
<DataBand Name="Data12" Top="1434.98" Width="774.9" Height="28.35" DataSource="ninths">
<TextObject Name="Text87" Left="85.05" Width="680.4" Height="28.35" Text="[project_principle_rationale.ninth.ninths.detail]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data8" Top="1661.78" Width="774.9" Height="28.35">
<DataBand Name="Data8" Top="1467.5" 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="1694.3" Width="774.9" Height="28.35">
<DataBand Name="Data9" Top="1500.02" 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="1726.82" Width="774.9" Height="28.35">
<DataBand Name="Data10" Top="1532.53" 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="1759.33" Width="774.9" Height="28.35" DataSource="tenth">
<DataBand Name="Data11" Top="1565.05" 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="1791.85" Width="774.9" Height="28.35">
<DataBand Name="Data13" Top="1597.57" 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="1824.37" Width="774.9" Height="28.35">
<DataBand Name="Data14" Top="1630.08" 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="1856.88" Width="774.9" Height="28.35">
<DataBand Name="Data15" Top="1662.6" 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="1889.4" Width="774.9" Height="28.35">
<DataBand Name="Data16" Top="1695.12" 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="1921.92" Width="774.9" Height="28.35">
<DataBand Name="Data17" Top="1727.63" 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="1954.43" Width="774.9" Height="28.35">
<DataBand Name="Data18" Top="1760.15" 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="1986.95" Width="774.9" Height="113.4">
<DataBand Name="Data19" Top="1792.67" 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="2104.52" Width="774.9" Height="56.7">
<DataBand Name="Data20" Top="1910.23" 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="236.25" Height="28.35" Text="กรอบการประกันคุณภาพการศึกษาภายใน" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text104" Left="292.95" 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="2165.38" Width="774.9" Height="28.35" DataSource="fourteenth">
<DataBand Name="Data21" Top="1971.1" Width="774.9" Height="28.35" DataSource="fourteenth">
<TextObject Name="Text105" Left="56.7" Width="236.25" Height="28.35" Text="[project_principle_rationale.fourteenth.component]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text106" Left="292.95" Width="472.5" Height="28.35" Text="[project_principle_rationale.fourteenth.indicator]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data22" Top="2197.9" Width="774.9" Height="28.35">
<DataBand Name="Data22" Top="2003.62" 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="2230.42" Width="774.9" Height="28.35" DataSource="fifteenth">
<DataBand Name="Data23" Top="2036.13" 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="2262.93" Width="774.9" Height="37.8" DataSource="fifteenths">
<DataBand Name="Data44" Top="2068.65" Width="774.9" Height="37.8" 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="2304.9" Width="774.9" Height="28.35">
<DataBand Name="Data24" Top="2110.62" Width="774.9" Height="28.35">
<TextObject Name="Text109" Width="765.45" Height="28.35" Text="16. กลุ่มเป้าหมายผู้ร่วมโครงการทั้งสิ้น จำนวน [project_principle_rationale.count_activity] คน" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data31" Top="2337.42" Width="774.9" Height="37.8" DataSource="sixteenth">
<DataBand Name="Data31" Top="2143.13" Width="774.9" Height="37.8" 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="2379.38" Width="774.9" Height="66.15" DataSource="sixteenths">
<DataBand Name="Data25" Top="2185.1" 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"/>
@@ -296,7 +382,7 @@
<TableCell Name="Cell5" Border.Lines="All" Text="วังไกลกังวล" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data45" Top="2449.7" Width="774.9" Height="349.65" DataSource="sixteenths2">
<DataBand Name="Data45" Top="2255.42" Width="774.9" Height="349.65" DataSource="sixteenths2">
<TableObject Name="Table2" Left="28.35" Width="718.2" Height="311.85">
<TableColumn Name="Column6" Width="151.2"/>
<TableColumn Name="Column7" Width="132.3"/>
@@ -385,13 +471,13 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data26" Top="2803.52" Width="774.9" Height="28.35">
<DataBand Name="Data26" Top="2609.23" 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="2836.03" Width="774.9" Height="28.35" DataSource="seventeenth">
<DataBand Name="Data27" Top="2641.75" 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="2868.55" Width="774.9" Height="28.35" DataSource="seventeenths">
<DataBand Name="Data28" Top="2674.27" 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="2901.07" Width="774.9" Height="28.35" DataSource="seventeenths2">
<DataBand Name="Data29" Top="2706.78" 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"/>
@@ -402,11 +488,11 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data30" Top="2933.58" Width="774.9" Height="28.35">
<DataBand Name="Data30" Top="2739.3" Width="774.9" Height="28.35">
<TextObject Name="Text116" Width="765.45" Height="28.35" Text="18. ระยะเวลาในการดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data32" Top="2966.1" Width="774.9" Height="28.35" DataSource="eighteenth">
<DataBand Name="Data32" Top="2771.82" Width="774.9" Height="28.35" DataSource="eighteenth">
<TextObject Name="Text143" Width="718.2" Height="28.35" Text="[project_principle_rationale.eighteenth.activity]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data33" Top="2998.62" Width="774.9" Height="85.05" DataSource="eighteenths">
<DataBand Name="Data33" Top="2804.33" 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"/>
@@ -415,7 +501,7 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data34" Top="3087.83" Width="774.9" Height="160.65" DataSource="nineteenth">
<DataBand Name="Data34" Top="2893.55" Width="774.9" Height="160.65" DataSource="nineteenth">
<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"/>
<TextObject Name="Text124" Top="56.7" Width="330.75" Height="28.35" Text="งบประมาณ" Font="TH Sarabun New, 14pt, style=Bold"/>
@@ -443,9 +529,9 @@
<TableCell Name="Cell66" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data36" Top="3252.65" Width="774.9" Height="28.35" DataSource="nineteenths_compensation">
<TextObject Name="Text126" Left="47.25" Width="680.4" Height="28.35" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_compensation.header_name]" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data37" Top="3285.17" Width="774.9" Height="27.23" DataSource="nineteenths2_compensation">
<DataBand Name="Data36" Top="3058.37" 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.nineteenths_compensation.header_name]" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data37" Top="3090.88" 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"/>
@@ -460,12 +546,12 @@
<TableCell Name="Cell71" Border.Lines="All" Text="[project_principle_rationale.nineteenth.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="3316.56" Width="774.9" Height="28.35">
<DataFooterBand Name="DataFooter1" Top="3122.28" 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="Data38" Top="3349.08" Width="774.9" Height="75.6" DataSource="nineteenth">
<DataBand Name="Data38" Top="3154.8" Width="774.9" Height="75.6" DataSource="nineteenth">
<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">
@@ -488,9 +574,9 @@
<TableCell Name="Cell77" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data39" Top="3428.85" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data39" Top="3234.56" 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.nineteenths_expenses.header_name1]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataBand Name="Data40" Top="3461.36" Width="774.9" Height="28.35" DataSource="nineteenths_expenses1">
<DataBand Name="Data40" Top="3267.08" 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"/>
@@ -508,7 +594,7 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data41" Top="3493.88" Width="774.9" Height="47.25" DataSource="nineteenth">
<DataBand Name="Data41" Top="3299.6" Width="774.9" Height="47.25" DataSource="nineteenth">
<TableObject Name="Table9" Left="47.25" Width="680.4" Height="47.25">
<TableColumn Name="Column33" Width="226.8"/>
<TableColumn Name="Column34" Width="311.85"/>
@@ -529,9 +615,9 @@
<TableCell Name="Cell88" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data46" Top="3545.3" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data46" Top="3351.01" 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.nineteenths_expenses.header_name2]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataBand Name="Data47" Top="3577.81" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
<DataBand Name="Data47" Top="3383.53" 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"/>
@@ -549,7 +635,7 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data48" Top="3610.33" Width="774.9" Height="47.25" DataSource="nineteenths_expenses3">
<DataBand Name="Data48" Top="3416.05" Width="774.9" Height="47.25" DataSource="nineteenths_expenses3">
<TableObject Name="Table12" Left="47.25" Width="680.4" Height="47.25">
<TableColumn Name="Column44" Width="226.8"/>
<TableColumn Name="Column45" Width="311.85"/>
@@ -570,9 +656,9 @@
<TableCell Name="Cell99" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data49" Top="3661.75" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
<DataBand Name="Data49" Top="3467.46" 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.nineteenths_expenses.nineteenths_expenses3.header_name3]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataBand Name="Data50" Top="3694.26" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3_details">
<DataBand Name="Data50" Top="3499.98" 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"/>
@@ -590,7 +676,7 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data51" Top="3726.78" Width="774.9" Height="85.05" DataSource="nineteenth">
<DataBand Name="Data51" Top="3532.5" Width="774.9" Height="85.05" DataSource="nineteenth">
<TableObject Name="Table15" Left="47.25" Top="37.8" Width="680.4" Height="47.25">
<TableColumn Name="Column55" Width="198.45"/>
<TableColumn Name="Column56" Width="132.3"/>
@@ -607,7 +693,7 @@
</TableObject>
<TextObject Name="Text133" Left="47.25" Top="9.45" Width="444.15" Height="28.35" Text="ค่าวัสดุ / อุปกรณ์ (แสดงรายละเอียดการคำนวณให้ละเอียดชัดเจน)" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text134" Left="500.85" Top="9.45" 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"/>
<DataBand Name="Data52" Top="3816" Width="774.9" Height="28.35" DataSource="nineteenths_material">
<DataBand Name="Data52" Top="3621.71" 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"/>
@@ -626,4 +712,197 @@
</DataBand>
</DataBand>
</ReportPage>
<ReportPage Name="Page2" PaperWidth="225" PaperHeight="347" Watermark.Font="Arial, 60pt">
<DataBand Name="Data53" Width="774.9" Height="113.4">
<TextObject Name="Text152" Top="9.45" Width="774.9" Height="28.35" Text="20. แผนการดำเนินงานและการใช้จ่ายงบประมาณ (ระบุจำนวนเงินงบประมาณ)" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text153" Left="368.55" Top="37.8" Width="406.35" Height="28.35" Text="หน่วย : [project_principle_rationale.budget_amount] ล้านบาท" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table17" Top="66.15" Width="774.9" Height="47.25">
<TableColumn Name="Column65" Width="321.3"/>
<TableColumn Name="Column66" Width="37.8"/>
<TableColumn Name="Column67" Width="37.8"/>
<TableColumn Name="Column68" Width="37.8"/>
<TableColumn Name="Column69" Width="37.8"/>
<TableColumn Name="Column70" Width="37.8"/>
<TableColumn Name="Column71" Width="37.8"/>
<TableColumn Name="Column72" Width="37.8"/>
<TableColumn Name="Column73" Width="37.8"/>
<TableColumn Name="Column74" Width="37.8"/>
<TableColumn Name="Column75" Width="37.8"/>
<TableColumn Name="Column76" Width="37.8"/>
<TableColumn Name="Column77" Width="37.8"/>
<TableRow Name="Row27" Height="47.25">
<TableCell Name="Cell115" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold">
<TextObject Name="Text154" Width="321.3" Height="18.9" Text="รายการกิจกรรม" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text155" Top="28.35" Width="264.6" Height="18.9" Text="แผนการดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell116" Border.Lines="All" Text="ต.ค." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell117" Border.Lines="All" Text="พ.ย." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell118" Border.Lines="All" Text="ธ.ค." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell119" Border.Lines="All" Text="ม.ค." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell120" Border.Lines="All" Text="ก.พ." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell121" Border.Lines="All" Text="มี.ค." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell122" Border.Lines="All" Text="เม.ย." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell123" Border.Lines="All" Text="พ.ค." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell124" Border.Lines="All" Text="มิ.ย." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell125" Border.Lines="All" Text="ก.ค." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell126" Border.Lines="All" Text="ส.ค." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell127" Border.Lines="All" Text="ก.ย." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data54" Top="117.57" Width="774.9" Height="28.35" DataSource="twentieth">
<TableObject Name="Table18" Width="774.9" Height="28.35">
<TableColumn Name="Column78" Width="321.3"/>
<TableColumn Name="Column79" Width="37.8"/>
<TableColumn Name="Column80" Width="37.8"/>
<TableColumn Name="Column81" Width="37.8"/>
<TableColumn Name="Column82" Width="37.8"/>
<TableColumn Name="Column83" Width="37.8"/>
<TableColumn Name="Column84" Width="37.8"/>
<TableColumn Name="Column85" Width="37.8"/>
<TableColumn Name="Column86" Width="37.8"/>
<TableColumn Name="Column87" Width="37.8"/>
<TableColumn Name="Column88" Width="37.8"/>
<TableColumn Name="Column89" Width="37.8"/>
<TableColumn Name="Column90" Width="37.8"/>
<TableRow Name="Row28" Height="28.35">
<TableCell Name="Cell128" Border.Lines="All" Text="[project_principle_rationale.twentieth.action_plan]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell129" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell130" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell131" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell132" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell133" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell134" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell135" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell136" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_8]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell137" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_9]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell138" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_10]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell139" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_11]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell140" Border.Lines="All" Text="[project_principle_rationale.twentieth.month_12]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data55" Top="150.08" Width="774.9" Height="28.35">
<TextObject Name="Text156" Width="718.2" Height="28.35" Text="21. ตัวชี้วัดเป้าหมายผลผลิต (เปลี่ยนแปลงไปตามประเภทโครงการในแต่ละผลผลิต)" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data56" Top="182.6" Width="774.9" Height="28.35" DataSource="twenty_one">
<TextObject Name="Text157" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one.activity]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text158" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one.text1] [project_principle_rationale.twenty_one.count_unit] [project_principle_rationale.twenty_one.nuai_nap]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text159" Left="47.25" Width="642.6" Height="28.35" Text="[project_principle_rationale.twenty_one.text2] [project_principle_rationale.twenty_one.count_project] [project_principle_rationale.twenty_one.khrang1]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text160" Left="47.25" Width="642.6" Height="28.35" Text="[project_principle_rationale.twenty_one.text3] [project_principle_rationale.twenty_one.count_training] [project_principle_rationale.twenty_one.rueang]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text161" Left="47.25" Width="642.6" Height="28.35" Text="[project_principle_rationale.twenty_one.text4] [project_principle_rationale.twenty_one.count_knowledge] [project_principle_rationale.twenty_one.khrang2]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text162" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one.clause2]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text164" Left="47.25" Width="718.2" Height="28.35" Text="[project_principle_rationale.twenty_one.text5] [project_principle_rationale.twenty_one.project_start_date] [project_principle_rationale.twenty_one.project_end_date]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text165" Left="47.25" Width="652.05" Height="28.35" Text="[project_principle_rationale.twenty_one.text6] [project_principle_rationale.twenty_one.percentage_finish]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text171" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one.clause3]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text172" Left="47.25" Width="652.05" Height="28.35" Text="[project_principle_rationale.twenty_one.text7] [project_principle_rationale.twenty_one.percentage1]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text173" Left="47.25" Width="652.05" Height="28.35" Text="[project_principle_rationale.twenty_one.text8] [project_principle_rationale.twenty_one.percentage2]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text174" Left="47.25" Width="652.05" Height="28.35" Text="[project_principle_rationale.twenty_one.text9]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text175" Left="47.25" Width="652.05" Height="28.35" Text="[project_principle_rationale.twenty_one.acquired_knowledge]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text176" Left="47.25" Width="718.2" Height="28.35" Text="[project_principle_rationale.twenty_one.text10] [project_principle_rationale.twenty_one.detail]" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text177" Width="765.45" Height="28.35" Text="[project_principle_rationale.twenty_one.clause4] [project_principle_rationale.twenty_one.expenses] [project_principle_rationale.twenty_one.bath]" Font="TH Sarabun New, 14pt">
<Formats>
<NumberFormat/>
<GeneralFormat/>
</Formats>
</TextObject>
<TextObject Name="Text163" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one.clause1]" Font="TH Sarabun New, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data60" Top="215.12" Width="774.9" Height="28.35">
<TextObject Name="Text178" Width="774.9" Height="28.35" Text="22. ผลที่คาดว่าจะได้รับ" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data61" Top="247.63" Width="774.9" Height="28.35" DataSource="twenty_two">
<TextObject Name="Text179" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_two.list]" Font="TH Sarabun New, 14pt">
<Formats>
<NumberFormat/>
<GeneralFormat/>
</Formats>
</TextObject>
</DataBand>
</DataBand>
<DataBand Name="Data62" Top="280.15" Width="774.9" Height="28.35">
<TextObject Name="Text180" Width="774.9" Height="28.35" Text="23. การติดตามประเมินผล" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data63" Top="312.67" Width="774.9" Height="28.35" DataSource="twenty_three">
<TextObject Name="Text181" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_three.list]" Font="TH Sarabun New, 14pt">
<Formats>
<NumberFormat/>
<GeneralFormat/>
</Formats>
</TextObject>
</DataBand>
</DataBand>
<DataBand Name="Data64" Top="345.18" Width="774.9" Height="28.35">
<TextObject Name="Text182" Width="774.9" Height="28.35" Text="24. ผู้รับผิดชอบโครงการ" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data65" Top="377.7" Width="774.9" Height="28.35" DataSource="twenty_four">
<TextObject Name="Text183" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text1] [project_principle_rationale.twenty_four.responsible_person]" Font="TH Sarabun New, 14pt">
<Formats>
<NumberFormat/>
<GeneralFormat/>
</Formats>
</TextObject>
<TextObject Name="Text184" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text2] [project_principle_rationale.twenty_four.agency] [project_principle_rationale.twenty_four.text3] [project_principle_rationale.twenty_four.area]" Font="TH Sarabun New, 14pt">
<Formats>
<NumberFormat/>
<GeneralFormat/>
</Formats>
</TextObject>
<TextObject Name="Text185" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text4] [project_principle_rationale.twenty_four.telephone_number]" Font="TH Sarabun New, 14pt">
<Formats>
<NumberFormat/>
<GeneralFormat/>
</Formats>
</TextObject>
<TextObject Name="Text187" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text6] [project_principle_rationale.twenty_four.email]" Font="TH Sarabun New, 14pt">
<Formats>
<NumberFormat/>
<GeneralFormat/>
</Formats>
</TextObject>
<TextObject Name="Text186" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text5] [project_principle_rationale.twenty_four.mobile_number]" Font="TH Sarabun New, 14pt">
<Formats>
<NumberFormat/>
<GeneralFormat/>
</Formats>
</TextObject>
</DataBand>
</DataBand>
</ReportPage>
<ReportPage Name="Page3" PaperWidth="225" Watermark.Font="Arial, 60pt">
<DataBand Name="Data57" Width="774.9" Height="37.8">
<TextObject Name="Text166" Width="774.9" Height="37.8" Text="25. ตารางกำหนดการดำเนินโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data58" Top="41.97" Width="774.9" Height="141.75" DataSource="twenty_fifth">
<TextObject Name="Text167" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_fifth.activity_display_name]" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text168" Top="28.35" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_fifth.activity]" HorzAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text169" Top="56.7" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_fifth.dates]" HorzAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text170" Top="85.05" Width="774.9" Height="47.25" Text="[project_principle_rationale.twenty_fifth.location]" HorzAlign="Center" Font="TH Sarabun New, 14pt"/>
<DataBand Name="Data59" Top="229.85" Width="774.9" Height="47.25" DataSource="twenty_fifth_data_detail">
<TableObject Name="Table20" Width="774.9" Height="37.8">
<TableColumn Name="Column95" Width="132.3"/>
<TableColumn Name="Column96" Width="189"/>
<TableColumn Name="Column97" Width="274.05"/>
<TableColumn Name="Column98" Width="179.55"/>
<TableRow Name="Row30" Height="37.8">
<TableCell Name="Cell145" Border.Lines="All" Text="[project_principle_rationale.twenty_fifth.twenty_fifth_data_detail.dates]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 13pt"/>
<TableCell Name="Cell146" Border.Lines="All" Text="[project_principle_rationale.twenty_fifth.twenty_fifth_data_detail.times]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 13pt"/>
<TableCell Name="Cell147" Border.Lines="All" Text="[project_principle_rationale.twenty_fifth.twenty_fifth_data_detail.detail]" VertAlign="Center" Font="TH Sarabun New, 13pt"/>
<TableCell Name="Cell148" Border.Lines="All" Text="[project_principle_rationale.twenty_fifth.twenty_fifth_data_detail.lecturer]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 13pt"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader2" Top="187.88" Width="774.9" Height="37.8">
<TableObject Name="Table19" Width="774.9" Height="37.8">
<TableColumn Name="Column91" Width="132.3"/>
<TableColumn Name="Column92" Width="189"/>
<TableColumn Name="Column93" Width="274.05"/>
<TableColumn Name="Column94" Width="179.55"/>
<TableRow Name="Row29" Height="37.8">
<TableCell Name="Cell141" Border.Lines="All" Text="วัน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell142" Border.Lines="All" Text="เวลา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell143" Border.Lines="All" Text="รายละเอียด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell144" Border.Lines="All" Text="วิทยากร" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
</DataHeaderBand>
</DataBand>
</DataBand>
</DataBand>
</ReportPage>
</Report>