bug fixed
This commit is contained in:
@@ -43,7 +43,7 @@ namespace rmutr_report.Controllers
|
|||||||
{
|
{
|
||||||
string na = "ประเด็นยุทธศาสตร์ที่ " ;
|
string na = "ประเด็นยุทธศาสตร์ที่ " ;
|
||||||
v.strategic_issues = na + v.strategic_issues;
|
v.strategic_issues = na + v.strategic_issues;
|
||||||
string na2 = "มาตรการที่ " ;
|
string na2 = "กลยุทธ์ที่ " ;
|
||||||
v.measure = na2 + v.measure;
|
v.measure = na2 + v.measure;
|
||||||
}
|
}
|
||||||
foreach (var v in project.fourteenth)
|
foreach (var v in project.fourteenth)
|
||||||
|
|||||||
@@ -37,11 +37,15 @@ namespace rmutr_report.Models
|
|||||||
public List<fourteenth_data> fourteenth { get; set; } //ข้อ 14
|
public List<fourteenth_data> fourteenth { get; set; } //ข้อ 14
|
||||||
public List<fifteenth_data> fifteenth { get; set; } //ข้อ 15
|
public List<fifteenth_data> fifteenth { get; set; } //ข้อ 15
|
||||||
public int? count_activity { get; set; } //ข้อ 16
|
public int? count_activity { get; set; } //ข้อ 16
|
||||||
|
public int? total_target { get; set; } //ข้อ 16 ผลรวมกลุ่มเป้าหมาย
|
||||||
|
public int? total_board { get; set; } //ข้อ 16 ผลรวมคณะกรรมการ
|
||||||
public List<sixteenth_data> sixteenth { get; set; } //ข้อ 16
|
public List<sixteenth_data> sixteenth { get; set; } //ข้อ 16
|
||||||
public List<sixteenth_data_detail> sixteenths { get; set; } //ข้อ 16 detail ตาราง
|
public List<sixteenth_data_detail> sixteenths { get; set; } //ข้อ 16 detail ตาราง
|
||||||
public List<seventeenth_data> seventeenth { get; set; } //ข้อ 17
|
public List<seventeenth_data> seventeenth { get; set; } //ข้อ 17
|
||||||
|
public int? count_day { get; set; } //ข้อ 18
|
||||||
public List<eighteenth_data> eighteenth { get; set; } //ข้อ 18
|
public List<eighteenth_data> eighteenth { get; set; } //ข้อ 18
|
||||||
public List<nineteenth_data> nineteenth { get; set; } //ข้อ 19
|
public List<nineteenth_data> nineteenth { get; set; } //ข้อ 19
|
||||||
|
public List<nineteenth_data1> nineteenth1 { get; set; } //ข้อ 19
|
||||||
public decimal? budget_amount { get; set; } //ข้อ 20
|
public decimal? budget_amount { get; set; } //ข้อ 20
|
||||||
public List<twentieth_data> twentieth { get; set; } //ข้อ 20
|
public List<twentieth_data> twentieth { get; set; } //ข้อ 20
|
||||||
public List<twenty_one_data> twenty_one { get; set; } //ข้อ 21
|
public List<twenty_one_data> twenty_one { get; set; } //ข้อ 21
|
||||||
@@ -214,14 +218,47 @@ namespace rmutr_report.Models
|
|||||||
public string end_date { get; set; }
|
public string end_date { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class nineteenth_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 nineteenth_data
|
public class nineteenth_data
|
||||||
{
|
{
|
||||||
public string activity { get; set; }
|
|
||||||
public decimal? budget_total_amount { get; set; }
|
public decimal? budget_total_amount { get; set; }
|
||||||
public decimal? budget_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? compensation { get; set; }
|
||||||
public decimal? expenses { get; set; }
|
public decimal? expenses { get; set; }
|
||||||
public decimal? material { 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<nineteenth_data_headers> nineteenth_data_header { get; set; }
|
||||||
|
|
||||||
|
// public List<nineteenth_data_detail> nineteenths_compensation { get; set; }
|
||||||
|
// public List<nineteenth_data_detail2> nineteenths_expenses { get; set; }
|
||||||
|
// public List<nineteenth_data_detail3> nineteenths_material { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class nineteenth_data_headers
|
||||||
|
{
|
||||||
|
public string text4 { get; set; }
|
||||||
|
public decimal? budget_amount { get; set; }
|
||||||
|
public string activity { get; set; }
|
||||||
public List<nineteenth_data_detail> nineteenths_compensation { get; set; }
|
public List<nineteenth_data_detail> nineteenths_compensation { get; set; }
|
||||||
public List<nineteenth_data_detail2> nineteenths_expenses { get; set; }
|
public List<nineteenth_data_detail2> nineteenths_expenses { get; set; }
|
||||||
public List<nineteenth_data_detail3> nineteenths_material { get; set; }
|
public List<nineteenth_data_detail3> nineteenths_material { get; set; }
|
||||||
@@ -329,9 +366,11 @@ namespace rmutr_report.Models
|
|||||||
public string nuai_nap { get; set; }
|
public string nuai_nap { get; set; }
|
||||||
public string khrang1 { get; set; }
|
public string khrang1 { get; set; }
|
||||||
public string khrang2 { get; set; }
|
public string khrang2 { get; set; }
|
||||||
|
public string khrang3 { get; set; }
|
||||||
public string rueang { get; set; }
|
public string rueang { get; set; }
|
||||||
public string activity { get; set; }
|
public string activity { get; set; }
|
||||||
public string clause1 { get; set; }
|
public string clause1 { get; set; }
|
||||||
|
public string count_quantitative { get; set; }
|
||||||
public string count_unit { get; set; }
|
public string count_unit { get; set; }
|
||||||
public string count_project { get; set; }
|
public string count_project { get; set; }
|
||||||
public string count_training { get; set; }
|
public string count_training { get; set; }
|
||||||
@@ -344,7 +383,8 @@ namespace rmutr_report.Models
|
|||||||
public string percentage1 { get; set; }
|
public string percentage1 { get; set; }
|
||||||
public string percentage2 { get; set; }
|
public string percentage2 { get; set; }
|
||||||
public string acquired_knowledge { get; set; }
|
public string acquired_knowledge { get; set; }
|
||||||
public string detail { get; set; }
|
public string detail1 { get; set; }
|
||||||
|
public string detail2 { get; set; }
|
||||||
public string clause4 { get; set; }
|
public string clause4 { get; set; }
|
||||||
public decimal? expenses { get; set; }
|
public decimal? expenses { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="02/20/2023 12:27:46" ReportInfo.CreatorVersion="2022.1.0.0">
|
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="02/20/2023 19:25:55" ReportInfo.CreatorVersion="2022.1.0.0">
|
||||||
<Dictionary>
|
<Dictionary>
|
||||||
<BusinessObjectDataSource Name="project_principle_rationale" ReferenceName="project_principle_rationale" DataType="null" Enabled="true">
|
<BusinessObjectDataSource Name="project_principle_rationale" ReferenceName="project_principle_rationale" DataType="null" Enabled="true">
|
||||||
<Column Name="faculty" DataType="System.String"/>
|
<Column Name="faculty" DataType="System.String"/>
|
||||||
@@ -58,7 +58,9 @@
|
|||||||
<Column Name="detail" DataType="System.String"/>
|
<Column Name="detail" DataType="System.String"/>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
<Column Name="count_activity" DataType="System.String"/>
|
<Column Name="count_activity" DataType="System.Int32"/>
|
||||||
|
<Column Name="total_target" DataType="System.Int32"/>
|
||||||
|
<Column Name="total_board" DataType="System.Int32"/>
|
||||||
<BusinessObjectDataSource Name="sixteenth" DataType="null" Enabled="true">
|
<BusinessObjectDataSource Name="sixteenth" DataType="null" Enabled="true">
|
||||||
<Column Name="activity" DataType="System.String"/>
|
<Column Name="activity" DataType="System.String"/>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
@@ -93,6 +95,7 @@
|
|||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
|
<Column Name="count_day" DataType="System.Int32"/>
|
||||||
<BusinessObjectDataSource Name="eighteenth" DataType="null" Enabled="true">
|
<BusinessObjectDataSource Name="eighteenth" DataType="null" Enabled="true">
|
||||||
<Column Name="activity" DataType="System.String"/>
|
<Column Name="activity" DataType="System.String"/>
|
||||||
<BusinessObjectDataSource Name="eighteenths" DataType="null" Enabled="true">
|
<BusinessObjectDataSource Name="eighteenths" DataType="null" Enabled="true">
|
||||||
@@ -103,56 +106,74 @@
|
|||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
<BusinessObjectDataSource Name="nineteenth" DataType="null" Enabled="true">
|
<BusinessObjectDataSource Name="nineteenth" DataType="null" Enabled="true">
|
||||||
<Column Name="activity" DataType="System.String"/>
|
|
||||||
<Column Name="budget_total_amount" DataType="System.Decimal"/>
|
<Column Name="budget_total_amount" DataType="System.Decimal"/>
|
||||||
<Column Name="budget_amount" DataType="System.Decimal"/>
|
|
||||||
<Column Name="compensation" DataType="System.Decimal"/>
|
<Column Name="compensation" DataType="System.Decimal"/>
|
||||||
<Column Name="expenses" DataType="System.Decimal"/>
|
<Column Name="expenses" DataType="System.Decimal"/>
|
||||||
<Column Name="material" DataType="System.Decimal"/>
|
<Column Name="material" DataType="System.Decimal"/>
|
||||||
<BusinessObjectDataSource Name="nineteenths_compensation" DataType="null" Enabled="true">
|
<Column Name="budget_amount" DataType="System.Decimal"/>
|
||||||
<Column Name="header_name" DataType="System.String"/>
|
<Column Name="text1" DataType="System.String"/>
|
||||||
<BusinessObjectDataSource Name="nineteenths2_compensation" DataType="null" Enabled="true">
|
<Column Name="text2" DataType="System.String"/>
|
||||||
<Column Name="name" DataType="System.String"/>
|
<Column Name="text3" DataType="System.String"/>
|
||||||
<Column Name="hour" DataType="System.Decimal"/>
|
<Column Name="total_compensation" DataType="System.Decimal"/>
|
||||||
<Column Name="amount" DataType="System.Decimal"/>
|
<Column Name="total_expenses" DataType="System.Decimal"/>
|
||||||
<Column Name="count_person" DataType="System.Decimal"/>
|
<Column Name="total_material" DataType="System.Decimal"/>
|
||||||
<Column Name="total_amount" DataType="System.Decimal"/>
|
<BusinessObjectDataSource Name="nineteenth_data_header" DataType="null" Enabled="true">
|
||||||
</BusinessObjectDataSource>
|
<Column Name="activity" DataType="System.String"/>
|
||||||
</BusinessObjectDataSource>
|
<Column Name="text4" DataType="System.String"/>
|
||||||
<BusinessObjectDataSource Name="nineteenths_expenses" DataType="null" Enabled="true">
|
<Column Name="budget_amount" DataType="System.Decimal"/>
|
||||||
<Column Name="header_name1" DataType="System.String"/>
|
<BusinessObjectDataSource Name="nineteenths_compensation" DataType="null" Enabled="true">
|
||||||
<Column Name="header_name2" DataType="System.String"/>
|
<Column Name="header_name" DataType="System.String"/>
|
||||||
<BusinessObjectDataSource Name="nineteenths_expenses1" DataType="null" Enabled="true">
|
<BusinessObjectDataSource Name="nineteenths2_compensation" DataType="null" Enabled="true">
|
||||||
<Column Name="name" DataType="System.String"/>
|
|
||||||
<Column Name="amount" DataType="System.Decimal"/>
|
|
||||||
<Column Name="count_person" DataType="System.Decimal"/>
|
|
||||||
<Column Name="total_amount" DataType="System.Decimal"/>
|
|
||||||
</BusinessObjectDataSource>
|
|
||||||
<BusinessObjectDataSource Name="nineteenths_expenses2" DataType="null" Enabled="true">
|
|
||||||
<Column Name="name" DataType="System.String"/>
|
|
||||||
<Column Name="amount" DataType="System.Decimal"/>
|
|
||||||
<Column Name="day" DataType="System.Decimal"/>
|
|
||||||
<Column Name="count_person" DataType="System.Decimal"/>
|
|
||||||
<Column Name="total_amount" DataType="System.Decimal"/>
|
|
||||||
</BusinessObjectDataSource>
|
|
||||||
<BusinessObjectDataSource Name="nineteenths_expenses3" DataType="null" Enabled="true">
|
|
||||||
<Column Name="header_name3" DataType="System.String"/>
|
|
||||||
<BusinessObjectDataSource Name="nineteenths_expenses3_details" DataType="null" Enabled="true">
|
|
||||||
<Column Name="name" DataType="System.String"/>
|
<Column Name="name" DataType="System.String"/>
|
||||||
|
<Column Name="hour" DataType="System.Decimal"/>
|
||||||
<Column Name="amount" DataType="System.Decimal"/>
|
<Column Name="amount" DataType="System.Decimal"/>
|
||||||
<Column Name="potion" DataType="System.Decimal"/>
|
|
||||||
<Column Name="count_person" DataType="System.Decimal"/>
|
<Column Name="count_person" DataType="System.Decimal"/>
|
||||||
<Column Name="total_amount" DataType="System.Decimal"/>
|
<Column Name="total_amount" DataType="System.Decimal"/>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
|
<BusinessObjectDataSource Name="nineteenths_expenses" DataType="null" Enabled="true">
|
||||||
|
<Column Name="header_name1" DataType="System.String"/>
|
||||||
|
<Column Name="header_name2" DataType="System.String"/>
|
||||||
|
<BusinessObjectDataSource Name="nineteenths_expenses1" DataType="null" Enabled="true">
|
||||||
|
<Column Name="name" DataType="System.String"/>
|
||||||
|
<Column Name="amount" DataType="System.Decimal"/>
|
||||||
|
<Column Name="count_person" DataType="System.Decimal"/>
|
||||||
|
<Column Name="total_amount" DataType="System.Decimal"/>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
<BusinessObjectDataSource Name="nineteenths_expenses2" DataType="null" Enabled="true">
|
||||||
|
<Column Name="name" DataType="System.String"/>
|
||||||
|
<Column Name="amount" DataType="System.Decimal"/>
|
||||||
|
<Column Name="day" DataType="System.Decimal"/>
|
||||||
|
<Column Name="count_person" DataType="System.Decimal"/>
|
||||||
|
<Column Name="total_amount" DataType="System.Decimal"/>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
<BusinessObjectDataSource Name="nineteenths_expenses3" DataType="null" Enabled="true">
|
||||||
|
<Column Name="header_name3" DataType="System.String"/>
|
||||||
|
<BusinessObjectDataSource Name="nineteenths_expenses3_details" DataType="null" Enabled="true">
|
||||||
|
<Column Name="name" DataType="System.String"/>
|
||||||
|
<Column Name="amount" DataType="System.Decimal"/>
|
||||||
|
<Column Name="potion" DataType="System.Decimal"/>
|
||||||
|
<Column Name="count_person" DataType="System.Decimal"/>
|
||||||
|
<Column Name="total_amount" DataType="System.Decimal"/>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
<BusinessObjectDataSource Name="nineteenths_material" DataType="null" Enabled="true">
|
||||||
|
<Column Name="name" DataType="System.String"/>
|
||||||
|
<Column Name="unit" DataType="System.String"/>
|
||||||
|
<Column Name="amount" DataType="System.Decimal"/>
|
||||||
|
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||||
|
<Column Name="total_amount" DataType="System.Decimal"/>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
<BusinessObjectDataSource Name="nineteenths_material" DataType="null" Enabled="true">
|
</BusinessObjectDataSource>
|
||||||
<Column Name="name" DataType="System.String"/>
|
<BusinessObjectDataSource Name="nineteenth1" DataType="null" Enabled="true">
|
||||||
<Column Name="unit" DataType="System.String"/>
|
<Column Name="text1" DataType="System.String"/>
|
||||||
<Column Name="amount" DataType="System.Decimal"/>
|
<Column Name="text2" DataType="System.String"/>
|
||||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
<Column Name="text3" DataType="System.String"/>
|
||||||
<Column Name="total_amount" DataType="System.Decimal"/>
|
<Column Name="total_compensation" DataType="System.Decimal"/>
|
||||||
</BusinessObjectDataSource>
|
<Column Name="total_expenses" DataType="System.Decimal"/>
|
||||||
|
<Column Name="total_material" DataType="System.Decimal"/>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
<Column Name="budget_amount" DataType="System.Decimal"/>
|
<Column Name="budget_amount" DataType="System.Decimal"/>
|
||||||
<BusinessObjectDataSource Name="twentieth" DataType="null" Enabled="true">
|
<BusinessObjectDataSource Name="twentieth" DataType="null" Enabled="true">
|
||||||
@@ -174,6 +195,7 @@
|
|||||||
<Column Name="nuai_nap" DataType="System.String"/>
|
<Column Name="nuai_nap" DataType="System.String"/>
|
||||||
<Column Name="khrang1" DataType="System.String"/>
|
<Column Name="khrang1" DataType="System.String"/>
|
||||||
<Column Name="khrang2" DataType="System.String"/>
|
<Column Name="khrang2" DataType="System.String"/>
|
||||||
|
<Column Name="khrang3" DataType="System.String"/>
|
||||||
<Column Name="rueang" DataType="System.String"/>
|
<Column Name="rueang" DataType="System.String"/>
|
||||||
<Column Name="bath" DataType="System.String"/>
|
<Column Name="bath" DataType="System.String"/>
|
||||||
<Column Name="text1" DataType="System.String"/>
|
<Column Name="text1" DataType="System.String"/>
|
||||||
@@ -188,6 +210,7 @@
|
|||||||
<Column Name="text10" DataType="System.String"/>
|
<Column Name="text10" DataType="System.String"/>
|
||||||
<Column Name="activity" DataType="System.String"/>
|
<Column Name="activity" DataType="System.String"/>
|
||||||
<Column Name="clause1" DataType="System.String"/>
|
<Column Name="clause1" DataType="System.String"/>
|
||||||
|
<Column Name="count_quantitative" DataType="System.String"/>
|
||||||
<Column Name="count_unit" DataType="System.String"/>
|
<Column Name="count_unit" DataType="System.String"/>
|
||||||
<Column Name="count_project" DataType="System.String"/>
|
<Column Name="count_project" DataType="System.String"/>
|
||||||
<Column Name="count_training" DataType="System.String"/>
|
<Column Name="count_training" DataType="System.String"/>
|
||||||
@@ -200,7 +223,8 @@
|
|||||||
<Column Name="percentage1" DataType="System.String"/>
|
<Column Name="percentage1" DataType="System.String"/>
|
||||||
<Column Name="percentage2" DataType="System.String"/>
|
<Column Name="percentage2" DataType="System.String"/>
|
||||||
<Column Name="acquired_knowledge" DataType="System.String"/>
|
<Column Name="acquired_knowledge" DataType="System.String"/>
|
||||||
<Column Name="detail" DataType="System.String"/>
|
<Column Name="detail1" DataType="System.String"/>
|
||||||
|
<Column Name="detail2" DataType="System.String"/>
|
||||||
<Column Name="clause4" DataType="System.String"/>
|
<Column Name="clause4" DataType="System.String"/>
|
||||||
<Column Name="expenses" DataType="System.Decimal"/>
|
<Column Name="expenses" DataType="System.Decimal"/>
|
||||||
</BusinessObjectDataSource>
|
</BusinessObjectDataSource>
|
||||||
@@ -249,12 +273,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="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"/>
|
<TextObject Name="Text40" Width="708.75" Height="28.35" Text="[project_principle_rationale.faculty]" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data1" Top="183.72" Width="774.9">
|
<DataBand Name="Data1" Top="183.55" Width="774.9">
|
||||||
<DataBand Name="Data2" Top="187.88" Width="774.9" Height="28.35" DataSource="activity">
|
<DataBand Name="Data2" Top="187.55" 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"/>
|
<TextObject Name="Text48" Width="718.2" Height="28.35" Text="[project_principle_rationale.activity.activity]" Font="TH Sarabun New, 14pt"/>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data3" Top="220.4" Width="774.9" Height="888.3" DataSource="project_principle_rationale">
|
<DataBand Name="Data3" Top="219.9" 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="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="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"/>
|
<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"/>
|
||||||
@@ -278,95 +302,97 @@
|
|||||||
<TextObject Name="Text70" Top="368.55" Width="708.75" Height="28.35" Text="5. ความเป็นมาหรือหลักการและเหตุผล" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<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="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="Text72" Top="859.95" Width="708.75" Height="28.35" Text="6. วัตถุประสงค์" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data66" Top="1112.87" Width="774.9" Height="28.35" DataSource="sixth">
|
<DataBand Name="Data66" Top="1112.2" 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"/>
|
<TextObject Name="Text73" Width="765.45" Height="28.35" Text="[project_principle_rationale.sixth.objective]" Font="TH Sarabun New, 14pt"/>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data4" Top="1145.38" Width="774.9" Height="28.35">
|
<DataBand Name="Data4" Top="1144.55" Width="774.9" Height="28.35">
|
||||||
<TextObject Name="Text74" Width="708.75" Height="28.35" Text="7. ความสอดคล้องกับอัตลักษณ์และเอกลักษณ์ของมหาวิทยาลัย" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TextObject Name="Text74" Width="708.75" Height="28.35" Text="7. ความสอดคล้องกับอัตลักษณ์และเอกลักษณ์ของมหาวิทยาลัย" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data5" Top="1177.9" Width="774.9" Height="56.7" DataSource="seventh">
|
<DataBand Name="Data5" Top="1176.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="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="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="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"/>
|
<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>
|
</DataBand>
|
||||||
<DataBand Name="Data42" Top="1238.77" Width="774.9" Height="28.35">
|
<DataBand Name="Data42" Top="1237.6" Width="774.9" Height="28.35">
|
||||||
<TextObject Name="Text83" Width="708.75" Height="28.35" Text="8. ความสอดคล้องกับยุทธศาสตร์การพัฒนามหาวิทยาลัย" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TextObject Name="Text83" Width="708.75" Height="28.35" Text="8. ความสอดคล้องกับยุทธศาสตร์การพัฒนามหาวิทยาลัย" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data43" Top="1271.28" Width="774.9" Height="94.5" DataSource="eighth">
|
<DataBand Name="Data43" Top="1269.95" 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="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"/>
|
<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>
|
</DataBand>
|
||||||
<DataBand Name="Data6" Top="1369.95" Width="774.9" Height="28.35">
|
<DataBand Name="Data6" Top="1368.45" Width="774.9" Height="28.35">
|
||||||
<TextObject Name="Text85" Width="708.75" Height="28.35" Text="9. ความสอดคล้องกับตัวชี้วัดผลสัมฤทธิ์" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TextObject Name="Text85" Width="708.75" Height="28.35" Text="9. ความสอดคล้องกับตัวชี้วัดผลสัมฤทธิ์" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data7" Top="1402.47" Width="774.9" Height="28.35" DataSource="ninth">
|
<DataBand Name="Data7" Top="1400.8" 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"/>
|
<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="1434.98" Width="774.9" Height="28.35" DataSource="ninths">
|
<DataBand Name="Data12" Top="1433.15" 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"/>
|
<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>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data8" Top="1467.5" Width="774.9" Height="28.35">
|
<DataBand Name="Data8" Top="1465.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"/>
|
<TextObject Name="Text88" Left="47.25" Width="718.2" Height="28.35" Text="อธิบายความสอดคล้อง" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<DataBand Name="Data9" Top="1500.02" Width="774.9" Height="28.35">
|
<DataBand Name="Data9" Top="1497.85" 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"/>
|
<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>
|
</DataBand>
|
||||||
<DataBand Name="Data10" Top="1532.53" Width="774.9" Height="28.35">
|
<DataBand Name="Data10" Top="1530.2" 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"/>
|
<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="1565.05" Width="774.9" Height="28.35" DataSource="tenth">
|
<DataBand Name="Data11" Top="1562.55" 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"/>
|
<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>
|
</DataBand>
|
||||||
<DataBand Name="Data13" Top="1597.57" Width="774.9" Height="28.35">
|
<DataBand Name="Data13" Top="1594.9" 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"/>
|
<TextObject Name="Text92" Left="47.25" Width="718.2" Height="28.35" Text="อธิบายความสอดคล้อง" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<DataBand Name="Data14" Top="1630.08" Width="774.9" Height="28.35">
|
<DataBand Name="Data14" Top="1627.25" 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"/>
|
<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>
|
</DataBand>
|
||||||
<DataBand Name="Data15" Top="1662.6" Width="774.9" Height="28.35">
|
<DataBand Name="Data15" Top="1659.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"/>
|
<TextObject Name="Text94" Width="708.75" Height="28.35" Text="11. ความสอดคล้องกับเป้าหมายการให้บริการกระทรวง" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data16" Top="1695.12" Width="774.9" Height="28.35">
|
<DataBand Name="Data16" Top="1691.95" 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"/>
|
<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>
|
</DataBand>
|
||||||
<DataBand Name="Data17" Top="1727.63" Width="774.9" Height="28.35">
|
<DataBand Name="Data17" Top="1724.3" Width="774.9" Height="28.35">
|
||||||
<TextObject Name="Text96" Width="708.75" Height="28.35" Text="12. ความสอดคล้องกับเป้าหมายการให้บริการหน่วยงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TextObject Name="Text96" Width="708.75" Height="28.35" Text="12. ความสอดคล้องกับเป้าหมายการให้บริการหน่วยงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data18" Top="1760.15" Width="774.9" Height="28.35">
|
<DataBand Name="Data18" Top="1756.65" 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"/>
|
<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>
|
</DataBand>
|
||||||
<DataBand Name="Data19" Top="1792.67" Width="774.9" Height="113.4">
|
<DataBand Name="Data19" Top="1789" 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="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="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="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"/>
|
<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>
|
||||||
<DataBand Name="Data20" Top="1910.23" Width="774.9" Height="56.7">
|
<DataBand Name="Data20" Top="1906.4" 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="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="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"/>
|
<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="1971.1" Width="774.9" Height="28.35" DataSource="fourteenth">
|
<DataBand Name="Data21" Top="1967.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="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"/>
|
<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>
|
</DataBand>
|
||||||
<DataBand Name="Data22" Top="2003.62" Width="774.9" Height="28.35">
|
<DataBand Name="Data22" Top="1999.45" Width="774.9" Height="28.35">
|
||||||
<TextObject Name="Text107" Width="765.45" Height="28.35" Text="15. กิจกรรมการดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TextObject Name="Text107" Width="765.45" Height="28.35" Text="15. กิจกรรมการดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data23" Top="2036.13" Width="774.9" Height="28.35" DataSource="fifteenth">
|
<DataBand Name="Data23" Top="2031.8" 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"/>
|
<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="2068.65" Width="774.9" Height="37.8" DataSource="fifteenths">
|
<DataBand Name="Data44" Top="2064.15" 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"/>
|
<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>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data24" Top="2110.62" Width="774.9" Height="28.35">
|
<DataBand Name="Data24" Top="2105.95" Width="774.9" Height="85.05">
|
||||||
<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="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="2143.13" Width="774.9" Height="37.8" DataSource="sixteenth">
|
<TextObject Name="Text188" Top="28.35" Width="765.45" Height="28.35" Text="ผลรวมกลุ่มเป้าหมาย [project_principle_rationale.total_target]" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TextObject Name="Text189" Top="56.7" Width="765.45" Height="28.35" Text="ผลรวมคณะกรรมการ [project_principle_rationale.total_board]" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<DataBand Name="Data31" Top="2195" 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"/>
|
<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>
|
||||||
<DataBand Name="Data25" Top="2185.1" Width="774.9" Height="66.15" DataSource="sixteenths">
|
<DataBand Name="Data25" Top="2236.8" 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"/>
|
<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">
|
<TableObject Name="Table1" Left="28.35" Top="37.8" Width="718.2" Height="28.35">
|
||||||
<TableColumn Name="Column1" Width="151.2"/>
|
<TableColumn Name="Column1" Width="151.2"/>
|
||||||
@@ -382,7 +408,7 @@
|
|||||||
<TableCell Name="Cell5" Border.Lines="All" Text="วังไกลกังวล" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell5" Border.Lines="All" Text="วังไกลกังวล" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableRow>
|
</TableRow>
|
||||||
</TableObject>
|
</TableObject>
|
||||||
<DataBand Name="Data45" Top="2255.42" Width="774.9" Height="349.65" DataSource="sixteenths2">
|
<DataBand Name="Data45" Top="2306.95" Width="774.9" Height="349.65" DataSource="sixteenths2">
|
||||||
<TableObject Name="Table2" Left="28.35" Width="718.2" Height="311.85">
|
<TableObject Name="Table2" Left="28.35" Width="718.2" Height="311.85">
|
||||||
<TableColumn Name="Column6" Width="151.2"/>
|
<TableColumn Name="Column6" Width="151.2"/>
|
||||||
<TableColumn Name="Column7" Width="132.3"/>
|
<TableColumn Name="Column7" Width="132.3"/>
|
||||||
@@ -471,13 +497,13 @@
|
|||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data26" Top="2609.23" Width="774.9" Height="28.35">
|
<DataBand Name="Data26" Top="2660.6" Width="774.9" Height="28.35">
|
||||||
<TextObject Name="Text111" Width="765.45" Height="28.35" Text="17. สถานที่ดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TextObject Name="Text111" Width="765.45" Height="28.35" Text="17. สถานที่ดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data27" Top="2641.75" Width="774.9" Height="28.35" DataSource="seventeenth">
|
<DataBand Name="Data27" Top="2692.95" 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"/>
|
<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="2674.27" Width="774.9" Height="28.35" DataSource="seventeenths">
|
<DataBand Name="Data28" Top="2725.3" 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"/>
|
<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="2706.78" Width="774.9" Height="28.35" DataSource="seventeenths2">
|
<DataBand Name="Data29" Top="2757.65" 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="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="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"/>
|
<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"/>
|
||||||
@@ -488,11 +514,11 @@
|
|||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data30" Top="2739.3" Width="774.9" Height="28.35">
|
<DataBand Name="Data30" Top="2790" Width="774.9" Height="28.35">
|
||||||
<TextObject Name="Text116" Width="765.45" Height="28.35" Text="18. ระยะเวลาในการดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TextObject Name="Text116" Width="756" Height="28.35" Text="18. ระยะเวลาในการดำเนินงาน จำนวน [project_principle_rationale.count_day] วัน" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data32" Top="2771.82" Width="774.9" Height="28.35" DataSource="eighteenth">
|
<DataBand Name="Data32" Top="2822.35" 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"/>
|
<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="2804.33" Width="774.9" Height="85.05" DataSource="eighteenths">
|
<DataBand Name="Data33" Top="2854.7" 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="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="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"/>
|
<TextObject Name="Text120" Left="47.25" Top="56.7" Width="132.3" Height="28.35" Text="วันที่เสร็จสิ้นโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
@@ -501,82 +527,96 @@
|
|||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data34" Top="2893.55" Width="774.9" Height="160.65" DataSource="nineteenth">
|
<DataBand Name="Data48" Top="2943.75" 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="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="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"/>
|
</DataBand>
|
||||||
<TextObject Name="Text125" Left="396.9" Top="56.7" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.budget_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<DataBand Name="Data49" Top="2976.1" Width="774.9" Height="28.35" DataSource="nineteenth1">
|
||||||
<TextObject Name="Text145" Top="28.35" Width="774.9" Height="28.35" Text="[project_principle_rationale.nineteenth.activity]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<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="Text146" Left="47.25" Top="85.05" Width="330.75" Height="28.35" Text="ค่าตอบแทน" 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="Text147" Left="396.9" Top="85.05" 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"/>
|
<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"/>
|
||||||
<TableObject Name="Table3" Left="47.25" Top="113.4" Width="680.4" Height="47.25">
|
<TextObject Name="Text193" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.total_expenses]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableColumn Name="Column11" Width="226.8"/>
|
<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"/>
|
||||||
<TableColumn Name="Column12" Width="311.85"/>
|
<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"/>
|
||||||
<TableColumn Name="Column13" Width="141.75"/>
|
</DataBand>
|
||||||
<TableRow Name="Row13" Height="47.25">
|
<DataBand Name="Data34" Top="3008.45" Width="774.9" DataSource="nineteenth">
|
||||||
<TableCell Name="Cell61" Border.Lines="All" Fill.Color="255, 255, 202" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<DataBand Name="Data67" Top="3012.45" Width="774.9" Height="37.8" DataSource="nineteenth_data_header">
|
||||||
<TableCell Name="Cell62" Border.Lines="All" Fill.Color="255, 255, 202" Text="จำนวน" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<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"/>
|
||||||
<TableCell Name="Cell63" Border.Lines="All" Fill.Color="255, 255, 202" Text="เป็นเงินทั้งสิ้น" HorzAlign="Center" VertAlign="Center" 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"/>
|
||||||
</TableRow>
|
<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"/>
|
||||||
</TableObject>
|
<DataBand Name="Data36" Top="3133.85" Width="774.9" Height="28.35" DataSource="nineteenths_compensation">
|
||||||
<TableObject Name="Table4" Left="274.05" Top="132.3" Width="311.85" Height="28.35">
|
<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"/>
|
||||||
<TableColumn Name="Column14" Width="103.95"/>
|
<DataHeaderBand Name="DataHeader1" Top="3054.25" Width="774.9" Height="75.6">
|
||||||
<TableColumn Name="Column15" Width="103.95"/>
|
<TextObject Name="Text146" Left="47.25" Width="330.75" Height="28.35" Text="ค่าตอบแทน" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableColumn Name="Column16" Width="103.95"/>
|
<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"/>
|
||||||
<TableRow Name="Row14" Height="28.35">
|
<TableObject Name="Table3" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
|
||||||
<TableCell Name="Cell64" Border.Lines="All" Text="(ชม)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableColumn Name="Column11" Width="226.8"/>
|
||||||
<TableCell Name="Cell65" Border.Lines="All" Text="(บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableColumn Name="Column12" Width="311.85"/>
|
||||||
<TableCell Name="Cell66" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableColumn Name="Column13" Width="141.75"/>
|
||||||
</TableRow>
|
<TableRow Name="Row13" Height="47.25">
|
||||||
</TableObject>
|
<TableCell Name="Cell61" Border.Lines="All" Fill.Color="255, 255, 202" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data36" Top="3058.37" Width="774.9" Height="28.35" DataSource="nineteenths_compensation">
|
<TableCell Name="Cell62" Border.Lines="All" Fill.Color="255, 255, 202" Text="จำนวน" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<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"/>
|
<TableCell Name="Cell63" Border.Lines="All" Fill.Color="255, 255, 202" Text="เป็นเงินทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<DataBand Name="Data37" Top="3090.88" Width="774.9" Height="27.23" DataSource="nineteenths2_compensation">
|
</TableRow>
|
||||||
<TableObject Name="Table5" Left="47.25" Top="-1.12" Width="680.4" Height="28.35">
|
</TableObject>
|
||||||
<TableColumn Name="Column17" Width="226.8"/>
|
<TableObject Name="Table4" Left="274.05" Top="47.25" Width="311.85" Height="28.35">
|
||||||
<TableColumn Name="Column18" Width="103.95"/>
|
<TableColumn Name="Column14" Width="103.95"/>
|
||||||
<TableColumn Name="Column19" Width="103.95"/>
|
<TableColumn Name="Column15" Width="103.95"/>
|
||||||
<TableColumn Name="Column20" Width="103.95"/>
|
<TableColumn Name="Column16" Width="103.95"/>
|
||||||
<TableColumn Name="Column21" Width="141.75"/>
|
<TableRow Name="Row14" Height="28.35">
|
||||||
<TableRow Name="Row15" Height="28.35">
|
<TableCell Name="Cell64" Border.Lines="All" Text="(ชม)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableCell Name="Cell67" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_compensation.nineteenths2_compensation.name]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell65" Border.Lines="All" Text="(บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableCell Name="Cell68" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_compensation.nineteenths2_compensation.hour]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell66" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableCell Name="Cell69" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_compensation.nineteenths2_compensation.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
</TableRow>
|
||||||
<TableCell Name="Cell70" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_compensation.nineteenths2_compensation.count_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
</TableObject>
|
||||||
<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"/>
|
</DataHeaderBand>
|
||||||
</TableRow>
|
<DataBand Name="Data37" Top="3166.2" Width="774.9" Height="27.23" DataSource="nineteenths2_compensation">
|
||||||
</TableObject>
|
<TableObject Name="Table5" Left="47.25" Top="-1.12" Width="680.4" Height="28.35">
|
||||||
<DataFooterBand Name="DataFooter1" Top="3122.28" Width="774.9" Height="28.35">
|
<TableColumn Name="Column17" Width="226.8"/>
|
||||||
<TextObject Name="Text127" Left="47.25" Width="689.85" Height="28.35" Text="**หมายเหตุ : การบรรยายสามารถใช้วิทยากรได้เพียง 1 คนเท่านั้น" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableColumn Name="Column18" Width="103.95"/>
|
||||||
</DataFooterBand>
|
<TableColumn Name="Column19" Width="103.95"/>
|
||||||
|
<TableColumn Name="Column20" Width="103.95"/>
|
||||||
|
<TableColumn Name="Column21" Width="141.75"/>
|
||||||
|
<TableRow Name="Row15" Height="28.35">
|
||||||
|
<TableCell Name="Cell67" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_compensation.nineteenths2_compensation.name]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TableCell Name="Cell68" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_compensation.nineteenths2_compensation.hour]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TableCell Name="Cell69" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_compensation.nineteenths2_compensation.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TableCell Name="Cell70" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_compensation.nineteenths2_compensation.count_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<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="3197.43" 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>
|
||||||
</DataBand>
|
<DataBand Name="Data68" Top="3309.38" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
|
||||||
<DataBand Name="Data38" Top="3154.8" Width="774.9" Height="75.6" DataSource="nineteenth">
|
<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"/>
|
||||||
<TextObject Name="Text128" Left="47.25" Width="330.75" Height="28.35" Text="ค่าใช้สอย" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<DataHeaderBand Name="DataHeader3" Top="3229.78" Width="774.9" Height="75.6">
|
||||||
<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"/>
|
<TextObject Name="Text128" Left="47.25" Width="330.75" Height="28.35" Text="ค่าใช้สอย" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableObject Name="Table6" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
|
<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"/>
|
||||||
<TableColumn Name="Column22" Width="226.8"/>
|
<TableObject Name="Table6" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
|
||||||
<TableColumn Name="Column23" Width="311.85"/>
|
<TableColumn Name="Column22" Width="226.8"/>
|
||||||
<TableColumn Name="Column24" Width="141.75"/>
|
<TableColumn Name="Column23" Width="311.85"/>
|
||||||
<TableRow Name="Row16" Height="47.25">
|
<TableColumn Name="Column24" Width="141.75"/>
|
||||||
<TableCell Name="Cell72" Border.Lines="All" Fill.Color="255, 255, 202" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableRow Name="Row16" Height="47.25">
|
||||||
<TableCell Name="Cell73" Border.Lines="All" Fill.Color="255, 255, 202" Text="จำนวน" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell72" Border.Lines="All" Fill.Color="255, 255, 202" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableCell Name="Cell74" Border.Lines="All" Fill.Color="255, 255, 202" Text="เป็นเงินทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell73" Border.Lines="All" Fill.Color="255, 255, 202" Text="จำนวน" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableRow>
|
<TableCell Name="Cell74" Border.Lines="All" Fill.Color="255, 255, 202" Text="เป็นเงินทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableObject>
|
</TableRow>
|
||||||
<TableObject Name="Table7" Left="274.05" Top="47.25" Width="311.85" Height="28.35">
|
</TableObject>
|
||||||
<TableColumn Name="Column25" Width="103.95"/>
|
<TableObject Name="Table7" Left="274.05" Top="47.25" Width="311.85" Height="28.35">
|
||||||
<TableColumn Name="Column26" Width="103.95"/>
|
<TableColumn Name="Column25" Width="103.95"/>
|
||||||
<TableColumn Name="Column27" Width="103.95"/>
|
<TableColumn Name="Column26" Width="103.95"/>
|
||||||
<TableRow Name="Row17" Height="28.35">
|
<TableColumn Name="Column27" Width="103.95"/>
|
||||||
<TableCell Name="Cell75" Border.Lines="All" Text="บาท" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold" ColSpan="2"/>
|
<TableRow Name="Row17" Height="28.35">
|
||||||
<TableCell Name="Cell76" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell75" Border.Lines="All" Text="บาท" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold" ColSpan="2"/>
|
||||||
<TableCell Name="Cell77" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell76" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableRow>
|
<TableCell Name="Cell77" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableObject>
|
</TableRow>
|
||||||
<DataBand Name="Data39" Top="3234.56" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
|
</TableObject>
|
||||||
<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"/>
|
</DataHeaderBand>
|
||||||
<DataBand Name="Data40" Top="3267.08" Width="774.9" Height="28.35" DataSource="nineteenths_expenses1">
|
<DataBand Name="Data38" Top="3341.73" Width="774.9" Height="28.35" DataSource="nineteenths_expenses1">
|
||||||
<TableObject Name="Table8" Left="47.25" Width="680.4" Height="28.35">
|
<TableObject Name="Table8" Left="47.25" Width="680.4" Height="28.35">
|
||||||
<TableColumn Name="Column28" Width="226.8"/>
|
<TableColumn Name="Column28" Width="226.8"/>
|
||||||
<TableColumn Name="Column29" Width="103.95"/>
|
<TableColumn Name="Column29" Width="103.95"/>
|
||||||
@@ -584,40 +624,40 @@
|
|||||||
<TableColumn Name="Column31" Width="103.95"/>
|
<TableColumn Name="Column31" Width="103.95"/>
|
||||||
<TableColumn Name="Column32" Width="141.75"/>
|
<TableColumn Name="Column32" Width="141.75"/>
|
||||||
<TableRow Name="Row18" Height="28.35">
|
<TableRow Name="Row18" Height="28.35">
|
||||||
<TableCell Name="Cell78" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses1.name]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell78" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses1.name]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell79" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses1.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt" ColSpan="2"/>
|
<TableCell Name="Cell79" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses1.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt" ColSpan="2"/>
|
||||||
<TableCell Name="Cell80" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell80" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell81" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses1.count_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell81" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses1.count_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell82" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses1.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell82" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses1.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
</TableRow>
|
</TableRow>
|
||||||
</TableObject>
|
</TableObject>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
<DataBand Name="Data39" Top="3425.33" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
|
||||||
<DataBand Name="Data41" Top="3299.6" Width="774.9" Height="47.25" DataSource="nineteenth">
|
<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"/>
|
||||||
<TableObject Name="Table9" Left="47.25" Width="680.4" Height="47.25">
|
<DataHeaderBand Name="DataHeader4" Top="3374.08" Width="774.9" Height="47.25">
|
||||||
<TableColumn Name="Column33" Width="226.8"/>
|
<TableObject Name="Table9" Left="47.25" Width="680.4" Height="47.25">
|
||||||
<TableColumn Name="Column34" Width="311.85"/>
|
<TableColumn Name="Column33" Width="226.8"/>
|
||||||
<TableColumn Name="Column35" Width="141.75"/>
|
<TableColumn Name="Column34" Width="311.85"/>
|
||||||
<TableRow Name="Row19" Height="47.25">
|
<TableColumn Name="Column35" Width="141.75"/>
|
||||||
<TableCell Name="Cell83" Border.Lines="All" Fill.Color="255, 255, 202" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableRow Name="Row19" Height="47.25">
|
||||||
<TableCell Name="Cell84" Border.Lines="All" Fill.Color="255, 255, 202" Text="จำนวน" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell83" Border.Lines="All" Fill.Color="255, 255, 202" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableCell Name="Cell85" Border.Lines="All" Fill.Color="255, 255, 202" Text="เป็นเงินทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell84" Border.Lines="All" Fill.Color="255, 255, 202" Text="จำนวน" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableRow>
|
<TableCell Name="Cell85" Border.Lines="All" Fill.Color="255, 255, 202" Text="เป็นเงินทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableObject>
|
</TableRow>
|
||||||
<TableObject Name="Table10" Left="274.05" Top="18.9" Width="311.85" Height="28.35">
|
</TableObject>
|
||||||
<TableColumn Name="Column36" Width="103.95"/>
|
<TableObject Name="Table10" Left="274.05" Top="18.9" Width="311.85" Height="28.35">
|
||||||
<TableColumn Name="Column37" Width="103.95"/>
|
<TableColumn Name="Column36" Width="103.95"/>
|
||||||
<TableColumn Name="Column38" Width="103.95"/>
|
<TableColumn Name="Column37" Width="103.95"/>
|
||||||
<TableRow Name="Row20" Height="28.35">
|
<TableColumn Name="Column38" Width="103.95"/>
|
||||||
<TableCell Name="Cell86" Border.Lines="All" Text="บาท/คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableRow Name="Row20" Height="28.35">
|
||||||
<TableCell Name="Cell87" Border.Lines="All" Text="วัน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell86" Border.Lines="All" Text="บาท/คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableCell Name="Cell88" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell87" Border.Lines="All" Text="วัน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableRow>
|
<TableCell Name="Cell88" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableObject>
|
</TableRow>
|
||||||
<DataBand Name="Data46" Top="3351.01" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
|
</TableObject>
|
||||||
<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"/>
|
</DataHeaderBand>
|
||||||
<DataBand Name="Data47" Top="3383.53" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
|
<DataBand Name="Data40" Top="3457.68" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
|
||||||
<TableObject Name="Table11" Left="47.25" Width="680.4" Height="28.35">
|
<TableObject Name="Table11" Left="47.25" Width="680.4" Height="28.35">
|
||||||
<TableColumn Name="Column39" Width="226.8"/>
|
<TableColumn Name="Column39" Width="226.8"/>
|
||||||
<TableColumn Name="Column40" Width="103.95"/>
|
<TableColumn Name="Column40" Width="103.95"/>
|
||||||
@@ -625,40 +665,40 @@
|
|||||||
<TableColumn Name="Column42" Width="103.95"/>
|
<TableColumn Name="Column42" Width="103.95"/>
|
||||||
<TableColumn Name="Column43" Width="141.75"/>
|
<TableColumn Name="Column43" Width="141.75"/>
|
||||||
<TableRow Name="Row21" Height="28.35">
|
<TableRow Name="Row21" Height="28.35">
|
||||||
<TableCell Name="Cell89" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses2.name]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell89" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses2.name]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell90" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses2.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell90" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses2.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell91" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses2.day]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell91" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses2.day]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell92" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses2.count_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell92" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses2.count_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell93" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses2.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell93" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses2.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
</TableRow>
|
</TableRow>
|
||||||
</TableObject>
|
</TableObject>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
<DataBand Name="Data41" Top="3541.28" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
|
||||||
<DataBand Name="Data48" Top="3416.05" Width="774.9" Height="47.25" 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"/>
|
||||||
<TableObject Name="Table12" Left="47.25" Width="680.4" Height="47.25">
|
<DataHeaderBand Name="DataHeader5" Top="3490.03" Width="774.9" Height="47.25">
|
||||||
<TableColumn Name="Column44" Width="226.8"/>
|
<TableObject Name="Table12" Left="47.25" Width="680.4" Height="47.25">
|
||||||
<TableColumn Name="Column45" Width="311.85"/>
|
<TableColumn Name="Column44" Width="226.8"/>
|
||||||
<TableColumn Name="Column46" Width="141.75"/>
|
<TableColumn Name="Column45" Width="311.85"/>
|
||||||
<TableRow Name="Row22" Height="47.25">
|
<TableColumn Name="Column46" Width="141.75"/>
|
||||||
<TableCell Name="Cell94" Border.Lines="All" Fill.Color="255, 255, 202" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableRow Name="Row22" Height="47.25">
|
||||||
<TableCell Name="Cell95" Border.Lines="All" Fill.Color="255, 255, 202" Text="จำนวน" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell94" Border.Lines="All" Fill.Color="255, 255, 202" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableCell Name="Cell96" Border.Lines="All" Fill.Color="255, 255, 202" Text="เป็นเงินทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell95" Border.Lines="All" Fill.Color="255, 255, 202" Text="จำนวน" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableRow>
|
<TableCell Name="Cell96" Border.Lines="All" Fill.Color="255, 255, 202" Text="เป็นเงินทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableObject>
|
</TableRow>
|
||||||
<TableObject Name="Table13" Left="274.05" Top="18.9" Width="311.85" Height="28.35">
|
</TableObject>
|
||||||
<TableColumn Name="Column47" Width="103.95"/>
|
<TableObject Name="Table13" Left="274.05" Top="18.9" Width="311.85" Height="28.35">
|
||||||
<TableColumn Name="Column48" Width="103.95"/>
|
<TableColumn Name="Column47" Width="103.95"/>
|
||||||
<TableColumn Name="Column49" Width="103.95"/>
|
<TableColumn Name="Column48" Width="103.95"/>
|
||||||
<TableRow Name="Row23" Height="28.35">
|
<TableColumn Name="Column49" Width="103.95"/>
|
||||||
<TableCell Name="Cell97" Border.Lines="All" Text="(บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableRow Name="Row23" Height="28.35">
|
||||||
<TableCell Name="Cell98" Border.Lines="All" Text="(มื้อ)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell97" Border.Lines="All" Text="(บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
<TableCell Name="Cell99" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<TableCell Name="Cell98" Border.Lines="All" Text="(มื้อ)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableRow>
|
<TableCell Name="Cell99" Border.Lines="All" Text="คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
</TableObject>
|
</TableRow>
|
||||||
<DataBand Name="Data49" Top="3467.46" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
|
</TableObject>
|
||||||
<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"/>
|
</DataHeaderBand>
|
||||||
<DataBand Name="Data50" Top="3499.98" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3_details">
|
<DataBand Name="Data46" Top="3573.63" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3_details">
|
||||||
<TableObject Name="Table14" Left="47.25" Width="680.4" Height="28.35">
|
<TableObject Name="Table14" Left="47.25" Width="680.4" Height="28.35">
|
||||||
<TableColumn Name="Column50" Width="226.8"/>
|
<TableColumn Name="Column50" Width="226.8"/>
|
||||||
<TableColumn Name="Column51" Width="103.95"/>
|
<TableColumn Name="Column51" Width="103.95"/>
|
||||||
@@ -666,34 +706,16 @@
|
|||||||
<TableColumn Name="Column53" Width="103.95"/>
|
<TableColumn Name="Column53" Width="103.95"/>
|
||||||
<TableColumn Name="Column54" Width="141.75"/>
|
<TableColumn Name="Column54" Width="141.75"/>
|
||||||
<TableRow Name="Row24" Height="28.35">
|
<TableRow Name="Row24" Height="28.35">
|
||||||
<TableCell Name="Cell100" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses3.nineteenths_expenses3_details.name]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell100" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses3.nineteenths_expenses3_details.name]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell101" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses3.nineteenths_expenses3_details.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell101" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses3.nineteenths_expenses3_details.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell102" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses3.nineteenths_expenses3_details.potion]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell102" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses3.nineteenths_expenses3_details.potion]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell103" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses3.nineteenths_expenses3_details.count_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell103" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses3.nineteenths_expenses3_details.count_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell104" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_expenses.nineteenths_expenses3.nineteenths_expenses3_details.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell104" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses3.nineteenths_expenses3_details.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
</TableRow>
|
</TableRow>
|
||||||
</TableObject>
|
</TableObject>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
<DataBand Name="Data47" Top="3685.58" Width="774.9" Height="28.35" DataSource="nineteenths_material">
|
||||||
<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"/>
|
|
||||||
<TableColumn Name="Column57" Width="75.6"/>
|
|
||||||
<TableColumn Name="Column58" Width="132.3"/>
|
|
||||||
<TableColumn Name="Column59" Width="141.75"/>
|
|
||||||
<TableRow Name="Row25" Height="47.25">
|
|
||||||
<TableCell Name="Cell105" Border.Lines="All" Fill.Color="255, 255, 202" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
|
||||||
<TableCell Name="Cell106" Border.Lines="All" Fill.Color="255, 255, 202" Text="หน่วยนับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
|
||||||
<TableCell Name="Cell107" Border.Lines="All" Fill.Color="255, 255, 202" Text="จำนวน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
|
||||||
<TableCell Name="Cell108" Border.Lines="All" Fill.Color="255, 255, 202" Text="ราคาต่อหน่วย บาท" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
|
||||||
<TableCell Name="Cell109" Border.Lines="All" Fill.Color="255, 255, 202" Text="เป็นเงินทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
|
||||||
</TableRow>
|
|
||||||
</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="3621.71" Width="774.9" Height="28.35" DataSource="nineteenths_material">
|
|
||||||
<TableObject Name="Table16" Left="47.25" Width="680.4" Height="28.35">
|
<TableObject Name="Table16" Left="47.25" Width="680.4" Height="28.35">
|
||||||
<TableColumn Name="Column60" Width="198.45"/>
|
<TableColumn Name="Column60" Width="198.45"/>
|
||||||
<TableColumn Name="Column61" Width="132.3"/>
|
<TableColumn Name="Column61" Width="132.3"/>
|
||||||
@@ -701,18 +723,36 @@
|
|||||||
<TableColumn Name="Column63" Width="132.3"/>
|
<TableColumn Name="Column63" Width="132.3"/>
|
||||||
<TableColumn Name="Column64" Width="141.75"/>
|
<TableColumn Name="Column64" Width="141.75"/>
|
||||||
<TableRow Name="Row26" Height="28.35">
|
<TableRow Name="Row26" Height="28.35">
|
||||||
<TableCell Name="Cell110" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_material.name]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell110" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_material.name]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell111" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_material.unit]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell111" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_material.unit]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell112" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_material.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell112" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_material.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell113" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_material.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<TableCell Name="Cell113" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_material.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
<TableCell Name="Cell114" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenths_material.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
<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>
|
</TableRow>
|
||||||
</TableObject>
|
</TableObject>
|
||||||
|
<DataHeaderBand Name="DataHeader6" Top="3605.98" 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">
|
||||||
|
<TableColumn Name="Column55" Width="198.45"/>
|
||||||
|
<TableColumn Name="Column56" Width="132.3"/>
|
||||||
|
<TableColumn Name="Column57" Width="75.6"/>
|
||||||
|
<TableColumn Name="Column58" Width="132.3"/>
|
||||||
|
<TableColumn Name="Column59" Width="141.75"/>
|
||||||
|
<TableRow Name="Row25" Height="47.25">
|
||||||
|
<TableCell Name="Cell105" Border.Lines="All" Fill.Color="255, 255, 202" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell106" Border.Lines="All" Fill.Color="255, 255, 202" Text="หน่วยนับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell107" Border.Lines="All" Fill.Color="255, 255, 202" Text="จำนวน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell108" Border.Lines="All" Fill.Color="255, 255, 202" Text="ราคาต่อหน่วย บาท" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell109" Border.Lines="All" Fill.Color="255, 255, 202" Text="เป็นเงินทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
</DataHeaderBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</ReportPage>
|
</ReportPage>
|
||||||
<ReportPage Name="Page2" PaperWidth="225" PaperHeight="347" Watermark.Font="Arial, 60pt">
|
<ReportPage Name="Page2" PaperWidth="225" PaperHeight="367" Watermark.Font="Arial, 60pt">
|
||||||
<DataBand Name="Data53" Width="774.9" Height="113.4">
|
<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="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"/>
|
<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"/>
|
||||||
@@ -749,7 +789,7 @@
|
|||||||
<TableCell Name="Cell127" 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>
|
</TableRow>
|
||||||
</TableObject>
|
</TableObject>
|
||||||
<DataBand Name="Data54" Top="117.57" Width="774.9" Height="28.35" DataSource="twentieth">
|
<DataBand Name="Data54" Top="117.4" Width="774.9" Height="28.35" DataSource="twentieth">
|
||||||
<TableObject Name="Table18" Width="774.9" Height="28.35">
|
<TableObject Name="Table18" Width="774.9" Height="28.35">
|
||||||
<TableColumn Name="Column78" Width="321.3"/>
|
<TableColumn Name="Column78" Width="321.3"/>
|
||||||
<TableColumn Name="Column79" Width="37.8"/>
|
<TableColumn Name="Column79" Width="37.8"/>
|
||||||
@@ -782,14 +822,13 @@
|
|||||||
</TableObject>
|
</TableObject>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data55" Top="150.08" Width="774.9" Height="28.35">
|
<DataBand Name="Data55" Top="149.75" 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"/>
|
<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">
|
<DataBand Name="Data56" Top="182.1" 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="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="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="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="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.khrang3]" 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="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="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="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"/>
|
||||||
@@ -798,19 +837,21 @@
|
|||||||
<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="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="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="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="Text176" Left="47.25" Width="982.8" Height="28.35" Text="[project_principle_rationale.twenty_one.text10] [project_principle_rationale.twenty_one.detail1]" 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">
|
<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.khrang2]" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TextObject Name="Text163" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one.clause1] [project_principle_rationale.twenty_one.count_quantitative] [project_principle_rationale.twenty_one.khrang1]" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TextObject Name="Text177" Left="47.25" Width="689.85" 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>
|
<Formats>
|
||||||
<NumberFormat/>
|
<NumberFormat/>
|
||||||
<GeneralFormat/>
|
<GeneralFormat/>
|
||||||
</Formats>
|
</Formats>
|
||||||
</TextObject>
|
</TextObject>
|
||||||
<TextObject Name="Text163" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one.clause1]" Font="TH Sarabun New, 14pt"/>
|
<TextObject Name="Text196" Left="47.25" Width="982.8" Height="28.35" Text="[project_principle_rationale.twenty_one.detail2]" Font="TH Sarabun New, 14pt"/>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data60" Top="215.12" Width="774.9" Height="28.35">
|
<DataBand Name="Data60" Top="214.45" Width="774.9" Height="28.35">
|
||||||
<TextObject Name="Text178" Width="774.9" Height="28.35" Text="22. ผลที่คาดว่าจะได้รับ" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<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">
|
<DataBand Name="Data61" Top="246.8" 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">
|
<TextObject Name="Text179" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_two.list]" Font="TH Sarabun New, 14pt">
|
||||||
<Formats>
|
<Formats>
|
||||||
<NumberFormat/>
|
<NumberFormat/>
|
||||||
@@ -819,9 +860,9 @@
|
|||||||
</TextObject>
|
</TextObject>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data62" Top="280.15" Width="774.9" Height="28.35">
|
<DataBand Name="Data62" Top="279.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"/>
|
<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">
|
<DataBand Name="Data63" Top="311.5" 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">
|
<TextObject Name="Text181" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_three.list]" Font="TH Sarabun New, 14pt">
|
||||||
<Formats>
|
<Formats>
|
||||||
<NumberFormat/>
|
<NumberFormat/>
|
||||||
@@ -830,9 +871,9 @@
|
|||||||
</TextObject>
|
</TextObject>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
</DataBand>
|
</DataBand>
|
||||||
<DataBand Name="Data64" Top="345.18" Width="774.9" Height="28.35">
|
<DataBand Name="Data64" Top="343.85" Width="774.9" Height="28.35">
|
||||||
<TextObject Name="Text182" Width="774.9" Height="28.35" Text="24. ผู้รับผิดชอบโครงการ" Font="TH Sarabun New, 14pt, style=Bold"/>
|
<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">
|
<DataBand Name="Data65" Top="376.2" 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">
|
<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>
|
<Formats>
|
||||||
<NumberFormat/>
|
<NumberFormat/>
|
||||||
@@ -869,12 +910,12 @@
|
|||||||
<ReportPage Name="Page3" PaperWidth="225" Watermark.Font="Arial, 60pt">
|
<ReportPage Name="Page3" PaperWidth="225" Watermark.Font="Arial, 60pt">
|
||||||
<DataBand Name="Data57" Width="774.9" Height="37.8">
|
<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"/>
|
<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">
|
<DataBand Name="Data58" Top="41.8" 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="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="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="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"/>
|
<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">
|
<DataBand Name="Data59" Top="229.35" Width="774.9" Height="47.25" DataSource="twenty_fifth_data_detail">
|
||||||
<TableObject Name="Table20" Width="774.9" Height="37.8">
|
<TableObject Name="Table20" Width="774.9" Height="37.8">
|
||||||
<TableColumn Name="Column95" Width="132.3"/>
|
<TableColumn Name="Column95" Width="132.3"/>
|
||||||
<TableColumn Name="Column96" Width="189"/>
|
<TableColumn Name="Column96" Width="189"/>
|
||||||
@@ -887,7 +928,7 @@
|
|||||||
<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"/>
|
<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>
|
</TableRow>
|
||||||
</TableObject>
|
</TableObject>
|
||||||
<DataHeaderBand Name="DataHeader2" Top="187.88" Width="774.9" Height="37.8">
|
<DataHeaderBand Name="DataHeader2" Top="187.55" Width="774.9" Height="37.8">
|
||||||
<TableObject Name="Table19" Width="774.9" Height="37.8">
|
<TableObject Name="Table19" Width="774.9" Height="37.8">
|
||||||
<TableColumn Name="Column91" Width="132.3"/>
|
<TableColumn Name="Column91" Width="132.3"/>
|
||||||
<TableColumn Name="Column92" Width="189"/>
|
<TableColumn Name="Column92" Width="189"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user