This commit is contained in:
@@ -27,164 +27,216 @@ namespace rmutr_report.Controllers
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetProjectReport([FromRoute] string type, [FromBody] project_principle_rationale project)
|
||||
{
|
||||
var total = project.activity.Count;
|
||||
if (project.activity != null)
|
||||
if (project != null)
|
||||
{
|
||||
foreach (var v in project.activity)
|
||||
var total = project.activity.Count;
|
||||
if (project.activity != null)
|
||||
{
|
||||
if (v.activity != null)
|
||||
foreach (var v in project.activity)
|
||||
{
|
||||
//var total = project.activity.Select(r => r.count).Sum(t => t.Value);
|
||||
project.together_with = "ประกอบด้วยกิจกรรมหรือโครงการย่อย " + total + " โครงการดังนี้คือ";
|
||||
}
|
||||
else
|
||||
{
|
||||
project.together_with = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (project.eighth != null)
|
||||
{
|
||||
foreach (var v in project.eighth)
|
||||
{
|
||||
string na = "ประเด็นยุทธศาสตร์ที่ ";
|
||||
v.strategic_issues = na + v.strategic_issues;
|
||||
string na2 = "กลยุทธ์ที่ ";
|
||||
v.measure = na2 + v.measure;
|
||||
}
|
||||
}
|
||||
|
||||
if (project.fourteenth != null)
|
||||
{
|
||||
foreach (var vv in project.fourteenth)
|
||||
{
|
||||
// string na = "องค์ประกอบที่ " ;
|
||||
// vv.component = na + vv.component;
|
||||
string na2 = "ตัวบ่งชี้ที่ ";
|
||||
vv.indicator = na2 + vv.indicator;
|
||||
}
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
foreach (var vv in v.eighteenths)
|
||||
{
|
||||
string na = "ครั้งที่ ";
|
||||
vv.the_time = na + vv.the_time;
|
||||
string na2 = " จำนวน ";
|
||||
vv.count_day = na2 + vv.count_day + " วัน";
|
||||
if (project.count_day != null)
|
||||
if (v.activity != null)
|
||||
{
|
||||
project.text3 = "จำนวน " + project.count_day + " วัน";
|
||||
//var total = project.activity.Select(r => r.count).Sum(t => t.Value);
|
||||
project.together_with = "ประกอบด้วยกิจกรรมหรือโครงการย่อย " + total + " โครงการดังนี้คือ";
|
||||
}
|
||||
else
|
||||
{
|
||||
project.together_with = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (project.total_target != null)
|
||||
{
|
||||
project.text1 = "ผลรวมกลุ่มเป้าหมาย " + project.total_target;
|
||||
}
|
||||
|
||||
if (project.total_board != null)
|
||||
{
|
||||
project.text2 = "ผลรวมคณะกรรมการ " + project.total_board;
|
||||
}
|
||||
|
||||
if (project.twenty_one != null)
|
||||
{
|
||||
// foreach (var vv in project.twenty_one)
|
||||
// {
|
||||
// if (vv.activity != null || vv.activity!= "")
|
||||
// {
|
||||
// vv.activity = vv.activity;
|
||||
// }
|
||||
// if (vv.clause1 != null || vv.clause1!= "")
|
||||
// {
|
||||
// vv.clause1 = vv.clause1;
|
||||
// }
|
||||
// if (vv.clause2 != null || vv.clause2!= "")
|
||||
// {
|
||||
// vv.clause2 = vv.clause2;
|
||||
// }
|
||||
// if (vv.clause3 != null || vv.clause3!= "")
|
||||
// {
|
||||
// vv.clause3 = vv.clause3;
|
||||
// }
|
||||
// if (vv.clause4 != null || vv.clause4!= "")
|
||||
// {
|
||||
// vv.clause4 = vv.clause4;
|
||||
// }
|
||||
// if (vv.count_unit != null || vv.count_unit != "")
|
||||
// {
|
||||
// string na = "ผู้เข้าร่วมโครงการ จำนวน ";
|
||||
// string na2 = " หน่วยนับ";
|
||||
// project.text1 = na + vv.count_unit + na2;
|
||||
// }
|
||||
//
|
||||
// if (vv.count_project != null || vv.count_project != "")
|
||||
// {
|
||||
// string na = "จำนวนครั้งที่ดำเนินโครงการ ";
|
||||
// string na2 = " ครั้ง";
|
||||
// project.text2 = na + vv.count_project + na2;
|
||||
// }
|
||||
//
|
||||
// if (vv.count_training != null || vv.count_training != "")
|
||||
// {
|
||||
// string na = "จำนวนการจัดอบรมและสัมมนา ";
|
||||
// string na2 = " เรื่อง";
|
||||
// project.text3 = na + vv.count_training + na2;
|
||||
// }
|
||||
//
|
||||
// if (vv.count_knowledge != null || vv.count_knowledge != "")
|
||||
// {
|
||||
// string na = "จำนวนเผยแพร่ความรู้บริการวิชาการ ";
|
||||
// string na2 = " ครั้ง";
|
||||
// project.text4 = na + vv.count_knowledge + na2;
|
||||
// }
|
||||
// string na3 = "วัน/เดือน/ปี ที่จะดำเนินโครงการ ";
|
||||
// string na4 = " ถึง ";
|
||||
// project.text5 = na3 + vv.project_start_date + na4 + vv.project_end_date;
|
||||
// string na5 = "โครงการแล้วเสร็จตามเวลาที่กำหนด (ร้อยละ) ";
|
||||
// project.text6 = na5 + vv.percentage_finish;
|
||||
//
|
||||
// }
|
||||
|
||||
if (project.twenty_one == null)
|
||||
if (project.eighth != null)
|
||||
{
|
||||
project.twenty_one = null;
|
||||
}
|
||||
}
|
||||
|
||||
if (project.twenty_fifth != null)
|
||||
{
|
||||
foreach (var fifthData in project.twenty_fifth)
|
||||
{
|
||||
foreach (var acti in fifthData.activity)
|
||||
foreach (var v in project.eighth)
|
||||
{
|
||||
fifthData.activitys = acti;
|
||||
string na = "ประเด็นยุทธศาสตร์ที่ ";
|
||||
v.strategic_issues = na + v.strategic_issues;
|
||||
string na2 = "กลยุทธ์ที่ ";
|
||||
v.measure = na2 + v.measure;
|
||||
}
|
||||
foreach (var locat in fifthData.location)
|
||||
}
|
||||
|
||||
if (project.fourteenth != null)
|
||||
{
|
||||
foreach (var vv in project.fourteenth)
|
||||
{
|
||||
fifthData.locations = locat;
|
||||
// string na = "องค์ประกอบที่ " ;
|
||||
// vv.component = na + vv.component;
|
||||
string na2 = "ตัวบ่งชี้ที่ ";
|
||||
vv.indicator = na2 + vv.indicator;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
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)
|
||||
{
|
||||
foreach (var vv in v.eighteenths)
|
||||
{
|
||||
string na = "ครั้งที่ ";
|
||||
vv.the_time = na + vv.the_time;
|
||||
string na2 = " จำนวน ";
|
||||
vv.count_day = na2 + vv.count_day + " วัน";
|
||||
if (project.count_day != null)
|
||||
{
|
||||
project.text3 = "จำนวน " + project.count_day + " วัน";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (project.total_target != null)
|
||||
{
|
||||
project.text1 = "ผลรวมกลุ่มเป้าหมาย " + project.total_target;
|
||||
}
|
||||
|
||||
if (project.total_board != null)
|
||||
{
|
||||
project.text2 = "ผลรวมคณะกรรมการ " + project.total_board;
|
||||
}
|
||||
|
||||
if (project.twenty_one != null)
|
||||
{
|
||||
// foreach (var vv in project.twenty_one)
|
||||
// {
|
||||
// if (vv.activity != null || vv.activity!= "")
|
||||
// {
|
||||
// vv.activity = vv.activity;
|
||||
// }
|
||||
// if (vv.clause1 != null || vv.clause1!= "")
|
||||
// {
|
||||
// vv.clause1 = vv.clause1;
|
||||
// }
|
||||
// if (vv.clause2 != null || vv.clause2!= "")
|
||||
// {
|
||||
// vv.clause2 = vv.clause2;
|
||||
// }
|
||||
// if (vv.clause3 != null || vv.clause3!= "")
|
||||
// {
|
||||
// vv.clause3 = vv.clause3;
|
||||
// }
|
||||
// if (vv.clause4 != null || vv.clause4!= "")
|
||||
// {
|
||||
// vv.clause4 = vv.clause4;
|
||||
// }
|
||||
// if (vv.count_unit != null || vv.count_unit != "")
|
||||
// {
|
||||
// string na = "ผู้เข้าร่วมโครงการ จำนวน ";
|
||||
// string na2 = " หน่วยนับ";
|
||||
// project.text1 = na + vv.count_unit + na2;
|
||||
// }
|
||||
//
|
||||
// if (vv.count_project != null || vv.count_project != "")
|
||||
// {
|
||||
// string na = "จำนวนครั้งที่ดำเนินโครงการ ";
|
||||
// string na2 = " ครั้ง";
|
||||
// project.text2 = na + vv.count_project + na2;
|
||||
// }
|
||||
//
|
||||
// if (vv.count_training != null || vv.count_training != "")
|
||||
// {
|
||||
// string na = "จำนวนการจัดอบรมและสัมมนา ";
|
||||
// string na2 = " เรื่อง";
|
||||
// project.text3 = na + vv.count_training + na2;
|
||||
// }
|
||||
//
|
||||
// if (vv.count_knowledge != null || vv.count_knowledge != "")
|
||||
// {
|
||||
// string na = "จำนวนเผยแพร่ความรู้บริการวิชาการ ";
|
||||
// string na2 = " ครั้ง";
|
||||
// project.text4 = na + vv.count_knowledge + na2;
|
||||
// }
|
||||
// string na3 = "วัน/เดือน/ปี ที่จะดำเนินโครงการ ";
|
||||
// string na4 = " ถึง ";
|
||||
// project.text5 = na3 + vv.project_start_date + na4 + vv.project_end_date;
|
||||
// string na5 = "โครงการแล้วเสร็จตามเวลาที่กำหนด (ร้อยละ) ";
|
||||
// project.text6 = na5 + vv.percentage_finish;
|
||||
//
|
||||
// }
|
||||
|
||||
if (project.twenty_one == null)
|
||||
{
|
||||
project.twenty_one = null;
|
||||
}
|
||||
}
|
||||
|
||||
if (project.twenty_four != null)
|
||||
{
|
||||
int no = 1;
|
||||
foreach (var tw in project.twenty_four)
|
||||
{
|
||||
foreach (var dataDetail in tw.twenty_fours)
|
||||
{
|
||||
string a = "ชื่อผู้รับผิดชอบ กิจกรรมที่ " + no;
|
||||
no++;
|
||||
if (dataDetail.responsible_person != null)
|
||||
{
|
||||
dataDetail.text1 = a + " " + dataDetail.responsible_person;
|
||||
}
|
||||
|
||||
string b = "หน่วยงาน / คณะ ";
|
||||
if (dataDetail.agency != null)
|
||||
{
|
||||
dataDetail.text2 = b + dataDetail.agency;
|
||||
}
|
||||
|
||||
string c = "พื้นที่ ";
|
||||
if (dataDetail.area != null)
|
||||
{
|
||||
dataDetail.text3 = c + dataDetail.area;
|
||||
}
|
||||
|
||||
string d = "เบอร์โทรศัพท์ภายใน ";
|
||||
if (dataDetail.telephone_number != null)
|
||||
{
|
||||
dataDetail.text4 = d + dataDetail.telephone_number;
|
||||
}
|
||||
|
||||
string e = "เบอร์มือถือ ";
|
||||
if (dataDetail.mobile_number != null)
|
||||
{
|
||||
dataDetail.text5 = e + dataDetail.mobile_number;
|
||||
}
|
||||
|
||||
string f = "อีเมล ";
|
||||
if (dataDetail.email != null)
|
||||
{
|
||||
dataDetail.text6 = f + dataDetail.email;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (project.twenty_fifth != null)
|
||||
{
|
||||
foreach (var fifthData in project.twenty_fifth)
|
||||
{
|
||||
foreach (var acti in fifthData.activity)
|
||||
{
|
||||
fifthData.activitys = acti;
|
||||
}
|
||||
|
||||
foreach (var locat in fifthData.location)
|
||||
{
|
||||
fifthData.locations = locat;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -238,7 +290,8 @@ namespace rmutr_report.Controllers
|
||||
|
||||
[HttpPost, Route("reports/project_principle_rationale_no_activity/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetProject2Report([FromRoute] string type, [FromBody] project_principle_rationale project)
|
||||
public IActionResult GetProject2Report([FromRoute] string type,
|
||||
[FromBody] project_principle_rationale project)
|
||||
{
|
||||
var total = project.activity.Count;
|
||||
if (project.activity != null)
|
||||
@@ -386,6 +439,54 @@ namespace rmutr_report.Controllers
|
||||
project.twenty_one = null;
|
||||
}
|
||||
}
|
||||
|
||||
if (project.twenty_four != null)
|
||||
{
|
||||
int no = 1;
|
||||
foreach (var tw in project.twenty_four)
|
||||
{
|
||||
foreach (var dataDetail in tw.twenty_fours)
|
||||
{
|
||||
string a = "ชื่อผู้รับผิดชอบ กิจกรรมที่ " + no;
|
||||
no++;
|
||||
if (dataDetail.responsible_person != null)
|
||||
{
|
||||
dataDetail.text1 = a + " " + dataDetail.responsible_person;
|
||||
}
|
||||
|
||||
string b = "หน่วยงาน / คณะ ";
|
||||
if (dataDetail.agency != null)
|
||||
{
|
||||
dataDetail.text2 = b + dataDetail.agency;
|
||||
}
|
||||
|
||||
string c = "พื้นที่ ";
|
||||
if (dataDetail.area != null)
|
||||
{
|
||||
dataDetail.text3 = c + dataDetail.area;
|
||||
}
|
||||
|
||||
string d = "เบอร์โทรศัพท์ภายใน ";
|
||||
if (dataDetail.telephone_number != null)
|
||||
{
|
||||
dataDetail.text4 = d + dataDetail.telephone_number;
|
||||
}
|
||||
|
||||
string e = "เบอร์มือถือ ";
|
||||
if (dataDetail.mobile_number != null)
|
||||
{
|
||||
dataDetail.text5 = e + dataDetail.mobile_number;
|
||||
}
|
||||
|
||||
string f = "อีเมล ";
|
||||
if (dataDetail.email != null)
|
||||
{
|
||||
dataDetail.text6 = f + dataDetail.email;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (project.twenty_fifth != null)
|
||||
{
|
||||
foreach (var fifthData in project.twenty_fifth)
|
||||
@@ -394,6 +495,7 @@ namespace rmutr_report.Controllers
|
||||
{
|
||||
fifthData.activitys = acti;
|
||||
}
|
||||
|
||||
foreach (var locat in fifthData.location)
|
||||
{
|
||||
fifthData.locations = locat;
|
||||
|
||||
@@ -484,6 +484,12 @@ namespace rmutr_report.Models
|
||||
}
|
||||
|
||||
public class twenty_four_data
|
||||
{
|
||||
public string activity { get; set; }
|
||||
public List<twenty_four_data_detail> twenty_fours { get; set; }
|
||||
}
|
||||
|
||||
public class twenty_four_data_detail
|
||||
{
|
||||
public string text1 { get; set; }
|
||||
public string text2 { get; set; }
|
||||
@@ -496,7 +502,7 @@ namespace rmutr_report.Models
|
||||
public string area { get; set; }
|
||||
public string telephone_number { get; set; }
|
||||
public string mobile_number { get; set; }
|
||||
public string email { get; set; }
|
||||
public string email { get; set; }
|
||||
}
|
||||
|
||||
public class twenty_fifth_data
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
16934730478373239
|
||||
16935604775337552
|
||||
@@ -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/31/2023 16:04:33" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="09/01/2023 16:24:52" 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"/>
|
||||
@@ -256,18 +256,21 @@
|
||||
<Column Name="list" DataType="System.String"/>
|
||||
</BusinessObjectDataSource>
|
||||
<BusinessObjectDataSource Name="twenty_four" DataType="null" Enabled="true">
|
||||
<Column Name="text1" DataType="System.String"/>
|
||||
<Column Name="text2" DataType="System.String"/>
|
||||
<Column Name="text3" DataType="System.String"/>
|
||||
<Column Name="text4" DataType="System.String"/>
|
||||
<Column Name="text5" DataType="System.String"/>
|
||||
<Column Name="text6" DataType="System.String"/>
|
||||
<Column Name="responsible_person" DataType="System.String"/>
|
||||
<Column Name="agency" DataType="System.String"/>
|
||||
<Column Name="area" DataType="System.String"/>
|
||||
<Column Name="telephone_number" DataType="System.String"/>
|
||||
<Column Name="mobile_number" DataType="System.String"/>
|
||||
<Column Name="email" DataType="System.String"/>
|
||||
<Column Name="activity" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="twenty_fours" DataType="null" Enabled="true">
|
||||
<Column Name="text1" DataType="System.String"/>
|
||||
<Column Name="text2" DataType="System.String"/>
|
||||
<Column Name="text3" DataType="System.String"/>
|
||||
<Column Name="text4" DataType="System.String"/>
|
||||
<Column Name="text5" DataType="System.String"/>
|
||||
<Column Name="text6" DataType="System.String"/>
|
||||
<Column Name="responsible_person" DataType="System.String"/>
|
||||
<Column Name="agency" DataType="System.String"/>
|
||||
<Column Name="area" DataType="System.String"/>
|
||||
<Column Name="telephone_number" DataType="System.String"/>
|
||||
<Column Name="mobile_number" DataType="System.String"/>
|
||||
<Column Name="email" DataType="System.String"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
<BusinessObjectDataSource Name="twenty_fifth" DataType="null" Enabled="true">
|
||||
<Column Name="activitys" DataType="System.String"/>
|
||||
@@ -401,7 +404,7 @@
|
||||
</DataBand>
|
||||
<DataBand Name="Data22" Top="1938.43" Width="774.9" Height="28.35">
|
||||
<TextObject Name="Text107" Width="765.45" Height="28.35" Text="15. กิจกรรมการดำเนินงาน" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<DataBand Name="Data23" Top="1973.13" Width="774.9" Height="28.35" DataSource="fifteenth">
|
||||
<DataBand Name="Data23" Top="1973.13" Width="774.9" Height="28.35">
|
||||
<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="2007.83" Width="774.9" Height="28.35" DataSource="fifteenths">
|
||||
<TextObject Name="Text135" Left="47.25" Width="718.2" Height="28.35" Text="[project_principle_rationale.fifteenth.fifteenths.detail]" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
@@ -758,7 +761,7 @@
|
||||
<TableCell Name="Cell161" Border.Lines="All" Text="ก.ย." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data50" Top="118.11" Width="774.9" Height="28.35" DataSource="twentieth">
|
||||
<DataBand Name="Data50" Top="119.75" Width="774.9" Height="28.35" DataSource="twentieth">
|
||||
<TableObject Name="Table22" Width="774.9" Height="28.35">
|
||||
<TableColumn Name="Column112" Width="321.3"/>
|
||||
<TableColumn Name="Column113" Width="37.8"/>
|
||||
@@ -791,15 +794,15 @@
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<DataBand Name="Data51" Top="151.16" Width="774.9" Height="28.35">
|
||||
<DataBand Name="Data51" Top="154.45" Width="774.9" Height="28.35">
|
||||
<TextObject Name="Text5" Width="718.2" Height="28.35" Text="21. ตัวชี้วัดเป้าหมายผลผลิต (เปลี่ยนแปลงไปตามประเภทโครงการในแต่ละผลผลิต)" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<DataBand Name="Data52" Top="184.22" Width="774.9" Height="141.75" DataSource="twenty_one_activity1">
|
||||
<DataBand Name="Data52" Top="189.15" Width="774.9" Height="141.75" DataSource="twenty_one_activity1">
|
||||
<TextObject Name="Text6" Left="37.8" Top="28.35" Width="699.3" Height="28.35" Text="[project_principle_rationale.twenty_one_activity1.text1] [project_principle_rationale.twenty_one_activity1.count_unit] [project_principle_rationale.twenty_one_activity1.nuai_nap]" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text7" Left="37.8" Top="85.05" Width="680.4" Height="28.35" Text="[project_principle_rationale.twenty_one_activity1.text3] [project_principle_rationale.twenty_one_activity1.count_training] [project_principle_rationale.twenty_one_activity1.rueang]" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text8" Left="37.8" Top="113.4" Width="680.4" Height="28.35" Text="[project_principle_rationale.twenty_one_activity1.text4] [project_principle_rationale.twenty_one_activity1.count_knowledge] [project_principle_rationale.twenty_one_activity1.khrang3]" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text18" Left="37.8" Top="56.7" Width="680.4" Height="28.35" Text="[project_principle_rationale.twenty_one_activity1.text2] [project_principle_rationale.twenty_one_activity1.count_project] [project_principle_rationale.twenty_one_activity1.khrang2]" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text19" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one_activity1.clause1] [project_principle_rationale.twenty_one_activity1.count_quantitative] [project_principle_rationale.twenty_one_activity1.khrang1]" Font="TH Sarabun New, 14pt"/>
|
||||
<DataBand Name="Data55" Top="330.67" Width="774.9" Height="141.75" DataSource="twenty_one_data_activity1_detail">
|
||||
<DataBand Name="Data55" Top="337.25" Width="774.9" Height="141.75" DataSource="twenty_one_data_activity1_detail">
|
||||
<TextObject Name="Text207" Left="37.8" Top="113.4" Width="680.4" Height="28.35" Text="[project_principle_rationale.twenty_one_activity1.twenty_one_data_activity1_detail.text4] [project_principle_rationale.twenty_one_activity1.twenty_one_data_activity1_detail.count_knowledge] [project_principle_rationale.twenty_one_activity1.twenty_one_data_activity1_detail.khrang3]" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text206" Left="37.8" Top="85.05" Width="680.4" Height="28.35" Text="[project_principle_rationale.twenty_one_activity1.twenty_one_data_activity1_detail.text3] [project_principle_rationale.twenty_one_activity1.twenty_one_data_activity1_detail.count_training] [project_principle_rationale.twenty_one_activity1.twenty_one_data_activity1_detail.rueang]" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text208" Left="37.8" Top="56.7" Width="680.4" Height="28.35" Text="[project_principle_rationale.twenty_one_activity1.twenty_one_data_activity1_detail.text2] [project_principle_rationale.twenty_one_activity1.twenty_one_data_activity1_detail.count_project] [project_principle_rationale.twenty_one_activity1.twenty_one_data_activity1_detail.khrang2]" Font="TH Sarabun New, 14pt"/>
|
||||
@@ -808,16 +811,16 @@
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<DataBand Name="Data53" Top="477.13" Width="774.9">
|
||||
<DataBand Name="Data54" Top="481.84" Width="774.9" Height="113.4" DataSource="twenty_one_activity2">
|
||||
<DataBand Name="Data53" Top="485.35" Width="774.9">
|
||||
<DataBand Name="Data54" Top="491.7" Width="774.9" Height="113.4" DataSource="twenty_one_activity2">
|
||||
<TextObject Name="Text10" Left="47.25" Top="56.7" Width="718.2" Height="28.35" Text="[project_principle_rationale.twenty_one_activity2.text5] [project_principle_rationale.twenty_one_activity2.project_start_date] [project_principle_rationale.twenty_one_activity2.project_end_date]" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text11" Left="47.25" Top="85.05" Width="652.05" Height="28.35" Text="[project_principle_rationale.twenty_one_activity2.text6] [project_principle_rationale.twenty_one_activity2.percentage_finish]" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text9" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one_activity2.clause2]" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text209" Top="28.35" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one_activity2.activity_clause2]" Font="TH Sarabun New, 14pt"/>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<DataBand Name="Data56" Top="599.94" Width="774.9">
|
||||
<DataBand Name="Data60" Top="604.65" Width="774.9" Height="226.8" DataSource="twenty_one_activity3">
|
||||
<DataBand Name="Data56" Top="611.44" Width="774.9">
|
||||
<DataBand Name="Data60" Top="617.79" Width="774.9" Height="226.8" DataSource="twenty_one_activity3">
|
||||
<TextObject Name="Text20" Left="37.8" Top="198.45" Width="689.85" Height="28.35" Text="[project_principle_rationale.twenty_one_activity3.clause4] [FormatNumber([project_principle_rationale.twenty_one_activity3.expenses],2)] [project_principle_rationale.twenty_one_activity3.bath]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
@@ -834,9 +837,9 @@
|
||||
<TextObject Name="Text12" Width="708.75" Height="28.35" Text="[project_principle_rationale.twenty_one_activity3.clause3]" Font="TH Sarabun New, 14pt"/>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<DataBand Name="Data69" Top="836.15" Width="774.9" Height="28.35">
|
||||
<DataBand Name="Data69" Top="850.94" Width="774.9" Height="28.35">
|
||||
<TextObject Name="Text24" Width="774.9" Height="28.35" Text="22. ผลที่คาดว่าจะได้รับ" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<DataBand Name="Data70" Top="869.21" Width="774.9" Height="28.35" DataSource="twenty_two">
|
||||
<DataBand Name="Data70" Top="885.64" Width="774.9" Height="28.35" DataSource="twenty_two">
|
||||
<TextObject Name="Text25" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_two.list]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
@@ -845,9 +848,9 @@
|
||||
</TextObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<DataBand Name="Data71" Top="902.26" Width="774.9" Height="28.35">
|
||||
<DataBand Name="Data71" Top="920.34" Width="774.9" Height="28.35">
|
||||
<TextObject Name="Text26" Width="774.9" Height="28.35" Text="23. การติดตามประเมินผล" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<DataBand Name="Data72" Top="935.32" Width="774.9" Height="28.35" DataSource="twenty_three">
|
||||
<DataBand Name="Data72" Top="955.04" Width="774.9" Height="28.35" DataSource="twenty_three">
|
||||
<TextObject Name="Text27" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_three.list]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
@@ -856,39 +859,42 @@
|
||||
</TextObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<DataBand Name="Data73" Top="968.38" Width="774.9" Height="28.35">
|
||||
<DataBand Name="Data73" Top="989.74" Width="774.9" Height="28.35">
|
||||
<TextObject Name="Text28" Width="774.9" Height="28.35" Text="24. ผู้รับผิดชอบโครงการ" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<DataBand Name="Data74" Top="1001.43" Width="774.9" Height="141.75" DataSource="twenty_four">
|
||||
<TextObject Name="Text29" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text1] [project_principle_rationale.twenty_four.responsible_person]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text30" Top="28.35" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text2] [project_principle_rationale.twenty_four.agency] [project_principle_rationale.twenty_four.text3] [project_principle_rationale.twenty_four.area]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text31" Top="56.7" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text4] [project_principle_rationale.twenty_four.telephone_number]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text32" Top="113.4" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text6] [project_principle_rationale.twenty_four.email]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text33" Top="85.05" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text5] [project_principle_rationale.twenty_four.mobile_number]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<DataBand Name="Data74" Top="1024.44" Width="774.9" Height="28.35" DataSource="twenty_four">
|
||||
<TextObject Name="Text210" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.activity]" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<DataBand Name="Data61" Top="1059.14" Width="774.9" Height="141.75" DataSource="twenty_fours">
|
||||
<TextObject Name="Text32" Left="37.8" Top="113.4" Width="737.1" Height="28.35" Text="[project_principle_rationale.twenty_four.twenty_fours.text6]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text33" Left="37.8" Top="85.05" Width="737.1" Height="28.35" Text="[project_principle_rationale.twenty_four.twenty_fours.text5]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text31" Left="37.8" Top="56.7" Width="737.1" Height="28.35" Text="[project_principle_rationale.twenty_four.twenty_fours.text4]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text30" Left="37.8" Top="28.35" Width="737.1" Height="28.35" Text="[project_principle_rationale.twenty_four.twenty_fours.text2] [project_principle_rationale.twenty_four.twenty_fours.text3]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text29" Left="37.8" Width="737.1" Height="28.35" Text="[project_principle_rationale.twenty_four.twenty_fours.text1]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
|
||||
@@ -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/31/2023 16:09:21" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="09/01/2023 16:26:38" 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"/>
|
||||
@@ -231,18 +231,21 @@
|
||||
<Column Name="list" DataType="System.String"/>
|
||||
</BusinessObjectDataSource>
|
||||
<BusinessObjectDataSource Name="twenty_four" DataType="null" Enabled="true">
|
||||
<Column Name="text1" DataType="System.String"/>
|
||||
<Column Name="text2" DataType="System.String"/>
|
||||
<Column Name="text3" DataType="System.String"/>
|
||||
<Column Name="text4" DataType="System.String"/>
|
||||
<Column Name="text5" DataType="System.String"/>
|
||||
<Column Name="text6" DataType="System.String"/>
|
||||
<Column Name="responsible_person" DataType="System.String"/>
|
||||
<Column Name="agency" DataType="System.String"/>
|
||||
<Column Name="area" DataType="System.String"/>
|
||||
<Column Name="telephone_number" DataType="System.String"/>
|
||||
<Column Name="mobile_number" DataType="System.String"/>
|
||||
<Column Name="email" DataType="System.String"/>
|
||||
<Column Name="activity" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="twenty_fours" DataType="null" Enabled="true">
|
||||
<Column Name="text1" DataType="System.String"/>
|
||||
<Column Name="text2" DataType="System.String"/>
|
||||
<Column Name="text3" DataType="System.String"/>
|
||||
<Column Name="text4" DataType="System.String"/>
|
||||
<Column Name="text5" DataType="System.String"/>
|
||||
<Column Name="text6" DataType="System.String"/>
|
||||
<Column Name="responsible_person" DataType="System.String"/>
|
||||
<Column Name="agency" DataType="System.String"/>
|
||||
<Column Name="area" DataType="System.String"/>
|
||||
<Column Name="telephone_number" DataType="System.String"/>
|
||||
<Column Name="mobile_number" DataType="System.String"/>
|
||||
<Column Name="email" DataType="System.String"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
<BusinessObjectDataSource Name="twenty_fifth" DataType="null" Enabled="true">
|
||||
<Column Name="activitys" DataType="System.String"/>
|
||||
@@ -715,7 +718,7 @@
|
||||
<TableCell Name="Cell161" Border.Lines="All" Text="ก.ย." HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data50" Top="118.11" Width="774.9" Height="28.35" DataSource="twentieth">
|
||||
<DataBand Name="Data50" Top="119.75" Width="774.9" Height="28.35" DataSource="twentieth">
|
||||
<TableObject Name="Table22" Width="774.9" Height="28.35">
|
||||
<TableColumn Name="Column112" Width="321.3"/>
|
||||
<TableColumn Name="Column113" Width="37.8"/>
|
||||
@@ -748,9 +751,9 @@
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<DataBand Name="Data51" Top="151.16" Width="774.9" Height="28.35">
|
||||
<DataBand Name="Data51" Top="154.45" Width="774.9" Height="28.35">
|
||||
<TextObject Name="Text5" Width="718.2" Height="28.35" Text="21. ตัวชี้วัดเป้าหมายผลผลิต (เปลี่ยนแปลงไปตามประเภทโครงการในแต่ละผลผลิต)" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<DataBand Name="Data52" Top="184.22" Width="774.9" Height="453.6" DataSource="twenty_one">
|
||||
<DataBand Name="Data52" Top="189.15" Width="774.9" Height="453.6" DataSource="twenty_one">
|
||||
<TextObject Name="Text6" Left="37.8" Top="28.35" Width="699.3" 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="Text7" Left="37.8" Top="85.05" Width="680.4" 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="Text8" Left="37.8" Top="113.4" Width="680.4" 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"/>
|
||||
@@ -775,9 +778,9 @@
|
||||
<TextObject Name="Text21" Left="75.6" Top="396.9" Width="699.3" Height="28.35" Text="[project_principle_rationale.twenty_one.detail2]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="11" Font="TH Sarabun New, 14pt"/>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<DataBand Name="Data69" Top="642.52" Width="774.9" Height="28.35">
|
||||
<DataBand Name="Data69" Top="649.1" Width="774.9" Height="28.35">
|
||||
<TextObject Name="Text24" Width="774.9" Height="28.35" Text="22. ผลที่คาดว่าจะได้รับ" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<DataBand Name="Data70" Top="675.58" Width="774.9" Height="28.35" DataSource="twenty_two">
|
||||
<DataBand Name="Data70" Top="683.8" Width="774.9" Height="28.35" DataSource="twenty_two">
|
||||
<TextObject Name="Text25" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_two.list]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
@@ -786,9 +789,9 @@
|
||||
</TextObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<DataBand Name="Data71" Top="708.64" Width="774.9" Height="28.35">
|
||||
<DataBand Name="Data71" Top="718.5" Width="774.9" Height="28.35">
|
||||
<TextObject Name="Text26" Width="774.9" Height="28.35" Text="23. การติดตามประเมินผล" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<DataBand Name="Data72" Top="741.69" Width="774.9" Height="28.35" DataSource="twenty_three">
|
||||
<DataBand Name="Data72" Top="753.19" Width="774.9" Height="28.35" DataSource="twenty_three">
|
||||
<TextObject Name="Text27" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_three.list]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
@@ -797,39 +800,47 @@
|
||||
</TextObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<DataBand Name="Data73" Top="774.75" Width="774.9" Height="28.35">
|
||||
<DataBand Name="Data73" Top="787.89" Width="774.9" Height="28.35">
|
||||
<TextObject Name="Text28" Width="774.9" Height="28.35" Text="24. ผู้รับผิดชอบโครงการ" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<DataBand Name="Data74" Top="807.8" Width="774.9" Height="141.75" DataSource="twenty_four">
|
||||
<TextObject Name="Text29" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text1] [project_principle_rationale.twenty_four.responsible_person]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text30" Top="28.35" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text2] [project_principle_rationale.twenty_four.agency] [project_principle_rationale.twenty_four.text3] [project_principle_rationale.twenty_four.area]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text31" Top="56.7" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text4] [project_principle_rationale.twenty_four.telephone_number]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text32" Top="113.4" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text6] [project_principle_rationale.twenty_four.email]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text33" Top="85.05" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.text5] [project_principle_rationale.twenty_four.mobile_number]" Font="TH Sarabun New, 14pt">
|
||||
<DataBand Name="Data74" Top="822.59" Width="774.9" Height="28.35" DataSource="twenty_four">
|
||||
<TextObject Name="Text204" Width="774.9" Height="28.35" Text="[project_principle_rationale.twenty_four.activity]" Font="TH Sarabun New, 14pt, style=Bold">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<DataBand Name="Data31" Top="857.29" Width="774.9" Height="141.75" DataSource="twenty_fours">
|
||||
<TextObject Name="Text33" Left="37.8" Top="85.05" Width="737.1" Height="28.35" Text="[project_principle_rationale.twenty_four.twenty_fours.text5]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text31" Left="37.8" Top="56.7" Width="737.1" Height="28.35" Text="[project_principle_rationale.twenty_four.twenty_fours.text4]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text30" Left="37.8" Top="28.35" Width="737.1" Height="28.35" Text="[project_principle_rationale.twenty_four.twenty_fours.text2] [project_principle_rationale.twenty_four.twenty_fours.text3]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text29" Left="37.8" Width="737.1" Height="28.35" Text="[project_principle_rationale.twenty_four.twenty_fours.text1]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
<TextObject Name="Text32" Left="37.8" Top="113.4" Width="737.1" Height="28.35" Text="[project_principle_rationale.twenty_four.twenty_fours.text6]" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
</TextObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
|
||||
Reference in New Issue
Block a user