bug fixed
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-08-30 17:22:25 +07:00
parent 0d68171be0
commit f7680ffb3e
15 changed files with 204 additions and 348 deletions

View File

@@ -1,5 +1,6 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using ClosedXML.Excel;
using FastReport;
using FastReport.Export.Csv;
@@ -65,6 +66,21 @@ namespace rmutr_report.Controllers
}
}
if (project.sixteenths != null)
{
foreach (var sixteenthData in project.sixteenths)
{
var sum1 = sixteenthData.sixteenths2.Sum(d => d.salaya);
var sum2 = sixteenthData.sixteenths2.Sum(d => d.bophitphimuk);
var sum3 = sixteenthData.sixteenths2.Sum(d => d.pohchang);
var sum4 = sixteenthData.sixteenths2.Sum(d => d.klai_kangwon);
sixteenthData.salaya_total = sum1;
sixteenthData.bophitphimuk_total = sum2;
sixteenthData.pohchang_total = sum3;
sixteenthData.klai_kangwon_total = sum4;
}
}
if (project.eighteenth != null)
{
foreach (var v in project.eighteenth)
@@ -248,6 +264,21 @@ namespace rmutr_report.Controllers
}
}
if (project.sixteenths != null)
{
foreach (var sixteenthData in project.sixteenths)
{
var sum1 = sixteenthData.sixteenths2.Sum(d => d.salaya);
var sum2 = sixteenthData.sixteenths2.Sum(d => d.bophitphimuk);
var sum3 = sixteenthData.sixteenths2.Sum(d => d.pohchang);
var sum4 = sixteenthData.sixteenths2.Sum(d => d.klai_kangwon);
sixteenthData.salaya_total = sum1;
sixteenthData.bophitphimuk_total = sum2;
sixteenthData.pohchang_total = sum3;
sixteenthData.klai_kangwon_total = sum4;
}
}
if (project.eighteenth != null)
{
foreach (var v in project.eighteenth)

View File

@@ -46,6 +46,7 @@ namespace rmutr_report.Models
public int? total_board { get; set; } //ข้อ 16 ผลรวมคณะกรรมการ
public List<sixteenth_data> sixteenth { get; set; } //ข้อ 16
public List<sixteenth_data_detail> sixteenths { get; set; } //ข้อ 16 detail ตาราง
public List<seventeenth_data> seventeenth { get; set; } //ข้อ 17
public int? count_day { get; set; } //ข้อ 18
public string text3 { get; set; } //ข้อ 18
@@ -132,60 +133,65 @@ namespace rmutr_report.Models
{
public string activity_table { get; set; }
public List<sixteenth_data_details> sixteenths2 { get; set; }
public decimal? salaya_total { get; set; }
public decimal? bophitphimuk_total { get; set; }
public decimal? pohchang_total { get; set; }
public decimal? klai_kangwon_total { get; set; }
}
public class sixteenth_data_details
{
public decimal? salaya_executive { get; set; }
public decimal? bophitphimuk_executive { get; set; }
public decimal? pohchang_executive { get; set; }
public decimal? klai_kangwon_executive { get; set; }
public decimal? salaya_teacher { get; set; }
public decimal? bophitphimuk_teacher { get; set; }
public decimal? pohchang_teacher { get; set; }
public decimal? klai_kangwon_teacher { get; set; }
public decimal? salaya_officer { get; set; }
public decimal? bophitphimuk_officer { get; set; }
public decimal? pohchang_officer { get; set; }
public decimal? klai_kangwon_officer { get; set; }
public decimal? salaya_internal_student { get; set; }
public decimal? bophitphimuk_internal_student { get; set; }
public decimal? pohchang_internal_student { get; set; }
public decimal? klai_kangwon_internal_student { get; set; }
public decimal? salaya_external_student{ get; set; }
public decimal? bophitphimuk_external_student { get; set; }
public decimal? pohchang_external_student { get; set; }
public decimal? klai_kangwon_external_student { get; set; }
public decimal? salaya_person { get; set; }
public decimal? bophitphimuk_person { get; set; }
public decimal? pohchang_person{ get; set; }
public decimal? klai_kangwon_person { get; set; }
public decimal? salaya_lecturer { get; set; }
public decimal? bophitphimuk_lecturer { get; set; }
public decimal? pohchang_lecturer { get; set; }
public decimal? klai_kangwon_lecturer{ get; set; }
public string target_group { get; set; }
public decimal? salaya { get; set; }
public decimal? bophitphimuk{ get; set; }
public decimal? pohchang{ get; set; }
public decimal? klai_kangwon{ get; set; }
// public decimal? salaya_teacher { get; set; }
// public decimal? bophitphimuk_teacher { get; set; }
// public decimal? pohchang_teacher { get; set; }
// public decimal? klai_kangwon_teacher { get; set; }
// public decimal? salaya_officer { get; set; }
// public decimal? bophitphimuk_officer { get; set; }
// public decimal? pohchang_officer { get; set; }
// public decimal? klai_kangwon_officer { get; set; }
// public decimal? salaya_internal_student { get; set; }
// public decimal? bophitphimuk_internal_student { get; set; }
// public decimal? pohchang_internal_student { get; set; }
// public decimal? klai_kangwon_internal_student { get; set; }
// public decimal? salaya_external_student{ get; set; }
// public decimal? bophitphimuk_external_student { get; set; }
// public decimal? pohchang_external_student { get; set; }
// public decimal? klai_kangwon_external_student { get; set; }
// public decimal? salaya_person { get; set; }
// public decimal? bophitphimuk_person { get; set; }
// public decimal? pohchang_person{ get; set; }
// public decimal? klai_kangwon_person { get; set; }
// public decimal? salaya_lecturer { get; set; }
// public decimal? bophitphimuk_lecturer { get; set; }
// public decimal? pohchang_lecturer { get; set; }
// public decimal? klai_kangwon_lecturer{ get; set; }
public decimal? salaya_board { get; set; }
public decimal? bophitphimuk_board { get; set; }
public decimal? pohchang_board { get; set; }
public decimal? klai_kangwon_board { get; set; }
// public decimal? salaya_board { get; set; }
// public decimal? bophitphimuk_board { get; set; }
// public decimal? pohchang_board { get; set; }
// public decimal? klai_kangwon_board { get; set; }
//
// public decimal? salaya_driver { get; set; }
// public decimal? bophitphimuk_driver { get; set; }
// public decimal? pohchang_driver { get; set; }
// public decimal? klai_kangwon_driver{ get; set; }
//
// public decimal? salaya_other { get; set; }
// public decimal? bophitphimuk_other { get; set; }
// public decimal? pohchang_other { get; set; }
// public decimal? klai_kangwon_other { get; set; }
public decimal? salaya_driver { get; set; }
public decimal? bophitphimuk_driver { get; set; }
public decimal? pohchang_driver { get; set; }
public decimal? klai_kangwon_driver{ get; set; }
public decimal? salaya_other { get; set; }
public decimal? bophitphimuk_other { get; set; }
public decimal? pohchang_other { get; set; }
public decimal? klai_kangwon_other { get; set; }
public decimal? salaya_total { get; set; }
public decimal? bophitphimuk_total { get; set; }
public decimal? pohchang_total { get; set; }
public decimal? klai_kangwon_total { get; set; }
// public decimal? salaya_total { get; set; }
// public decimal? bophitphimuk_total { get; set; }
// public decimal? pohchang_total { get; set; }
// public decimal? klai_kangwon_total { get; set; }
}
public class seventeenth_data

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
16932956257079832
16933908491121003

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/28/2023 13:34:46" ReportInfo.CreatorVersion="2021.1.0.0">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/30/2023 17:20:14" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="project_principle_rationale" ReferenceName="project_principle_rationale" DataType="null" Enabled="true">
<Column Name="faculty" DataType="System.String"/>
@@ -68,51 +68,16 @@
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="sixteenths" DataType="null" Enabled="true">
<Column Name="activity_table" DataType="System.String"/>
<BusinessObjectDataSource Name="sixteenths2" DataType="null" Enabled="true">
<Column Name="salaya_executive" DataType="System.Decimal"/>
<Column Name="bophitphimuk_executive" DataType="System.Decimal"/>
<Column Name="pohchang_executive" DataType="System.Decimal"/>
<Column Name="klai_kangwon_executive" DataType="System.Decimal"/>
<Column Name="salaya_teacher" DataType="System.Decimal"/>
<Column Name="bophitphimuk_teacher" DataType="System.Decimal"/>
<Column Name="pohchang_teacher" DataType="System.Decimal"/>
<Column Name="klai_kangwon_teacher" DataType="System.Decimal"/>
<Column Name="salaya_officer" DataType="System.Decimal"/>
<Column Name="bophitphimuk_officer" DataType="System.Decimal"/>
<Column Name="pohchang_officer" DataType="System.Decimal"/>
<Column Name="klai_kangwon_officer" DataType="System.Decimal"/>
<Column Name="salaya_internal_student" DataType="System.Decimal"/>
<Column Name="bophitphimuk_internal_student" DataType="System.Decimal"/>
<Column Name="pohchang_internal_student" DataType="System.Decimal"/>
<Column Name="klai_kangwon_internal_student" DataType="System.Decimal"/>
<Column Name="salaya_external_student" DataType="System.Decimal"/>
<Column Name="bophitphimuk_external_student" DataType="System.Decimal"/>
<Column Name="pohchang_external_student" DataType="System.Decimal"/>
<Column Name="klai_kangwon_external_student" DataType="System.Decimal"/>
<Column Name="salaya_person" DataType="System.Decimal"/>
<Column Name="bophitphimuk_person" DataType="System.Decimal"/>
<Column Name="pohchang_person" DataType="System.Decimal"/>
<Column Name="klai_kangwon_person" DataType="System.Decimal"/>
<Column Name="salaya_lecturer" DataType="System.Decimal"/>
<Column Name="bophitphimuk_lecturer" DataType="System.Decimal"/>
<Column Name="pohchang_lecturer" DataType="System.Decimal"/>
<Column Name="klai_kangwon_lecturer" DataType="System.Decimal"/>
<Column Name="salaya_board" DataType="System.Decimal"/>
<Column Name="bophitphimuk_board" DataType="System.Decimal"/>
<Column Name="pohchang_board" DataType="System.Decimal"/>
<Column Name="klai_kangwon_board" DataType="System.Decimal"/>
<Column Name="salaya_driver" DataType="System.Decimal"/>
<Column Name="bophitphimuk_driver" DataType="System.Decimal"/>
<Column Name="pohchang_driver" DataType="System.Decimal"/>
<Column Name="klai_kangwon_driver" DataType="System.Decimal"/>
<Column Name="salaya_other" DataType="System.Decimal"/>
<Column Name="bophitphimuk_other" DataType="System.Decimal"/>
<Column Name="pohchang_other" DataType="System.Decimal"/>
<Column Name="klai_kangwon_other" DataType="System.Decimal"/>
<Column Name="salaya_total" DataType="System.Decimal"/>
<Column Name="bophitphimuk_total" DataType="System.Decimal"/>
<Column Name="pohchang_total" DataType="System.Decimal"/>
<Column Name="klai_kangwon_total" DataType="System.Decimal"/>
<BusinessObjectDataSource Name="sixteenths2" DataType="null" Enabled="true">
<Column Name="target_group" DataType="System.String"/>
<Column Name="salaya" DataType="System.Decimal"/>
<Column Name="bophitphimuk" DataType="System.Decimal"/>
<Column Name="pohchang" DataType="System.Decimal"/>
<Column Name="klai_kangwon" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="seventeenth" DataType="null" Enabled="true">
@@ -466,102 +431,48 @@
<TableCell Name="Cell5" Border.Lines="All" Text="วังไกลกังวล" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data45" Top="2241.13" Width="774.9" Height="349.65" DataSource="sixteenths2">
<TextObject Name="Text110" Left="28.35" Top="311.85" Width="718.2" Height="37.8" Text="* หมายเหตุ ทั้งนี้วิทยากร,คณะกรรมการ, พนักงานขับรถ ไม่นับรวมเป็นผู้เข้าร่วมโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableObject Name="Table2" Left="28.35" Width="718.2" Height="311.85">
<DataBand Name="Data45" Top="2241.13" Width="774.9" Height="28.35" DataSource="sixteenths2">
<TableObject Name="Table2" Left="28.35" Width="718.2" Height="28.35">
<TableColumn Name="Column6" Width="151.2"/>
<TableColumn Name="Column7" Width="132.3"/>
<TableColumn Name="Column8" Width="141.75"/>
<TableColumn Name="Column9" Width="151.2"/>
<TableColumn Name="Column10" Width="141.75"/>
<TableRow Name="Row2" Height="28.35">
<TableCell Name="Cell6" Border.Lines="All" Text="ผู้บริหาร" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell7" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_executive]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell8" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_executive]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell9" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_executive]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell10" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_executive]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row3" Height="28.35">
<TableCell Name="Cell11" Border.Lines="All" Text="อาจารย์" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell12" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell13" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell14" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell15" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row4" Height="28.35">
<TableCell Name="Cell16" Border.Lines="All" Text="เจ้าหน้าที่" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell17" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell18" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell19" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell20" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row5" Height="28.35">
<TableCell Name="Cell21" Border.Lines="All" Text="นักศึกษาภายใน" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell22" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell23" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell24" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell25" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row6" Height="28.35">
<TableCell Name="Cell26" Border.Lines="All" Text="นักศึกษาภายนอก" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell27" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell28" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell29" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell30" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row7" Height="28.35">
<TableCell Name="Cell31" Border.Lines="All" Text="บุคคลทั่วไป" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell32" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell33" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell34" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell35" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row8" Height="28.35">
<TableCell Name="Cell36" Border.Lines="All" Text="**วิทยากร" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell37" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell38" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell39" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell40" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row9" Height="28.35">
<TableCell Name="Cell41" Border.Lines="All" Text="**คณะกรรมการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell42" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell43" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell44" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell45" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row10" Height="28.35">
<TableCell Name="Cell46" Border.Lines="All" Text="**พนักงานขับรถ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell47" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell48" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell49" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell50" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row11" Height="28.35">
<TableCell Name="Cell51" Border.Lines="All" Text="อื่นๆ ระบุ.............." VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell52" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell53" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell54" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell55" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row12" Height="28.35">
<TableCell Name="Cell56" Border.Lines="All" Text="รวม" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell57" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell58" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell59" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell60" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell6" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.target_group]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell7" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell8" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell9" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell10" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
<DataFooterBand Name="DataFooter2" Top="2275.83" Width="774.9" Height="66.15">
<TextObject Name="Text110" Left="28.35" Top="28.35" Width="718.2" Height="37.8" Text="* หมายเหตุ ทั้งนี้วิทยากร,คณะกรรมการ, พนักงานขับรถ ไม่นับรวมเป็นผู้เข้าร่วมโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableObject Name="Table23" Left="28.35" Width="718.2" Height="28.35">
<TableColumn Name="Column125" Width="151.2"/>
<TableColumn Name="Column126" Width="132.3"/>
<TableColumn Name="Column127" Width="141.75"/>
<TableColumn Name="Column128" Width="151.2"/>
<TableColumn Name="Column129" Width="141.75"/>
<TableRow Name="Row33" Height="28.35">
<TableCell Name="Cell175" Border.Lines="All" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell176" Border.Lines="All" Text="[project_principle_rationale.sixteenths.salaya_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell177" Border.Lines="All" Text="[project_principle_rationale.sixteenths.bophitphimuk_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell178" Border.Lines="All" Text="[project_principle_rationale.sixteenths.pohchang_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell179" Border.Lines="All" Text="[project_principle_rationale.sixteenths.klai_kangwon_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
</DataFooterBand>
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data26" Top="2597.13" Width="774.9" Height="28.35">
<DataBand Name="Data26" Top="2348.32" Width="774.9" Height="28.35">
<TextObject Name="Text111" Width="765.45" Height="28.35" Text="17. สถานที่ดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data27" Top="2631.82" Width="774.9" Height="28.35" DataSource="seventeenth">
<DataBand Name="Data27" Top="2383.02" Width="774.9" Height="28.35" DataSource="seventeenth">
<TextObject Name="Text112" Left="28.35" Width="718.2" Height="28.35" Text="[project_principle_rationale.seventeenth.activity]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data28" Top="2666.52" Width="774.9" Height="28.35" DataSource="seventeenths">
<DataBand Name="Data28" Top="2417.72" Width="774.9" Height="28.35" DataSource="seventeenths">
<TextObject Name="Text138" Left="28.35" Width="718.2" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.the_time]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data29" Top="2701.22" Width="774.9" Height="56.7" DataSource="seventeenths2">
<DataBand Name="Data29" Top="2452.42" Width="774.9" Height="56.7" DataSource="seventeenths2">
<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="Text201" Left="28.35" Top="28.35" Width="217.35" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.seventeenths2.internal_external2]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
@@ -572,11 +483,11 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data30" Top="2764.27" Width="774.9" Height="28.35">
<DataBand Name="Data30" Top="2515.47" Width="774.9" Height="28.35">
<TextObject Name="Text116" Width="756" Height="28.35" Text="18. ระยะเวลาในการดำเนินงาน [project_principle_rationale.text3]" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data32" Top="2798.97" Width="774.9" Height="28.35" DataSource="eighteenth">
<DataBand Name="Data32" Top="2550.17" Width="774.9" Height="28.35" DataSource="eighteenth">
<TextObject Name="Text143" Width="765.45" Height="28.35" Text="[project_principle_rationale.eighteenth.activity]" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data33" Top="2833.67" Width="774.9" Height="85.05" DataSource="eighteenths">
<DataBand Name="Data33" Top="2584.87" Width="774.9" Height="85.05" DataSource="eighteenths">
<TextObject Name="Text118" Left="47.25" Top="28.35" Width="132.3" Height="28.35" Text="วันที่เริ่มจัดทำโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text119" Left="179.55" Top="28.35" Width="217.35" Height="28.35" Text="[project_principle_rationale.eighteenth.eighteenths.start_date]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text120" Left="47.25" Top="56.7" Width="132.3" Height="28.35" Text="วันที่เสร็จสิ้นโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
@@ -585,11 +496,11 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data48" Top="2925.07" Width="774.9" Height="28.35">
<DataBand Name="Data48" Top="2676.27" Width="774.9" Height="28.35" DataSource="nineteenth">
<TextObject Name="Text122" Width="378" Height="28.35" Text="19. งบประมาณ" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text123" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.budget_total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data49" Top="2959.77" Width="774.9" Height="85.05" DataSource="nineteenth1">
<DataBand Name="Data49" Top="2710.97" Width="774.9" Height="85.05" DataSource="nineteenth1">
<TextObject Name="Text190" Left="47.25" Top="28.35" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.text2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text191" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.total_compensation]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text192" Left="47.25" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.text1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH Sarabun New, 14pt, style=Bold"/>
@@ -597,14 +508,14 @@
<TextObject Name="Text194" Left="47.25" Top="56.7" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.text3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text195" Left="396.9" Top="56.7" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth1.total_material]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data34" Top="3051.17" Width="774.9" DataSource="nineteenth">
<DataBand Name="Data67" Top="3057.52" Width="774.9" Height="37.8" DataSource="nineteenth_data_header">
<DataBand Name="Data34" Top="2802.37" Width="774.9" DataSource="nineteenth">
<DataBand Name="Data67" Top="2808.72" Width="774.9" Height="37.8" DataSource="nineteenth_data_header">
<TextObject Name="Text124" Top="18.9" Width="330.75" Height="18.9" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.text4]" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text125" Left="396.9" Top="18.9" Width="330.75" Height="18.9" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.budget_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text145" Width="774.9" Height="28.35" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.activity]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data36" Top="3183.62" Width="774.9" Height="28.35" DataSource="nineteenths_compensation">
<DataBand Name="Data36" Top="2934.82" Width="774.9" Height="28.35" DataSource="nineteenths_compensation">
<TextObject Name="Text126" Left="47.25" Width="680.4" Height="28.35" Border.Lines="Left, Right, Top" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_compensation.header_name]" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataHeaderBand Name="DataHeader1" Top="3101.67" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader1" Top="2852.87" Width="774.9" Height="75.6">
<TextObject Name="Text146" Left="47.25" Width="330.75" Height="28.35" Text="ค่าตอบแทน" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text147" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.compensation]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table3" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
@@ -628,7 +539,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data37" Top="3218.32" Width="774.9" Height="27.23" DataSource="nineteenths2_compensation">
<DataBand Name="Data37" Top="2969.51" Width="774.9" Height="27.23" DataSource="nineteenths2_compensation">
<TableObject Name="Table5" Left="47.25" Top="-1.12" Width="680.4" Height="28.35">
<TableColumn Name="Column17" Width="226.8"/>
<TableColumn Name="Column18" Width="103.95"/>
@@ -643,14 +554,14 @@
<TableCell Name="Cell71" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_compensation.nineteenths2_compensation.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
<DataFooterBand Name="DataFooter1" Top="3251.89" Width="774.9" Height="28.35">
<DataFooterBand Name="DataFooter1" Top="3003.09" Width="774.9" Height="28.35">
<TextObject Name="Text127" Left="47.25" Width="689.85" Height="28.35" Text="**หมายเหตุ : การบรรยายสามารถใช้วิทยากรได้เพียง 1 คนเท่านั้น" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataFooterBand>
</DataBand>
</DataBand>
<DataBand Name="Data68" Top="3368.54" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data68" Top="3119.74" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<TextObject Name="Text148" Left="47.25" Width="680.4" Height="28.35" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.header_name1]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader3" Top="3286.59" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader3" Top="3037.79" Width="774.9" Height="75.6">
<TextObject Name="Text128" Left="47.25" Width="330.75" Height="28.35" Text="ค่าใช้สอย" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text129" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.expenses]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table6" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
@@ -674,7 +585,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data38" Top="3403.24" Width="774.9" Height="28.35" DataSource="nineteenths_expenses1">
<DataBand Name="Data38" Top="3154.44" Width="774.9" Height="28.35" DataSource="nineteenths_expenses1">
<TableObject Name="Table8" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column28" Width="226.8"/>
<TableColumn Name="Column29" Width="103.95"/>
@@ -691,9 +602,9 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data39" Top="3491.54" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data39" Top="3242.74" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<TextObject Name="Text150" Left="47.25" Width="680.4" Height="28.35" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.header_name2]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader4" Top="3437.94" Width="774.9" Height="47.25">
<DataHeaderBand Name="DataHeader4" Top="3189.14" Width="774.9" Height="47.25">
<TableObject Name="Table9" Left="47.25" Width="680.4" Height="47.25">
<TableColumn Name="Column33" Width="226.8"/>
<TableColumn Name="Column34" Width="311.85"/>
@@ -715,7 +626,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data40" Top="3526.24" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
<DataBand Name="Data40" Top="3277.44" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
<TableObject Name="Table11" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column39" Width="226.8"/>
<TableColumn Name="Column40" Width="103.95"/>
@@ -732,9 +643,9 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data41" Top="3614.54" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
<DataBand Name="Data41" Top="3365.74" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
<TextObject Name="Text151" Left="47.25" Width="680.4" Height="28.35" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses3.header_name3]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader5" Top="3560.94" Width="774.9" Height="47.25">
<DataHeaderBand Name="DataHeader5" Top="3312.14" Width="774.9" Height="47.25">
<TableObject Name="Table12" Left="47.25" Width="680.4" Height="47.25">
<TableColumn Name="Column44" Width="226.8"/>
<TableColumn Name="Column45" Width="311.85"/>
@@ -756,7 +667,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data46" Top="3649.24" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3_details">
<DataBand Name="Data46" Top="3400.44" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3_details">
<TableObject Name="Table14" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column50" Width="226.8"/>
<TableColumn Name="Column51" Width="103.95"/>
@@ -773,7 +684,7 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data47" Top="3765.89" Width="774.9" Height="28.35" DataSource="nineteenths_material">
<DataBand Name="Data47" Top="3517.08" Width="774.9" Height="28.35" DataSource="nineteenths_material">
<TableObject Name="Table16" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column60" Width="198.45"/>
<TableColumn Name="Column61" Width="132.3"/>
@@ -788,7 +699,7 @@
<TableCell Name="Cell114" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_material.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader6" Top="3683.94" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader6" Top="3435.14" 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">

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/28/2023 13:38:28" ReportInfo.CreatorVersion="2021.1.0.0">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/30/2023 17:20:03" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="project_principle_rationale" ReferenceName="project_principle_rationale" DataType="null" Enabled="true">
<Column Name="faculty" DataType="System.String"/>
@@ -63,56 +63,18 @@
<Column Name="total_board" DataType="System.Int32"/>
<Column Name="text1" DataType="System.String"/>
<Column Name="text2" DataType="System.String"/>
<BusinessObjectDataSource Name="sixteenth" DataType="null" Enabled="true">
<Column Name="activity" DataType="System.String"/>
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="sixteenths" DataType="null" Enabled="true">
<Column Name="activity_table" DataType="System.String"/>
<BusinessObjectDataSource Name="sixteenths2" DataType="null" Enabled="true">
<Column Name="salaya_executive" DataType="System.Decimal"/>
<Column Name="bophitphimuk_executive" DataType="System.Decimal"/>
<Column Name="pohchang_executive" DataType="System.Decimal"/>
<Column Name="klai_kangwon_executive" DataType="System.Decimal"/>
<Column Name="salaya_teacher" DataType="System.Decimal"/>
<Column Name="bophitphimuk_teacher" DataType="System.Decimal"/>
<Column Name="pohchang_teacher" DataType="System.Decimal"/>
<Column Name="klai_kangwon_teacher" DataType="System.Decimal"/>
<Column Name="salaya_officer" DataType="System.Decimal"/>
<Column Name="bophitphimuk_officer" DataType="System.Decimal"/>
<Column Name="pohchang_officer" DataType="System.Decimal"/>
<Column Name="klai_kangwon_officer" DataType="System.Decimal"/>
<Column Name="salaya_internal_student" DataType="System.Decimal"/>
<Column Name="bophitphimuk_internal_student" DataType="System.Decimal"/>
<Column Name="pohchang_internal_student" DataType="System.Decimal"/>
<Column Name="klai_kangwon_internal_student" DataType="System.Decimal"/>
<Column Name="salaya_external_student" DataType="System.Decimal"/>
<Column Name="bophitphimuk_external_student" DataType="System.Decimal"/>
<Column Name="pohchang_external_student" DataType="System.Decimal"/>
<Column Name="klai_kangwon_external_student" DataType="System.Decimal"/>
<Column Name="salaya_person" DataType="System.Decimal"/>
<Column Name="bophitphimuk_person" DataType="System.Decimal"/>
<Column Name="pohchang_person" DataType="System.Decimal"/>
<Column Name="klai_kangwon_person" DataType="System.Decimal"/>
<Column Name="salaya_lecturer" DataType="System.Decimal"/>
<Column Name="bophitphimuk_lecturer" DataType="System.Decimal"/>
<Column Name="pohchang_lecturer" DataType="System.Decimal"/>
<Column Name="klai_kangwon_lecturer" DataType="System.Decimal"/>
<Column Name="salaya_board" DataType="System.Decimal"/>
<Column Name="bophitphimuk_board" DataType="System.Decimal"/>
<Column Name="pohchang_board" DataType="System.Decimal"/>
<Column Name="klai_kangwon_board" DataType="System.Decimal"/>
<Column Name="salaya_driver" DataType="System.Decimal"/>
<Column Name="bophitphimuk_driver" DataType="System.Decimal"/>
<Column Name="pohchang_driver" DataType="System.Decimal"/>
<Column Name="klai_kangwon_driver" DataType="System.Decimal"/>
<Column Name="salaya_other" DataType="System.Decimal"/>
<Column Name="bophitphimuk_other" DataType="System.Decimal"/>
<Column Name="pohchang_other" DataType="System.Decimal"/>
<Column Name="klai_kangwon_other" DataType="System.Decimal"/>
<Column Name="salaya_total" DataType="System.Decimal"/>
<Column Name="bophitphimuk_total" DataType="System.Decimal"/>
<Column Name="pohchang_total" DataType="System.Decimal"/>
<Column Name="klai_kangwon_total" DataType="System.Decimal"/>
<BusinessObjectDataSource Name="sixteenths2" DataType="null" Enabled="true">
<Column Name="target_group" DataType="System.String"/>
<Column Name="salaya" DataType="System.Decimal"/>
<Column Name="bophitphimuk" DataType="System.Decimal"/>
<Column Name="pohchang" DataType="System.Decimal"/>
<Column Name="klai_kangwon" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
<BusinessObjectDataSource Name="seventeenth" DataType="null" Enabled="true">
@@ -423,7 +385,7 @@
</DataBand>
<DataBand Name="Data24" Top="2042.53" Width="774.9" Height="28.35">
<TextObject Name="Text109" Width="765.45" Height="28.35" Text="16. กลุ่มเป้าหมายผู้ร่วมโครงการทั้งสิ้น จำนวน [project_principle_rationale.count_activity] คน" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data25" Top="2077.23" Width="774.9" Height="28.35" DataSource="sixteenths">
<DataBand Name="Data25" Top="2077.23" Width="774.9" Height="28.35">
<TableObject Name="Table1" Left="28.35" Width="718.2" Height="28.35">
<TableColumn Name="Column1" Width="151.2"/>
<TableColumn Name="Column2" Width="132.3"/>
@@ -438,102 +400,48 @@
<TableCell Name="Cell5" Border.Lines="All" Text="วังไกลกังวล" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data45" Top="2111.93" Width="774.9" Height="349.65" DataSource="sixteenths2">
<TextObject Name="Text110" Left="28.35" Top="311.85" Width="718.2" Height="37.8" Text="* หมายเหตุ ทั้งนี้วิทยากร,คณะกรรมการ, พนักงานขับรถ ไม่นับรวมเป็นผู้เข้าร่วมโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableObject Name="Table2" Left="28.35" Width="718.2" Height="311.85">
<DataBand Name="Data45" Top="2111.93" Width="774.9" Height="28.35" DataSource="sixteenths2">
<TableObject Name="Table2" Left="28.35" Width="718.2" Height="28.35">
<TableColumn Name="Column6" Width="151.2"/>
<TableColumn Name="Column7" Width="132.3"/>
<TableColumn Name="Column8" Width="141.75"/>
<TableColumn Name="Column9" Width="151.2"/>
<TableColumn Name="Column10" Width="141.75"/>
<TableRow Name="Row2" Height="28.35">
<TableCell Name="Cell6" Border.Lines="All" Text="ผู้บริหาร" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell7" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_executive]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell8" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_executive]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell9" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_executive]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell10" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_executive]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row3" Height="28.35">
<TableCell Name="Cell11" Border.Lines="All" Text="อาจารย์" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell12" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell13" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell14" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell15" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_teacher]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row4" Height="28.35">
<TableCell Name="Cell16" Border.Lines="All" Text="เจ้าหน้าที่" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell17" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell18" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell19" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell20" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_officer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row5" Height="28.35">
<TableCell Name="Cell21" Border.Lines="All" Text="นักศึกษาภายใน" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell22" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell23" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell24" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell25" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_internal_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row6" Height="28.35">
<TableCell Name="Cell26" Border.Lines="All" Text="นักศึกษาภายนอก" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell27" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell28" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell29" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell30" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_external_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row7" Height="28.35">
<TableCell Name="Cell31" Border.Lines="All" Text="บุคคลทั่วไป" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell32" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell33" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell34" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell35" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row8" Height="28.35">
<TableCell Name="Cell36" Border.Lines="All" Text="**วิทยากร" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell37" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell38" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell39" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell40" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_lecturer]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row9" Height="28.35">
<TableCell Name="Cell41" Border.Lines="All" Text="**คณะกรรมการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell42" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell43" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell44" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell45" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_board]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row10" Height="28.35">
<TableCell Name="Cell46" Border.Lines="All" Text="**พนักงานขับรถ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell47" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell48" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell49" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell50" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_driver]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row11" Height="28.35">
<TableCell Name="Cell51" Border.Lines="All" Text="อื่นๆ ระบุ.............." VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell52" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell53" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell54" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell55" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_other]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
<TableRow Name="Row12" Height="28.35">
<TableCell Name="Cell56" Border.Lines="All" Text="รวม" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell57" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell58" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell59" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell60" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon_total]" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell6" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.target_group]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell7" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.salaya]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell8" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.bophitphimuk]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell9" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.pohchang]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell10" Border.Lines="All" Text="[project_principle_rationale.sixteenths.sixteenths2.klai_kangwon]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
<DataFooterBand Name="DataFooter2" Top="2146.63" Width="774.9" Height="66.15">
<TextObject Name="Text110" Left="28.35" Top="28.35" Width="718.2" Height="37.8" Text="* หมายเหตุ ทั้งนี้วิทยากร,คณะกรรมการ, พนักงานขับรถ ไม่นับรวมเป็นผู้เข้าร่วมโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableObject Name="Table23" Left="28.35" Width="718.2" Height="28.35">
<TableColumn Name="Column125" Width="151.2"/>
<TableColumn Name="Column126" Width="132.3"/>
<TableColumn Name="Column127" Width="141.75"/>
<TableColumn Name="Column128" Width="151.2"/>
<TableColumn Name="Column129" Width="141.75"/>
<TableRow Name="Row33" Height="28.35">
<TableCell Name="Cell175" Border.Lines="All" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell176" Border.Lines="All" Text="[project_principle_rationale.sixteenths.salaya_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell177" Border.Lines="All" Text="[project_principle_rationale.sixteenths.bophitphimuk_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell178" Border.Lines="All" Text="[project_principle_rationale.sixteenths.pohchang_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell179" Border.Lines="All" Text="[project_principle_rationale.sixteenths.klai_kangwon_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
</DataFooterBand>
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data26" Top="2467.93" Width="774.9" Height="28.35">
<DataBand Name="Data26" Top="2219.13" Width="774.9" Height="28.35">
<TextObject Name="Text111" Width="765.45" Height="28.35" Text="17. สถานที่ดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data27" Top="2502.63" Width="774.9" Height="28.35" DataSource="seventeenth">
<DataBand Name="Data27" Top="2253.82" Width="774.9" Height="28.35" DataSource="seventeenth">
<TextObject Name="Text112" Left="28.35" Width="718.2" Height="28.35" Text="[project_principle_rationale.seventeenth.activity]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data28" Top="2537.32" Width="774.9" Height="28.35" DataSource="seventeenths">
<DataBand Name="Data28" Top="2288.52" Width="774.9" Height="28.35" DataSource="seventeenths">
<TextObject Name="Text138" Left="28.35" Width="718.2" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.the_time]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data29" Top="2572.02" Width="774.9" Height="56.7" DataSource="seventeenths2">
<DataBand Name="Data29" Top="2323.22" Width="774.9" Height="56.7" DataSource="seventeenths2">
<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="Text201" Left="28.35" Top="28.35" Width="217.35" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.seventeenths2.internal_external2]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
@@ -544,10 +452,10 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data30" Top="2635.07" Width="774.9" Height="28.35">
<DataBand Name="Data30" Top="2386.27" Width="774.9" Height="28.35">
<TextObject Name="Text116" Width="756" Height="28.35" Text="18. ระยะเวลาในการดำเนินงาน [project_principle_rationale.text3]" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataBand Name="Data32" Top="2669.77" Width="774.9" DataSource="eighteenth">
<DataBand Name="Data33" Top="2676.12" Width="774.9" Height="85.05" DataSource="eighteenths">
<DataBand Name="Data32" Top="2420.97" Width="774.9" DataSource="eighteenth">
<DataBand Name="Data33" Top="2427.32" Width="774.9" Height="85.05" DataSource="eighteenths">
<TextObject Name="Text118" Left="47.25" Top="28.35" Width="132.3" Height="28.35" Text="วันที่เริ่มจัดทำโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text119" Left="179.55" Top="28.35" Width="217.35" Height="28.35" Text="[project_principle_rationale.eighteenth.eighteenths.start_date]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TextObject Name="Text120" Left="47.25" Top="56.7" Width="132.3" Height="28.35" Text="วันที่เสร็จสิ้นโครงการ" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
@@ -556,15 +464,15 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data48" Top="2767.52" Width="774.9" Height="28.35">
<DataBand Name="Data48" Top="2518.72" Width="774.9" Height="28.35" DataSource="nineteenth">
<TextObject Name="Text122" Width="378" Height="28.35" Text="19. งบประมาณ" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text123" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.budget_total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data34" Top="2802.22" Width="774.9" DataSource="nineteenth">
<DataBand Name="Data67" Top="2808.57" Width="774.9" DataSource="nineteenth_data_header">
<DataBand Name="Data36" Top="2896.87" Width="774.9" Height="28.35" DataSource="nineteenths_compensation">
<DataBand Name="Data34" Top="2553.42" Width="774.9" DataSource="nineteenth">
<DataBand Name="Data67" Top="2559.77" Width="774.9" DataSource="nineteenth_data_header">
<DataBand Name="Data36" Top="2648.07" Width="774.9" Height="28.35" DataSource="nineteenths_compensation">
<TextObject Name="Text126" Left="47.25" Width="680.4" Height="28.35" Border.Lines="Left, Right, Top" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_compensation.header_name]" Font="TH Sarabun New, 14pt, style=Bold"/>
<DataHeaderBand Name="DataHeader1" Top="2814.92" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader1" Top="2566.12" Width="774.9" Height="75.6">
<TextObject Name="Text146" Left="47.25" Width="330.75" Height="28.35" Text="ค่าตอบแทน" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text147" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.compensation]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table3" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
@@ -588,7 +496,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data37" Top="2931.57" Width="774.9" Height="27.23" DataSource="nineteenths2_compensation">
<DataBand Name="Data37" Top="2682.77" Width="774.9" Height="27.23" DataSource="nineteenths2_compensation">
<TableObject Name="Table5" Left="47.25" Top="-1.12" Width="680.4" Height="28.35">
<TableColumn Name="Column17" Width="226.8"/>
<TableColumn Name="Column18" Width="103.95"/>
@@ -603,14 +511,14 @@
<TableCell Name="Cell71" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_compensation.nineteenths2_compensation.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
<DataFooterBand Name="DataFooter1" Top="2965.15" Width="774.9" Height="28.35">
<DataFooterBand Name="DataFooter1" Top="2716.34" Width="774.9" Height="28.35">
<TextObject Name="Text127" Left="47.25" Width="689.85" Height="28.35" Text="**หมายเหตุ : การบรรยายสามารถใช้วิทยากรได้เพียง 1 คนเท่านั้น" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</DataFooterBand>
</DataBand>
</DataBand>
<DataBand Name="Data68" Top="3081.79" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data68" Top="2832.99" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<TextObject Name="Text148" Left="47.25" Width="680.4" Height="28.35" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.header_name1]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader3" Top="2999.84" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader3" Top="2751.04" Width="774.9" Height="75.6">
<TextObject Name="Text128" Left="47.25" Width="330.75" Height="28.35" Text="ค่าใช้สอย" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text129" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.expenses]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table6" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
@@ -634,7 +542,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data38" Top="3116.49" Width="774.9" Height="28.35" DataSource="nineteenths_expenses1">
<DataBand Name="Data38" Top="2867.69" Width="774.9" Height="28.35" DataSource="nineteenths_expenses1">
<TableObject Name="Table8" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column28" Width="226.8"/>
<TableColumn Name="Column29" Width="103.95"/>
@@ -651,9 +559,9 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data39" Top="3204.79" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data39" Top="2955.99" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<TextObject Name="Text150" Left="47.25" Width="680.4" Height="28.35" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.header_name2]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader4" Top="3151.19" Width="774.9" Height="47.25">
<DataHeaderBand Name="DataHeader4" Top="2902.39" Width="774.9" Height="47.25">
<TableObject Name="Table9" Left="47.25" Width="680.4" Height="47.25">
<TableColumn Name="Column33" Width="226.8"/>
<TableColumn Name="Column34" Width="311.85"/>
@@ -675,7 +583,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data40" Top="3239.49" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
<DataBand Name="Data40" Top="2990.69" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
<TableObject Name="Table11" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column39" Width="226.8"/>
<TableColumn Name="Column40" Width="103.95"/>
@@ -692,9 +600,9 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data41" Top="3327.79" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
<DataBand Name="Data41" Top="3078.99" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
<TextObject Name="Text151" Left="47.25" Width="680.4" Height="28.35" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_expenses.nineteenths_expenses3.header_name3]" Font="TH Sarabun New, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader5" Top="3274.19" Width="774.9" Height="47.25">
<DataHeaderBand Name="DataHeader5" Top="3025.39" Width="774.9" Height="47.25">
<TableObject Name="Table12" Left="47.25" Width="680.4" Height="47.25">
<TableColumn Name="Column44" Width="226.8"/>
<TableColumn Name="Column45" Width="311.85"/>
@@ -716,7 +624,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data46" Top="3362.49" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3_details">
<DataBand Name="Data46" Top="3113.69" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3_details">
<TableObject Name="Table14" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column50" Width="226.8"/>
<TableColumn Name="Column51" Width="103.95"/>
@@ -733,7 +641,7 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data47" Top="3479.14" Width="774.9" Height="28.35" DataSource="nineteenths_material">
<DataBand Name="Data47" Top="3230.34" Width="774.9" Height="28.35" DataSource="nineteenths_material">
<TableObject Name="Table16" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column60" Width="198.45"/>
<TableColumn Name="Column61" Width="132.3"/>
@@ -748,7 +656,7 @@
<TableCell Name="Cell114" Border.Lines="All" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.nineteenths_material.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader6" Top="3397.19" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader6" Top="3148.39" 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">