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

This commit is contained in:
kamonwan taengsuk
2023-11-23 17:12:25 +07:00
parent 3a2f956d02
commit 5ba7919b29
16 changed files with 836 additions and 472 deletions

View File

@@ -94,8 +94,16 @@ namespace rmutr_report.Controllers
sixteenthData.bophitphimuk_total = sum2;
sixteenthData.pohchang_total = sum3;
sixteenthData.klai_kangwon_total = sum4;
sixteenthData.activity_table = a + sixteenthData.activity_table;
t++;
if (sixteenthData.activity_table != null)
{
sixteenthData.activity_table = a + sixteenthData.activity_table;
t++;
}
if (sixteenthData.activity_table == null)
{
sixteenthData.activity_table = null;
}
}
}
@@ -105,7 +113,17 @@ namespace rmutr_report.Controllers
{
int t = 1;
string a = "กิจกรรมที่ ";
v.activity = a + v.activity;
if (v.activity != null)
{
v.activity = a + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
foreach (var vv in v.seventeenths)
{
string na = "ครั้งที่ ";
@@ -139,6 +157,19 @@ namespace rmutr_report.Controllers
{
foreach (var v in project.eighteenth)
{
int t = 1;
string a = "กิจกรรมที่ ";
if (v.activity != null)
{
v.activity = a + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
foreach (var vv in v.eighteenths)
{
string na = "ครั้งที่ ";
@@ -153,25 +184,64 @@ namespace rmutr_report.Controllers
}
}
if (project.nineteenth != null)
{
foreach (var v in project.nineteenth)
{
foreach (var vv in v.nineteenth_data_header)
{
int t = 1;
string a = "กิจกรรมที่ ";
if (vv.activity != null)
{
vv.activity = a + vv.activity;
t++;
}
if (vv.activity == null)
{
vv.activity = null;
}
}
}
}
if (project.total_target != null)
{
project.text1 = "ผลรวมกลุ่มเป้าหมาย " + project.total_target;
}
if (project.total_target == null)
{
project.text1 = "ผลรวมกลุ่มเป้าหมาย -";
}
if (project.total_board != null)
{
project.text2 = "ผลรวมคณะกรรมการ " + project.total_board;
}
if (project.total_board == null)
{
project.text2 = "ผลรวมคณะกรรมการ -";
}
if (project.twenty_one != null)
{
foreach (var v in project.twenty_one)
{
if (v.activity != null || v.activity != "")
int t = 1;
string a = "กิจกรรมที่ ";
if (v.activity != null)
{
v.activity = v.activity;
v.activity = a + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
foreach (var vv in v.twenty_ones)
{
// if (vv.clause1 != null || vv.clause1 != "")
@@ -268,6 +338,25 @@ namespace rmutr_report.Controllers
}
}
if (project.twenty_four != null)
{
foreach (var v in project.twenty_four)
{
int t = 1;
string a = "กิจกรรมที่ ";
if (v.activity != null)
{
v.activity = a + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
}
}
var _project = new List<project_principle_rationale>() { project };
Report report = new Report();

View File

@@ -1235,6 +1235,7 @@ namespace rmutr_report.Controllers
return Ok();
}
[SwaggerOperation("2ค่าตอบแทนผู้ปฏิบัติงานให้ราชการ_6 7 8")]
[HttpPost, Route("reports/consultant_compensation/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
@@ -1243,36 +1244,41 @@ namespace rmutr_report.Controllers
{
var types = compensation.data.ToList();
if (compensation.topic_type==1)
if (compensation.topic_type == 1)
{
compensation.topic_name = "ค่าตอบแทนที่ปรึกษา";
}
if (compensation.topic_type==2)
if (compensation.topic_type == 2)
{
compensation.topic_name = "ค่าตอบแทนเหมาจ่ายจัดหารถประจำตำแหน่ง";
}
if (compensation.topic_type==3)
if (compensation.topic_type == 3)
{
compensation.topic_name = "ค่าตอบแทนอื่น ๆ";
}
if (compensation.topic_type==4)
if (compensation.topic_type == 4)
{
compensation.topic_name = "ค่าคณะกรรมการตรวจการจ้าง";
}
if (compensation.topic_type==5)
if (compensation.topic_type == 5)
{
compensation.topic_name = "ค่าคณะกรรมการตรวจรับพัสดุ";
}
if (compensation.topic_type==6)
if (compensation.topic_type == 6)
{
compensation.topic_name = "ค่าคณะกรรมการกำหนดราคากลาง";
}
foreach (var detail in compensation.data)
{
detail.total_amount = detail.quantity_day * detail.quantity_person * detail.rate;
}
compensation.total_amount = types.Sum(d => d.total_amount);
var compensations = new List<consultant_compensation>() { compensation };
Report report = new Report();
@@ -1344,33 +1350,67 @@ namespace rmutr_report.Controllers
public IActionResult GetCalReport([FromRoute] string type,
[FromBody] calculate_meeting_expenses calculate)
{
if (calculate.topic_type==1)
var c = calculate.data.ToList();
if (calculate.topic_type == 1)
{
calculate.text1 = "ค่าใช้สอย : ค่าอาหารว่าง และค่าอาหารกลางวันในการประชุม";
calculate.text2 = "ผลการเบิกจ่าย ค่าอาหารว่าง\nและค่าอาหารกลางวันเบิกจ่ายจริง";
calculate.text3 = "อัตราค่าใช้จ่ายค่าอาหารว่าง\nและค่าอาหารกลางวัน";
calculate.text4 = "รวมค่าอาหารว่างและค่าอาหารกลางวัน";
}
if (calculate.topic_type==2)
if (calculate.topic_type == 2)
{
calculate.text1 = "ค่าตอบแทน : ค่าเบี้ยประชุมคณะกรรมการ";
calculate.text2 = "ผลการเบิกจ่าย ค่าเบี้ยประชุมเบิกจ่ายจริง";
calculate.text3 = "อัตราค่าเบี้ยประชุม";
calculate.text4 = "รวมค่าเบี้ยประชุม";
}
//var newlist = new List<calculate_meeting_expenses>() { };
//var newlist2 = newlist.SelectMany(newlist => newlist.data);
int n = 1;
foreach (var data in calculate.data)
foreach (var data in calculate.data)
{
if (data.topic_type==1)
if (data.topic_type == 1)
{
data.row_no = null;
data.no = n.ToString();
n++;
}
}
if (data.topic_type == 2)
{
data.total = data.expense_rate * data.count_person * data.count_meetings;
}
}
calculate.disbursement_result = c.Where(e => e.topic_type == 1).Sum(d => d.disbursement_result);
calculate.expense_rate = c.Where(e => e.topic_type == 1).Sum(d => d.expense_rate);
calculate.count_person = c.Where(e => e.topic_type == 1).Sum(d => d.count_person);
calculate.count_meetings = c.Where(e => e.topic_type == 1).Sum(d => d.count_meetings);
calculate.total = c.Where(e => e.topic_type == 1).Sum(d => d.total);
var calculateMeeting = new List<calculate_meeting_expenses>() { calculate };
// calculate.data.Add(new calculate_meeting_expenses_data_datail()
// {
// topic_type = 1,
// disbursement_result = calculateMeeting.SelectMany(d => d.data).Where(t => t.topic_type == 2)
// .Sum(c => c.disbursement_result),
// count_person = calculateMeeting.SelectMany(d => d.data).Where(t => t.topic_type == 2)
// .Sum(c => c.count_person)
// });
// foreach (var cc in c)
// {
// if (cc.topic_type==1)
// {
// cc.disbursement_result = calculateMeeting.SelectMany(d => d.data).Where(t => t.topic_type == 2)
// .Sum(c => c.disbursement_result);
// cc.count_person = calculateMeeting.SelectMany(d => d.data).Where(t => t.topic_type == 2)
// .Sum(c => c.count_person);
// }
//
// }
Report report = new Report();
report.Load(_setting.report_path + "calculate_meeting_expenses.frx");
report.RegisterData(calculateMeeting, "calculate_meeting_expenses");

View File

@@ -67,8 +67,16 @@ namespace rmutr_report.Controllers
sixteenthData.bophitphimuk_total = sum2;
sixteenthData.pohchang_total = sum3;
sixteenthData.klai_kangwon_total = sum4;
sixteenthData.activity_table = a + sixteenthData.activity_table;
t++;
if (sixteenthData.activity_table != null)
{
sixteenthData.activity_table = a + sixteenthData.activity_table;
t++;
}
if (sixteenthData.activity_table == null)
{
sixteenthData.activity_table = null;
}
}
}
@@ -78,7 +86,17 @@ namespace rmutr_report.Controllers
{
int t = 1;
string a = "กิจกรรมที่ ";
v.activity = a + v.activity;
if (v.activity != null)
{
v.activity = a + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
foreach (var vv in v.seventeenths)
{
string na = "ครั้งที่ ";
@@ -112,6 +130,20 @@ namespace rmutr_report.Controllers
{
foreach (var v in project.eighteenth)
{
int t = 1;
string a = "กิจกรรมที่ ";
if (v.activity != null)
{
v.activity = a + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
foreach (var vv in v.eighteenths)
{
string na = "ครั้งที่ ";
@@ -126,16 +158,48 @@ namespace rmutr_report.Controllers
}
}
if (project.nineteenth != null)
{
foreach (var v in project.nineteenth)
{
foreach (var vv in v.nineteenth_data_header)
{
int t = 1;
string a = "กิจกรรมที่ ";
if (vv.activity != null)
{
vv.activity = a + vv.activity;
t++;
}
if (vv.activity == null)
{
vv.activity = null;
}
}
}
}
if (project.total_target != null)
{
project.text1 = "ผลรวมกลุ่มเป้าหมาย " + project.total_target;
}
if (project.total_target == null)
{
project.text1 = "ผลรวมกลุ่มเป้าหมาย -";
}
if (project.total_board != null)
{
project.text2 = "ผลรวมคณะกรรมการ " + project.total_board;
}
if (project.total_board == null)
{
project.text2 = "ผลรวมคณะกรรมการ -";
}
if (project.twenty_one != null)
{
foreach (var v in project.twenty_one)
@@ -262,10 +326,23 @@ namespace rmutr_report.Controllers
if (project.twenty_four != null)
{
int no = 1;
foreach (var tw in project.twenty_four)
foreach (var v in project.twenty_four)
{
foreach (var dataDetail in tw.twenty_fours)
int t = 1;
string aa = "กิจกรรมที่ ";
if (v.activity != null)
{
v.activity = aa + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
foreach (var dataDetail in v.twenty_fours)
{
string a = "ชื่อผู้รับผิดชอบ กิจกรรมที่ " + no;
no++;
@@ -371,266 +448,220 @@ namespace rmutr_report.Controllers
return Ok();
}
[HttpPost, Route("reports/project_principle_rationale_no_activity/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetProject2Report([FromRoute] string type,
[FromBody] project_principle_rationale project)
{
var total = project.activity.Count;
if (project.activity != null)
{
foreach (var v in project.activity)
{
if (v.activity != null)
{
//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)
{
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;
}
}
}
var _project = new List<project_principle_rationale>() { project };
Report report = new Report();
report.Load(_setting.report_path + "project_principle_rationale_no_activity.frx");
report.RegisterData(_project, "project_principle_rationale");
report.Prepare();
MemoryStream stream = new MemoryStream();
switch (type)
{
case "pdf":
PDFExport pdf = new PDFExport();
report.Export(pdf, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/pdf");
case "xls":
case "xlsx":
Excel2007Export excel = new Excel2007Export();
report.Export(excel, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/vnd.ms-excel");
break;
case "mht":
MHTExport mht = new MHTExport();
report.Export(mht, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "multipart/related");
break;
case "csv":
CSVExport csv = new CSVExport();
report.Export(csv, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "text/csv");
break;
case "doc":
case "docx":
Word2007Export word = new Word2007Export();
report.Export(word, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "appllication/vnd.ms-word");
break;
}
return Ok();
}
// [HttpPost, Route("reports/project_principle_rationale_no_activity/{type}")]
// [ApiExplorerSettings(GroupName = "reports")]
// public IActionResult GetProject2Report([FromRoute] string type,
// [FromBody] project_principle_rationale project)
// {
// var total = project.activity.Count;
// if (project.activity != null)
// {
// foreach (var v in project.activity)
// {
// if (v.activity != null)
// {
// //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)
// {
// 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_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;
// }
// }
// }
//
// var _project = new List<project_principle_rationale>() { project };
//
// Report report = new Report();
// report.Load(_setting.report_path + "project_principle_rationale_no_activity.frx");
// report.RegisterData(_project, "project_principle_rationale");
// report.Prepare();
//
// MemoryStream stream = new MemoryStream();
// switch (type)
// {
// case "pdf":
// PDFExport pdf = new PDFExport();
// report.Export(pdf, stream);
// stream.Seek(0, SeekOrigin.Begin);
// return File(stream, "application/pdf");
//
// case "xls":
// case "xlsx":
// Excel2007Export excel = new Excel2007Export();
// report.Export(excel, stream);
// stream.Seek(0, SeekOrigin.Begin);
// return File(stream, "application/vnd.ms-excel");
// break;
// case "mht":
// MHTExport mht = new MHTExport();
// report.Export(mht, stream);
// stream.Seek(0, SeekOrigin.Begin);
// return File(stream, "multipart/related");
// break;
// case "csv":
// CSVExport csv = new CSVExport();
// report.Export(csv, stream);
// stream.Seek(0, SeekOrigin.Begin);
// return File(stream, "text/csv");
// break;
// case "doc":
// case "docx":
// Word2007Export word = new Word2007Export();
// report.Export(word, stream);
// stream.Seek(0, SeekOrigin.Begin);
// return File(stream, "appllication/vnd.ms-word");
// break;
// }
//
// return Ok();
// }
}
}

View File

@@ -112,8 +112,16 @@ namespace rmutr_report.Controllers
sixteenthData.bophitphimuk_total = sum2;
sixteenthData.pohchang_total = sum3;
sixteenthData.klai_kangwon_total = sum4;
sixteenthData.activity_table = a + sixteenthData.activity_table;
t++;
if (sixteenthData.activity_table != null)
{
sixteenthData.activity_table = a + sixteenthData.activity_table;
t++;
}
if (sixteenthData.activity_table == null)
{
sixteenthData.activity_table = null;
}
}
}
@@ -123,7 +131,17 @@ namespace rmutr_report.Controllers
{
int t = 1;
string a = "กิจกรรมที่ ";
v.activity = a + v.activity;
if (v.activity != null)
{
v.activity = a + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
foreach (var vv in v.seventeenths)
{
string na = "ครั้งที่ ";
@@ -157,6 +175,19 @@ namespace rmutr_report.Controllers
{
foreach (var v in project.eighteenth)
{
int t = 1;
string a = "กิจกรรมที่ ";
if (v.activity != null)
{
v.activity = a + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
foreach (var vv in v.eighteenths)
{
string na = "ครั้งที่ ";
@@ -171,23 +202,63 @@ namespace rmutr_report.Controllers
}
}
if (project.nineteenth != null)
{
foreach (var v in project.nineteenth)
{
foreach (var vv in v.nineteenth_data_header)
{
int t = 1;
string a = "กิจกรรมที่ ";
if (vv.activity != null)
{
vv.activity = a + vv.activity;
t++;
}
if (vv.activity == null)
{
vv.activity = null;
}
}
}
}
if (project.total_target != null)
{
project.text1 = "ผลรวมกลุ่มเป้าหมาย " + project.total_target;
}
if (project.total_target == null)
{
project.text1 = "ผลรวมกลุ่มเป้าหมาย -";
}
if (project.total_board != null)
{
project.text2 = "ผลรวมคณะกรรมการ " + project.total_board;
}
if (project.total_board == null)
{
project.text2 = "ผลรวมคณะกรรมการ -";
}
if (project.twenty_one != null)
{
foreach (var v in project.twenty_one)
{
if (v.activity != null || v.activity != "")
int t = 1;
string a = "กิจกรรมที่ ";
if (v.activity != null)
{
v.activity = v.activity;
v.activity = a + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
foreach (var vv in v.twenty_ones)
@@ -266,7 +337,24 @@ namespace rmutr_report.Controllers
}
}
}
if (project.twenty_four != null)
{
foreach (var v in project.twenty_four)
{
int t = 1;
string a = "กิจกรรมที่ ";
if (v.activity != null)
{
v.activity = a + v.activity;
t++;
}
if (v.activity == null)
{
v.activity = null;
}
}
}
var _project = new List<project_principle_rationale>() { project };

View File

@@ -0,0 +1,20 @@
using System.Collections.Generic;
namespace rmutr_report.Models.RoThree
{
public class land_rent
{
public string budget_year { get; set; }
public decimal? total_amount { get; set; }
public List<land_rent_data_datail> data { get; set; }
}
public class land_rent_data_datail
{
public string list { get; set; }
public decimal? amount { get; set; }
public string unit { get; set; }
public decimal? unit_price { get; set; }
public decimal? total_amount { get; set; }
}
}

View File

@@ -1 +1 @@
17006398170547166
17007343045432872

View File

@@ -1 +1 @@
17006550334815667
17007343045432872

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="01/13/2021 00:11:35" ReportInfo.Modified="11/22/2023 19:09:59" ReportInfo.CreatorVersion="2021.1.0.0">
<Report ScriptLanguage="CSharp" ReportInfo.Created="01/13/2021 00:11:35" ReportInfo.Modified="11/23/2023 14:59:22" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="calculate_meeting_expenses" ReferenceName="calculate_meeting_expenses" DataType="null" Enabled="true">
<Column Name="budget_year" DataType="System.String"/>
@@ -96,31 +96,56 @@
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 2" Fill.Color="White" Font="TH SarabunPSK, 14.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell28" Border.Lines="All" Text="[calculate_meeting_expenses.data.disbursement_result]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt">
<TableCell Name="Cell28" Border.Lines="All" Text="[calculate_meeting_expenses.data.disbursement_result]" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH SarabunPSK, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 2" Fill.Color="White" Font="TH SarabunPSK, 14.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell29" Border.Lines="All" Text="[calculate_meeting_expenses.data.expense_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt">
<TableCell Name="Cell29" Border.Lines="All" Text="[calculate_meeting_expenses.data.expense_rate]" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH SarabunPSK, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 2" Fill.Color="White" Font="TH SarabunPSK, 14.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell30" Border.Lines="All" Text="[calculate_meeting_expenses.data.count_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt">
<TableCell Name="Cell30" Border.Lines="All" Text="[calculate_meeting_expenses.data.count_person]" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH SarabunPSK, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 2" Fill.Color="White" Font="TH SarabunPSK, 14.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell40" Border.Lines="All" Text="[calculate_meeting_expenses.data.count_meetings]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt">
<TableCell Name="Cell40" Border.Lines="All" Text="[calculate_meeting_expenses.data.count_meetings]" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH SarabunPSK, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 2" Fill.Color="White" Font="TH SarabunPSK, 14.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell78" Border.Lines="All" Text="[calculate_meeting_expenses.data.total]" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH SarabunPSK, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[calculate_meeting_expenses.data.topic_type]== 2" Fill.Color="White" Font="TH SarabunPSK, 14.25pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>

View File

@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="11/22/2023 17:49:07" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="land_rent" ReferenceName="land_rent" DataType="null" Enabled="true">
<Column Name="budget_year" DataType="System.String"/>
<Column Name="total_amount" DataType="System.Decimal"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="list" DataType="System.String"/>
<Column Name="amount" DataType="System.Decimal"/>
<Column Name="unit" DataType="System.String"/>
<Column Name="unit_price" DataType="System.Decimal"/>
<Column Name="total_amount" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="290" PaperHeight="1000" Watermark.Font="Arial, 60pt">
<PageHeaderBand Name="PageHeader1" Width="1020.6" Height="122.85">
<TextObject Name="Text40" Width="992.25" Height="37.8" Text="รายการค่าวัสดุ (คำของบประมาณรายจ่าย ปี [land_rent.budget_year])" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TableObject Name="Table14" Top="85.05" Width="992.25" Height="37.8" Border.Lines="All">
<TableColumn Name="Column70"/>
<TableColumn Name="Column92" Width="274.05"/>
<TableColumn Name="Column93" Width="132.3"/>
<TableColumn Name="Column94" Width="179.55"/>
<TableColumn Name="Column95" Width="170.1"/>
<TableColumn Name="Column96" Width="170.1"/>
<TableRow Name="Row14" Height="37.8">
<TableCell Name="Cell110" Border.Lines="All" Text="ลำดับที่" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TableCell Name="Cell152" Border.Lines="All" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TableCell Name="Cell153" Border.Lines="All" Text="จำนวน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TableCell Name="Cell154" Border.Lines="All" Text="หน่วย" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TableCell Name="Cell155" Border.Lines="All" Text="ราคา/หน่วย" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TableCell Name="Cell156" Border.Lines="All" Text="รวมราคา" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
</TableRow>
</TableObject>
<TextObject Name="Text41" Top="37.8" Width="992.25" Height="37.8" Text="ค่าเช่าที่ดิน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data1" Top="127.56" Width="1020.6">
<DataBand Name="Data2" Top="132.26" Width="1020.6" Height="37.8" DataSource="data">
<TableObject Name="Table17" Width="992.25" Height="37.8" Border.Lines="All">
<TableColumn Name="Column131"/>
<TableColumn Name="Column132" Width="274.05"/>
<TableColumn Name="Column133" Width="132.3"/>
<TableColumn Name="Column134" Width="179.55"/>
<TableColumn Name="Column135" Width="170.1"/>
<TableColumn Name="Column136" Width="170.1"/>
<TableRow Name="Row17" Height="37.8">
<TableCell Name="Cell191" Border.Lines="All" Text="[Row#]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
<TableCell Name="Cell192" Border.Lines="All" Text="[land_rent.data.list]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
<TableCell Name="Cell193" Border.Lines="All" Text="[land_rent.data.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
<TableCell Name="Cell194" Border.Lines="All" Text="[land_rent.data.unit]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
<TableCell Name="Cell195" Border.Lines="All" Text="[land_rent.data.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
<TableCell Name="Cell196" Border.Lines="All" Text="[land_rent.data.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary1" Top="174.77" Width="1020.6" Height="37.8">
<TableObject Name="Table18" Width="992.25" Height="37.8" Border.Lines="All">
<TableColumn Name="Column137"/>
<TableColumn Name="Column138" Width="274.05"/>
<TableColumn Name="Column139" Width="132.3"/>
<TableColumn Name="Column140" Width="179.55"/>
<TableColumn Name="Column141" Width="170.1"/>
<TableColumn Name="Column142" Width="170.1"/>
<TableRow Name="Row18" Height="37.8">
<TableCell Name="Cell197" Border.Lines="All" Text="รวม" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold" ColSpan="5"/>
<TableCell Name="Cell198" Border.Lines="All" Format="Custom" Format.Format="G" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TableCell Name="Cell199" Border.Lines="All" Format="Custom" Format.Format="G" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TableCell Name="Cell200" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TableCell Name="Cell201" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TableCell Name="Cell202" Border.Lines="All" Text="[land_rent.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
</TableRow>
</TableObject>
</ReportSummaryBand>
</ReportPage>
</Report>

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="11/21/2023 15:26:36" ReportInfo.CreatorVersion="2021.1.0.0">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="11/23/2023 14:35:10" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="project_principle_rationale" ReferenceName="project_principle_rationale" DataType="null" Enabled="true">
<Column Name="budget_year_name_th" DataType="System.String"/>
@@ -327,26 +327,26 @@
<TextObject Name="Text331" Top="189" Width="756" Height="28.35" Text="หน่วยงาน/คณะหลัก : [project_principle_rationale.faculty]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TextObject Name="Text332" Top="217.35" Width="756" Height="28.35" Text="พื้นที่หลัก : [project_principle_rationale.area]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 16pt, style=Bold"/>
</DataBand>
<DataBand Name="Data35" Top="308.2" Width="756">
<DataBand Name="Data1" Top="313.99" Width="756" Height="28.35" DataSource="activity">
<DataBand Name="Data35" Top="307.11" Width="756">
<DataBand Name="Data1" Top="311.81" Width="756" Height="28.35" DataSource="activity">
<TextObject Name="Text200" Width="756" Height="28.35" Text="[project_principle_rationale.activity.activity]" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data9" Top="348.14" Width="756" Height="28.35">
<DataBand Name="Data9" Top="344.87" Width="756" Height="28.35">
<TextObject Name="Text201" Width="756" Height="28.35" Text="2.ลักษณะกิจกรรมโครงการ" AutoShrink="FontSize" AutoShrinkMinSize="11" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data33" Top="382.29" Width="756" Height="28.35" DataSource="project_activity_style">
<DataBand Name="Data33" Top="377.92" Width="756" Height="28.35" DataSource="project_activity_style">
<TextObject Name="Text298" Width="756" Height="28.35" Text="[project_principle_rationale.project_activity_style.style]" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data2" Top="416.44" Width="756" Height="189" DataSource="project_principle_rationale">
<TextObject Name="Text203" Top="160.65" Width="756" Height="28.35" Text="4.วัตถุประสงค์" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data2" Top="410.98" Width="756" Height="217.35" DataSource="project_principle_rationale">
<TextObject Name="Text203" Top="189" Width="756" Height="28.35" Text="4.วัตถุประสงค์" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text296" Width="756" Height="28.35" Text="3.หลักการและเหตุผล" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text333" Top="28.35" Width="756" Height="132.3" Text="[project_principle_rationale.principles_reasons]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data3" Top="611.23" Width="756" Height="189" DataSource="sixth">
<TextObject Name="Text333" Top="28.35" Width="756" Height="160.65" Text="[project_principle_rationale.principles_reasons]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data3" Top="633.04" Width="756" Height="189" DataSource="sixth">
<TextObject Name="Text73" Width="756" Height="189" Text="[project_principle_rationale.sixth.objective]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data43" Top="806.03" Width="756" Height="255.15">
<DataBand Name="Data43" Top="826.74" Width="756" Height="283.5">
<TextObject Name="Text204" Width="756" Height="28.35" Text="5. โครงการนี้สอดคล้องกับแผนยุทธศาสตร์ชาติ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text50" Top="28.35" Width="132.3" Height="28.35" Text="แผนยุทธศาสตร์ชาติ :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text51" Left="132.3" Top="28.35" Width="623.7" Height="28.35" Text="[project_principle_rationale.strategic_plan]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
@@ -359,10 +359,10 @@
<TextObject Name="Text59" Left="66.15" Top="170.1" Width="689.85" Height="56.7" Text="[project_principle_rationale.target_third]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text68" Left="132.3" Top="141.75" Width="623.7" Height="28.35" Text="[project_principle_rationale.country_reform_plan]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text60" Top="226.8" Width="66.15" Height="28.35" Text="ประเด็น :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text61" Left="66.15" Top="226.8" Width="689.85" Height="28.35" Text="[project_principle_rationale.subject_third]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text61" Left="66.15" Top="226.8" Width="689.85" Height="56.7" Text="[project_principle_rationale.subject_third]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text57" Top="141.75" Width="132.3" Height="28.35" Text="แผนปฏิรูปประเทศ :" Font="TH SarabunPSK, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data4" Top="1066.98" Width="756" Height="198.45">
<DataBand Name="Data4" Top="1114.95" Width="756" Height="198.45">
<TextObject Name="Text205" Width="756" Height="28.35" Text="7. โครงการนี้สอดคล้องกับแผนพัฒนาเศรษกิจและสังคมแห่งชาติ ฉบับที่ 13" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text64" Top="85.05" Width="75.6" Height="28.35" Text="เป้าหมาย : " Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text65" Left="75.6" Top="85.05" Width="680.4" Height="28.35" Text="[project_principle_rationale.target_fourth]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
@@ -371,12 +371,12 @@
<TextObject Name="Text69" Left="179.55" Top="28.35" Width="576.45" Height="56.7" Text="[project_principle_rationale.pin]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text299" Top="28.35" Width="179.55" Height="56.7" Text="ความสอดคล้องกับแผนพัฒนา&#13;&#10;เศรษกิจและสังคมแห่งชาติ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text300" Top="170.1" Width="756" Height="28.35" Text="8. ความสอดคล้องกับยุทธศาสตร์การพัฒนามหาวิทยาลัย" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data58" Top="1271.22" Width="756" Height="94.5" DataSource="eighth">
<DataBand Name="Data58" Top="1318.1" Width="756" Height="94.5" DataSource="eighth">
<TextObject Name="Text139" Top="47.25" Width="756" Height="47.25" Text="กลยุทธ์ [project_principle_rationale.eighth.measure]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text84" Width="756" Height="47.25" Text="ประเด็นยุทธศาสตร์ที่ [project_principle_rationale.eighth.strategic_issues]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data45" Top="1371.52" Width="756" Height="283.5">
<DataBand Name="Data45" Top="1417.31" Width="756" Height="283.5">
<TextObject Name="Text207" Top="113.4" Width="756" Height="28.35" Text="10. ความสอดคล้องกับเป้าหมายการให้บริการกระทรวง" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text97" Left="170.1" Top="141.75" Width="585.9" Height="56.7" Text="[project_principle_rationale.subject_eleventh]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text304" Top="141.75" Width="170.1" Height="56.7" Text="ความสอดคล้องกับเป้าหมาย&#13;&#10;การให้บริการกระทรวง" Font="TH SarabunPSK, 14pt, style=Bold"/>
@@ -388,36 +388,36 @@
<TextObject Name="Text99" Top="28.35" Width="737.1" Height="28.35" Text="ประเด็นยุทธศาสตร์ที่ [project_principle_rationale.strategic_issues_thirteenth]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text303" Width="756" Height="28.35" Text="9. ความสอดคล้องกับยุทธศาสตร์ หน่วยงาน/คณะ" Font="TH SarabunPSK, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data44" Top="1660.82" Width="756" Height="28.35">
<DataBand Name="Data44" Top="1705.51" Width="756" Height="28.35">
<TextObject Name="Text308" Width="756" Height="28.35" Text="12. โครงการนี้สอดคล้องกับตัวชี้วัดผลสัมฤทธิ์และตัวชี้วัดเชิงนโยบายของแผนกลยุทธ์มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์ด้านใด" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data49" Top="1694.97" Width="756" Height="28.35" DataSource="ninth">
<TextObject Name="Text86" Left="66.15" Width="557.55" Height="28.35" Text="[project_principle_rationale.ninth.clause]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data52" Top="1729.11" Width="756" Height="37.8" DataSource="ninths">
<TextObject Name="Text87" Left="113.4" Width="642.6" Height="37.8" Text="[project_principle_rationale.ninth.ninths.detail]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data49" Top="1738.57" Width="756" Height="28.35" DataSource="ninth">
<TextObject Name="Text86" Left="66.15" Width="689.85" Height="28.35" Text="[project_principle_rationale.ninth.clause]" AutoShrink="FontSize" AutoShrinkMinSize="11" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data52" Top="1771.63" Width="756" Height="37.8" DataSource="ninths">
<TextObject Name="Text87" Left="94.5" Width="642.6" Height="37.8" Text="[project_principle_rationale.ninth.ninths.detail]" AutoShrink="FontSize" AutoShrinkMinSize="11" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data53" Top="1772.71" Width="756" Height="236.25">
<DataBand Name="Data53" Top="1814.13" Width="756" Height="236.25">
<TextObject Name="Text88" Left="66.15" Width="463.05" Height="28.35" Text="อธิบายความสอดคล้อง" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text89" Left="113.4" Top="37.8" Width="642.6" Height="47.25" Text="[project_principle_rationale.explain_consistency1]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text89" Left="94.5" Top="37.8" Width="661.5" Height="47.25" Text="[project_principle_rationale.explain_consistency1]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text309" Top="85.05" Width="756" Height="28.35" Text="13. โครงการนี้สอดคล้องกับเป้าหมายการพัฒนาที่ยั่งยืน (Sustainable Development Goals : SDGs) ด้านใด" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text91" Left="66.15" Top="113.4" Width="689.85" Height="47.25" Text="[project_principle_rationale.tenth.target]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text311" Left="66.15" Top="160.65" Width="463.05" Height="28.35" Text="อธิบายความสอดคล้อง" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text312" Left="113.4" Top="189" Width="642.6" Height="47.25" Text="[project_principle_rationale.explain_consistency2]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text312" Left="94.5" Top="189" Width="661.5" Height="47.25" Text="[project_principle_rationale.explain_consistency2]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
</DataBand>
<DataBand Name="Data54" Top="2014.76" Width="756" Height="28.35">
<DataBand Name="Data54" Top="2055.09" Width="756" Height="28.35">
<TextObject Name="Text313" Width="756" Height="28.35" Text="14. ตัวบ่งชี้การประกันคุณภาพการศึกษาภายใน (สกอ)" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data55" Top="2048.9" Width="756" Height="103.95" DataSource="fourteenth">
<DataBand Name="Data55" Top="2088.14" Width="756" Height="103.95" DataSource="fourteenth">
<TextObject Name="Text317" Top="28.35" Width="756" Height="28.35" Text="ยุทธศาสตร์ หน่วยงาน/คณะ [project_principle_rationale.fourteenth.component]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text318" Top="56.7" Width="756" Height="47.25" Text="ตัวบ่งชีที่ [project_principle_rationale.fourteenth.indicator]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text315" Width="756" Height="28.35" Text="ระดับ [project_principle_rationale.fourteenth.level]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data50" Top="2158.65" Width="756" Height="28.35">
<DataBand Name="Data50" Top="2196.8" Width="756" Height="28.35">
<TextObject Name="Text209" Width="756" Height="28.35" Text="15. ผู้รับผิดชอบโครงการ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data51" Top="2192.8" Width="756" Height="28.35" DataSource="twenty_four">
<DataBand Name="Data51" Top="2229.86" Width="756" Height="28.35" DataSource="twenty_four">
<TextObject Name="Text210" Width="756" Height="28.35" Text="[project_principle_rationale.twenty_four.activity]" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data57" Top="2226.95" Width="756" Height="141.75" DataSource="twenty_fours">
<DataBand Name="Data57" Top="2262.91" Width="756" Height="141.75" DataSource="twenty_fours">
<TextObject Name="Text32" Top="113.4" Width="756" Height="28.35" Text="อีเมล [project_principle_rationale.twenty_four.twenty_fours.email]" Font="TH SarabunPSK, 14pt">
<Formats>
<NumberFormat/>
@@ -457,11 +457,11 @@
<TextObject Name="Text30" Top="56.7" Width="756" Height="28.35" Text="16. สถานที่ดำเนินงาน" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text240" Width="756" Height="28.35" Text="แบบฟอร์มการเขียนโครงการอนุรักษ์พันธุกรรมพืชอันเนื่องมาจากพระราชดำริฯ" HorzAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TextObject Name="Text241" Top="28.35" Width="756" Height="28.35" Text="สมเด็จพระเทพรัตนราชสุดาฯ สยามบรมราชกุมารี" HorzAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<DataBand Name="Data18" Top="90.85" Width="756" Height="28.35" DataSource="seventeenth">
<DataBand Name="Data18" Top="89.76" Width="756" Height="28.35" DataSource="seventeenth">
<TextObject Name="Text112" Left="9.45" Width="746.55" Height="28.35" Text="[project_principle_rationale.seventeenth.activity]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data19" Top="124.99" Width="756" Height="24.38" DataSource="seventeenths">
<DataBand Name="Data19" Top="122.81" Width="756" Height="24.38" DataSource="seventeenths">
<TextObject Name="Text138" Left="9.45" Top="-3.97" Width="746.55" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.the_time]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data20" Top="155.17" Width="756" Height="58.21" DataSource="seventeenths2">
<DataBand Name="Data20" Top="151.9" Width="756" Height="58.21" DataSource="seventeenths2">
<TextObject Name="Text114" Left="226.8" Top="1.51" Width="283.5" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.seventeenths2.area_province1]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH SarabunPSK, 12pt"/>
<TextObject Name="Text115" Left="510.3" Top="1.51" Width="245.7" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.seventeenths2.location1]" VertAlign="Center" Font="TH SarabunPSK, 12pt"/>
<TextObject Name="Text113" Left="9.45" Top="1.51" Width="217.35" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.seventeenths2.text1]" VertAlign="Center" Font="TH SarabunPSK, 12pt"/>
@@ -472,11 +472,11 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data21" Top="219.18" Width="756" Height="28.35">
<DataBand Name="Data21" Top="214.81" Width="756" Height="28.35">
<TextObject Name="Text39" Width="756" Height="28.35" Text="17. ระยะเวลาในการดำเนินงาน" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data6" Top="253.33" Width="756" Height="28.35" DataSource="eighteenth">
<DataBand Name="Data6" Top="247.87" Width="756" Height="28.35" DataSource="eighteenth">
<TextObject Name="Text143" Width="756" Height="28.35" Text="[project_principle_rationale.eighteenth.activity]" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data8" Top="287.47" Width="756" Height="113.4" DataSource="eighteenths">
<DataBand Name="Data8" Top="280.93" Width="756" Height="113.4" DataSource="eighteenths">
<TextObject Name="Text118" Left="9.45" Top="28.35" Width="132.3" Height="28.35" Text="วันที่เริ่มจัดทำโครงการ" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text119" Left="141.75" Top="28.35" Width="614.25" Height="28.35" Text="[project_principle_rationale.eighteenth.eighteenths.start_date]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text120" Left="9.45" Top="56.7" Width="132.3" Height="28.35" Text="วันที่เสร็จสิ้นโครงการ" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
@@ -486,9 +486,9 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data7" Top="406.67" Width="756" Height="28.35">
<DataBand Name="Data7" Top="399.03" Width="756" Height="28.35">
<TextObject Name="Text216" Width="756" Height="28.35" Text="18. กลุ่มเป้าหมายผู้ร่วมโครงการ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data10" Top="440.82" Width="756" Height="170.1" DataSource="sixteenths">
<DataBand Name="Data10" Top="432.09" Width="756" Height="170.1" DataSource="sixteenths">
<TableObject Name="Table1" Left="18.9" Top="141.75" Width="718.2" Height="28.35">
<TableColumn Name="Column1" Width="151.2"/>
<TableColumn Name="Column2" Width="132.3"/>
@@ -503,12 +503,12 @@
<TableCell Name="Cell5" Border.Lines="All" Text="วังไกลกังวล" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TextObject Name="Text137" Width="756" Height="28.35" Text="กิจกรรมที่ 1 [project_principle_rationale.sixteenths.activity_table]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text137" Width="756" Height="28.35" Text="[project_principle_rationale.sixteenths.activity_table]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text188" Top="56.7" Width="774.9" Height="28.35" Text="[project_principle_rationale.text1]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text189" Top="85.05" Width="774.9" Height="28.35" Text="[project_principle_rationale.text2]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text361" Top="113.4" Width="774.9" Height="28.35" Text="ผลรวมทั้งหมด [project_principle_rationale.count_activity]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text362" Top="28.35" Width="774.9" Height="28.35" Text="หน่วยนับ [project_principle_rationale.sixteenths.budget_unit_name_th]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data11" Top="616.71" Width="756" Height="28.35" DataSource="sixteenths2">
<DataBand Name="Data11" Top="606.89" Width="756" Height="28.35" DataSource="sixteenths2">
<TableObject Name="Table2" Left="18.9" Width="718.2" Height="28.35">
<TableColumn Name="Column6" Width="151.2"/>
<TableColumn Name="Column7" Width="132.3"/>
@@ -523,7 +523,7 @@
<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 SarabunPSK, 14pt"/>
</TableRow>
</TableObject>
<DataFooterBand Name="DataFooter1" Top="650.86" Width="756" Height="66.15">
<DataFooterBand Name="DataFooter1" Top="639.95" Width="756" Height="66.15">
<TableObject Name="Table34" Left="18.9" Width="718.2" Height="28.35">
<TableColumn Name="Column188" Width="151.2"/>
<TableColumn Name="Column189" Width="132.3"/>
@@ -550,12 +550,12 @@
<TextObject Name="Text242" Width="756" Height="28.35" Text="แบบฟอร์มการเขียนโครงการอนุรักษ์พันธุกรรมพืชอันเนื่องมาจากพระราชดำริฯ" HorzAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TextObject Name="Text243" Top="28.35" Width="756" Height="28.35" Text="สมเด็จพระเทพรัตนราชสุดาฯ สยามบรมราชกุมารี" HorzAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
</DataBand>
<DataBand Name="Data34" Top="90.85" Width="756" DataSource="nineteenth">
<DataBand Name="Data67" Top="96.64" Width="756" Height="47.25" DataSource="nineteenth_data_header">
<DataBand Name="Data34" Top="89.76" Width="756" DataSource="nineteenth">
<DataBand Name="Data67" Top="94.46" Width="756" Height="47.25" DataSource="nineteenth_data_header">
<TextObject Name="Text124" Top="28.35" Width="330.75" Height="18.9" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.text4]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text125" Left="387.45" Top="28.35" Width="321.3" Height="18.9" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.budget_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text145" Width="756" Height="28.35" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.activity]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data36" Top="259.44" Width="756" Height="28.35" DataSource="nineteenths_compensation">
<TextObject Name="Text145" Width="756" Height="28.35" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.activity]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data36" Top="255.07" Width="756" Height="28.35" DataSource="nineteenths_compensation">
<TableObject Name="Table28" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column118" Width="226.8"/>
<TableColumn Name="Column119" Width="103.95"/>
@@ -570,7 +570,7 @@
<TableCell Name="Cell172" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader1" Top="149.69" Width="756" Height="103.95">
<DataHeaderBand Name="DataHeader1" Top="146.42" Width="756" Height="103.95">
<TextObject Name="Text146" Left="28.35" Width="708.75" Height="28.35" Text="ค่าตอบแทน [FormatNumber([project_principle_rationale.nineteenth.total_compensation],2)] บาท (แสดงรายละเอียดให้ละเอียดชัดเจน)" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text147" Left="378" Width="330.75" Height="28.35" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableObject Name="Table3" Left="28.35" Top="28.35" Width="680.4" Height="47.25">
@@ -608,7 +608,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data37" Top="293.59" Width="756" Height="28.35" DataSource="nineteenths2_compensation">
<DataBand Name="Data37" Top="288.13" Width="756" Height="28.35" DataSource="nineteenths2_compensation">
<TableObject Name="Table5" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column17" Width="226.8"/>
<TableColumn Name="Column18" Width="103.95"/>
@@ -625,7 +625,7 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data68" Top="437.48" Width="756" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data68" Top="429.84" Width="756" Height="28.35" DataSource="nineteenths_expenses">
<TableObject Name="Table30" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column128" Width="226.8"/>
<TableColumn Name="Column129" Width="103.95"/>
@@ -640,7 +640,7 @@
<TableCell Name="Cell182" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader3" Top="327.73" Width="756" Height="103.95">
<DataHeaderBand Name="DataHeader3" Top="321.19" Width="756" Height="103.95">
<TextObject Name="Text128" Left="28.35" Width="708.75" Height="28.35" Text="ค่าใช้สอย [FormatNumber([project_principle_rationale.nineteenth.total_expenses],2)] บาท (แสดงรายละเอียดให้ละเอียดชัดเจน)" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableObject Name="Table6" Left="28.35" Top="28.35" Width="680.4" Height="47.25">
<TableColumn Name="Column22" Width="226.8"/>
@@ -677,7 +677,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data38" Top="471.63" Width="756" Height="28.35" DataSource="nineteenths_expenses1">
<DataBand Name="Data38" Top="462.9" Width="756" Height="28.35" DataSource="nineteenths_expenses1">
<TableObject Name="Table8" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column28" Width="226.8"/>
<TableColumn Name="Column29" Width="103.95"/>
@@ -694,7 +694,7 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data39" Top="558.82" Width="756" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data39" Top="547.91" Width="756" Height="28.35" DataSource="nineteenths_expenses">
<TableObject Name="Table31" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column133" Width="226.8"/>
<TableColumn Name="Column134" Width="103.95"/>
@@ -709,7 +709,7 @@
<TableCell Name="Cell187" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader4" Top="505.77" Width="756" Height="47.25">
<DataHeaderBand Name="DataHeader4" Top="495.95" Width="756" Height="47.25">
<TableObject Name="Table9" Left="28.35" Width="680.4" Height="47.25">
<TableColumn Name="Column33" Width="226.8"/>
<TableColumn Name="Column34" Width="311.85"/>
@@ -731,7 +731,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data40" Top="592.97" Width="756" Height="28.35" DataSource="nineteenths_expenses3">
<DataBand Name="Data40" Top="580.96" Width="756" Height="28.35" DataSource="nineteenths_expenses3">
<TableObject Name="Table48" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column220" Width="226.8"/>
<TableColumn Name="Column221" Width="103.95"/>
@@ -748,7 +748,7 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data41" Top="680.16" Width="756" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data41" Top="665.98" Width="756" Height="28.35" DataSource="nineteenths_expenses">
<TableObject Name="Table32" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column138" Width="226.8"/>
<TableColumn Name="Column139" Width="103.95"/>
@@ -763,7 +763,7 @@
<TableCell Name="Cell192" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader5" Top="627.12" Width="756" Height="47.25">
<DataHeaderBand Name="DataHeader5" Top="614.02" Width="756" Height="47.25">
<TableObject Name="Table12" Left="28.35" Width="680.4" Height="47.25">
<TableColumn Name="Column44" Width="226.8"/>
<TableColumn Name="Column45" Width="311.85"/>
@@ -785,7 +785,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data46" Top="714.31" Width="756" Height="28.35" DataSource="nineteenths_expenses4">
<DataBand Name="Data46" Top="699.03" Width="756" Height="28.35" DataSource="nineteenths_expenses4">
<TableObject Name="Table14" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column50" Width="226.8"/>
<TableColumn Name="Column51" Width="103.95"/>
@@ -802,7 +802,7 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data59" Top="801.5" Width="756" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data59" Top="784.04" Width="756" Height="28.35" DataSource="nineteenths_expenses">
<TableObject Name="Table46" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column208" Width="226.8"/>
<TableColumn Name="Column209" Width="103.95"/>
@@ -817,7 +817,7 @@
<TableCell Name="Cell262" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader7" Top="748.46" Width="756" Height="47.25">
<DataHeaderBand Name="DataHeader7" Top="732.09" Width="756" Height="47.25">
<TableObject Name="Table24" Left="28.35" Width="680.4" Height="47.25">
<TableColumn Name="Column197" Width="226.8"/>
<TableColumn Name="Column198" Width="311.85"/>
@@ -839,7 +839,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data60" Top="835.65" Width="756" Height="30.23" DataSource="nineteenths_expenses2">
<DataBand Name="Data60" Top="817.1" Width="756" Height="30.23" DataSource="nineteenths_expenses2">
<TableObject Name="Table49" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column225" Width="226.8"/>
<TableColumn Name="Column226" Width="103.95"/>
@@ -856,7 +856,7 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data47" Top="953.07" Width="756" Height="28.35">
<DataBand Name="Data47" Top="932.34" Width="756" Height="28.35">
<TableObject Name="Table33" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column143" Width="198.45"/>
<TableColumn Name="Column144" Width="236.25"/>
@@ -871,7 +871,7 @@
<TableCell Name="Cell197" Border.Lines="All" Fill.Color="192, 255, 255" Text="[project_principle_rationale.nineteenth.material]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader6" Top="871.68" Width="756" Height="75.6">
<DataHeaderBand Name="DataHeader6" Top="852.04" Width="756" Height="75.6">
<TextObject Name="Text133" Left="28.35" Width="708.75" Height="28.35" Text="ค่าวัสดุ / อุปกรณ์ [FormatNumber([project_principle_rationale.nineteenth.total_material],2)] บาท (แสดงรายละเอียดให้ละเอียดชัดเจน)" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableObject Name="Table15" Left="28.35" Top="28.35" Width="680.4" Height="47.25">
<TableColumn Name="Column55" Width="198.45"/>
@@ -888,7 +888,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data42" Top="987.22" Width="756" Height="28.35" DataSource="nineteenths_material">
<DataBand Name="Data42" Top="965.4" Width="756" Height="28.35" DataSource="nineteenths_material">
<TableObject Name="Table16" Left="28.35" Width="680.4" Height="28.35">
<TableColumn Name="Column60" Width="198.45"/>
<TableColumn Name="Column61" Width="236.25"/>
@@ -920,11 +920,11 @@
<TextObject Name="Text221" Left="28.35" Top="170.1" Width="151.2" Height="28.35" Text="กรุณาคลิกลิงค์เพื่อเปิดไฟล์" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text222" Left="179.55" Top="170.1" Width="576.45" Height="28.35" Hyperlink.Expression="[project_principle_rationale.url_file2]" Text="[project_principle_rationale.url_file2]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text217" Top="56.7" Width="756" Height="28.35" Text="งบลงทุน" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data13" Top="231.99" Width="756" Height="28.35" DataSource="nineteenth_style">
<DataBand Name="Data13" Top="231.51" Width="756" Height="28.35" DataSource="nineteenth_style">
<TextObject Name="Text224" Width="756" Height="28.35" Text="[project_principle_rationale.nineteenth_style.style]" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data14" Top="265.54" Width="756" Height="226.8">
<DataBand Name="Data14" Top="264.56" Width="756" Height="226.8">
<TextObject Name="Text225" Width="756" Height="28.35" Text="21. รูปแบบกิจกรรมการดำเนินงาน" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text226" Top="28.35" Width="756" Height="85.05" Text="[project_principle_rationale.operational_activitie]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text227" Top="113.4" Width="756" Height="28.35" Text="22. การประเมินผล" Font="TH SarabunPSK, 14pt, style=Bold"/>
@@ -970,7 +970,7 @@
<TextObject Name="Text246" Width="756" Height="28.35" Text="แบบฟอร์มการเขียนโครงการอนุรักษ์พันธุกรรมพืชอันเนื่องมาจากพระราชดำริฯ" HorzAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TextObject Name="Text247" Top="28.35" Width="756" Height="28.35" Text="สมเด็จพระเทพรัตนราชสุดาฯ สยามบรมราชกุมารี" HorzAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TextObject Name="Text259" Left="311.85" Top="85.05" Width="444.15" Height="28.35" Text="หน่วย : [project_principle_rationale.budget_amount] ล้านบาท" HorzAlign="Right" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data16" Top="165.84" Width="756" Height="37.8" DataSource="twentieth">
<DataBand Name="Data16" Top="165.36" Width="756" Height="37.8" DataSource="twentieth">
<TableObject Name="Table35" Width="756" Height="37.8">
<TableColumn Name="Column161" Width="302.4"/>
<TableColumn Name="Column162" Width="37.8"/>
@@ -1003,13 +1003,13 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data22" Top="208.84" Width="756" Height="66.15">
<DataBand Name="Data22" Top="207.86" Width="756" Height="66.15">
<TextObject Name="Text229" Top="9.45" Width="756" Height="28.35" Text="ส่วนที่ 2 ผลที่ได้รับ/ตัวชี้วัด/ผลลัพธ์/ผลกระทบที่เกิดขึ้น" HorzAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold, Underline"/>
<TextObject Name="Text230" Top="37.8" Width="756" Height="28.35" Text="24. ผลที่ได้รับจากโครงการ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data23" Top="280.18" Width="756" Height="66.15" DataSource="twenty_one">
<DataBand Name="Data23" Top="278.72" Width="756" Height="66.15" DataSource="twenty_one">
<TextObject Name="Text211" Width="756" Height="28.35" Text="[project_principle_rationale.twenty_one.activity]" AutoShrink="FontSize" AutoShrinkMinSize="12" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text337" Top="28.35" Width="756" Height="37.8" Text="[project_principle_rationale.twenty_one.remark]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data5" Top="351.53" Width="756" Height="774.9" DataSource="twenty_ones">
<DataBand Name="Data5" Top="349.57" Width="756" Height="774.9" DataSource="twenty_ones">
<TextObject Name="Text42" Left="37.8" Top="28.35" Width="718.2" Height="28.35" Text="[project_principle_rationale.twenty_one.twenty_ones.text1] [project_principle_rationale.twenty_one.twenty_ones.text11] [project_principle_rationale.twenty_one.twenty_ones.count_unit] [project_principle_rationale.twenty_one.twenty_ones.nuai_nap]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text43" Left="37.8" Top="113.4" Width="718.2" Height="28.35" Text="[project_principle_rationale.twenty_one.twenty_ones.text3] [project_principle_rationale.twenty_one.twenty_ones.count_training] [project_principle_rationale.twenty_one.twenty_ones.rueang]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text46" Left="37.8" Top="141.75" Width="718.2" Height="28.35" Text="[project_principle_rationale.twenty_one.twenty_ones.text4] [project_principle_rationale.twenty_one.twenty_ones.count_knowledge] [project_principle_rationale.twenty_one.twenty_ones.khrang3]" Font="TH SarabunPSK, 14pt"/>
@@ -1041,11 +1041,10 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data24" Top="1131.62" Width="756" Height="28.35">
<DataBand Name="Data24" Top="1129.18" Width="756" Height="28.35">
<TextObject Name="Text231" Width="756" Height="28.35" Text="25.ประเภทของผลผลิตโครงการ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data25" Top="1165.17" Width="756" Height="75.6" DataSource="seventeenth_thai">
<TextObject Name="Text232" Width="756" Height="28.35" Text="- [project_principle_rationale.seventeenth_thai.type_project]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text346" Left="37.8" Top="28.35" Width="1200.15" Height="47.25" Text="[project_principle_rationale.twenty_one.twenty_ones.results_4]" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data25" Top="1162.24" Width="756" Height="28.35" DataSource="seventeenth_thai">
<TextObject Name="Text232" Width="756" Height="28.35" Text="[project_principle_rationale.seventeenth_thai.type_project]" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
</ReportPage>

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="11/22/2023 14:50:49" ReportInfo.CreatorVersion="2021.1.0.0">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="11/23/2023 14:01:12" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="project_principle_rationale" ReferenceName="project_principle_rationale" DataType="null" Enabled="true">
<Column Name="budget_year_name_th" DataType="System.String"/>
@@ -307,7 +307,7 @@
<TextObject Name="Text48" Width="774.9" Height="28.35" Text="[project_principle_rationale.activity.activity]" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data3" Top="269.27" Width="774.9" Height="708.75" DataSource="project_principle_rationale">
<DataBand Name="Data3" Top="269.27" Width="774.9" Height="737.1" DataSource="project_principle_rationale">
<TextObject Name="Text49" Width="774.9" Height="28.35" Text="2. โครงการนี้สอดคล้องกับแผนยุทธศาสตร์ชาติ (รายละเอียดอยู่ในภาคผนวก)" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text50" Top="28.35" Width="132.3" Height="28.35" Text="แผนยุทธศาสตร์ชาติ :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text51" Left="122.85" Top="28.35" Width="652.05" Height="28.35" Text="[project_principle_rationale.strategic_plan]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
@@ -322,20 +322,21 @@
<TextObject Name="Text60" Top="226.8" Width="66.15" Height="28.35" Text="ประเด็น :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text61" Left="66.15" Top="226.8" Width="708.75" Height="28.35" Text="[project_principle_rationale.subject_third]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text62" Top="255.15" Width="774.9" Height="28.35" Text="4. โครงการนี้สอดคล้องกับแผนพัฒนาเศรษฐกิจและสังคมแห่งชาติ ฉบับที่ 13 (รายละเอียดอยู่ในภาคผนวก)" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text64" Top="311.85" Width="141.75" Height="28.35" Text="เป้าหมายหลักของแผน :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text65" Left="141.75" Top="311.85" Width="633.15" Height="28.35" Text="[project_principle_rationale.target_fourth]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text66" Top="340.2" Width="160.65" Height="28.35" Text="เป้าหมายระดับหมุดหมาย :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text67" Left="151.2" Top="340.2" Width="623.7" Height="56.7" Text="[project_principle_rationale.pin_fourth]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text64" Top="340.2" Width="141.75" Height="28.35" Text="เป้าหมายหลักของแผน :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text65" Left="141.75" Top="340.2" Width="633.15" Height="28.35" Text="[project_principle_rationale.target_fourth]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text66" Top="368.55" Width="160.65" Height="28.35" Text="เป้าหมายระดับหมุดหมาย :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text67" Left="151.2" Top="368.55" Width="623.7" Height="56.7" Text="[project_principle_rationale.pin_fourth]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text68" Left="122.85" Top="141.75" Width="652.05" Height="28.35" Text="[project_principle_rationale.country_reform_plan]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text69" Top="283.5" Width="774.9" Height="28.35" Text="[project_principle_rationale.pin]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text70" Top="396.9" Width="774.9" Height="28.35" Text="5. ความเป็นมาหรือหลักการและเหตุผล" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text71" Top="425.25" Width="784.35" Height="255.15" Text="[project_principle_rationale.principles_reasons]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="11" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text72" Top="680.4" Width="774.9" Height="28.35" Text="6. วัตถุประสงค์" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data66" Top="982.72" Width="774.9" Height="160.65" DataSource="sixth">
<TextObject Name="Text69" Left="198.45" Top="283.5" Width="576.45" Height="56.7" Text="[project_principle_rationale.pin]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text70" Top="425.25" Width="774.9" Height="28.35" Text="5. ความเป็นมาหรือหลักการและเหตุผล" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text71" Top="453.6" Width="784.35" Height="255.15" Text="[project_principle_rationale.principles_reasons]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="11" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text72" Top="708.75" Width="774.9" Height="28.35" Text="6. วัตถุประสงค์" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text363" Top="283.5" Width="245.7" Height="56.7" Text="ความสอดคล้องกับแผนพัฒนาเศรษกิจ&#13;&#10;และสังคมแห่งชาติ :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data66" Top="1011.07" Width="774.9" Height="160.65" DataSource="sixth">
<TextObject Name="Text73" Width="774.9" Height="160.65" CanGrow="true" CanShrink="true" CanBreak="false" Text="[project_principle_rationale.sixth.objective]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data4" Top="1148.08" Width="774.9" Height="141.75">
<DataBand Name="Data4" Top="1176.43" Width="774.9" Height="141.75">
<TextObject Name="Text74" Width="774.9" Height="28.35" Text="7. ความสอดคล้องกับอัตลักษณ์และเอกลักษณ์ของมหาวิทยาลัย" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text75" Left="47.25" Top="28.35" Width="75.6" Height="28.35" Text="อัตลักษณ์ :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text76" Left="113.4" Top="28.35" Width="661.5" Height="28.35" Text="[project_principle_rationale.identity1]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
@@ -346,83 +347,83 @@
<TextObject Name="Text199" Left="47.25" Top="113.4" Width="75.6" Height="28.35" Text="คำอธิบาย :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text200" Left="113.4" Top="113.4" Width="661.5" Height="28.35" Text="[project_principle_rationale.description2]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
<DataBand Name="Data42" Top="1294.54" Width="774.9" Height="28.35">
<DataBand Name="Data42" Top="1322.89" Width="774.9" Height="28.35">
<TextObject Name="Text83" Width="774.9" Height="28.35" Text="8. ความสอดคล้องกับยุทธศาสตร์การพัฒนามหาวิทยาลัย" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data43" Top="1327.59" Width="774.9" Height="94.5" DataSource="eighth">
<DataBand Name="Data43" Top="1355.94" Width="774.9" Height="94.5" DataSource="eighth">
<TextObject Name="Text84" Left="47.25" Width="803.25" Height="47.25" Text="ประเด็นยุทธศาสตร์ที่ [project_principle_rationale.eighth.strategic_issues]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text139" Left="47.25" Top="47.25" Width="1077.3" Height="47.25" Text="กลยุทธ์ [project_principle_rationale.eighth.measure]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="11" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data6" Top="1426.8" Width="774.9" Height="28.35">
<DataBand Name="Data6" Top="1455.15" Width="774.9" Height="28.35">
<TextObject Name="Text85" Width="774.9" Height="28.35" Text="9. ความสอดคล้องกับตัวชี้วัดผลสัมฤทธิ์" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data7" Top="1459.85" Width="774.9" Height="28.35" DataSource="ninth">
<DataBand Name="Data7" Top="1488.2" Width="774.9" Height="28.35" DataSource="ninth">
<TextObject Name="Text86" Left="47.25" Width="727.65" Height="28.35" Text="[project_principle_rationale.ninth.clause]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data12" Top="1492.91" Width="774.9" Height="37.8" DataSource="ninths">
<DataBand Name="Data12" Top="1521.26" Width="774.9" Height="37.8" DataSource="ninths">
<TextObject Name="Text87" Left="85.05" Width="689.85" Height="37.8" Text="[project_principle_rationale.ninth.ninths.detail]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data8" Top="1535.41" Width="774.9" Height="28.35">
<DataBand Name="Data8" Top="1563.76" Width="774.9" Height="28.35">
<TextObject Name="Text88" Left="47.25" Width="727.65" Height="28.35" Text="อธิบายความสอดคล้อง" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data9" Top="1568.47" Width="774.9" Height="28.35">
<DataBand Name="Data9" Top="1596.82" Width="774.9" Height="28.35">
<TextObject Name="Text89" Left="85.05" Width="935.55" Height="28.35" Text="[project_principle_rationale.explain_consistency1]" AutoShrink="FontSize" AutoShrinkMinSize="9" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data10" Top="1601.53" Width="774.9" Height="28.35">
<DataBand Name="Data10" Top="1629.88" Width="774.9" Height="28.35">
<TextObject Name="Text90" Width="774.9" Height="28.35" Text="10. ความสอดคล้องกับเป้าหมายการพัฒนาที่ยั่งยืน (Sustainable Development Goals : SDGs)" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data11" Top="1634.58" Width="774.9" Height="28.35" DataSource="tenth">
<DataBand Name="Data11" Top="1662.93" Width="774.9" Height="28.35" DataSource="tenth">
<TextObject Name="Text91" Left="47.25" Width="727.65" Height="28.35" Text="[project_principle_rationale.tenth.target]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data13" Top="1667.64" Width="774.9" Height="28.35">
<DataBand Name="Data13" Top="1695.99" Width="774.9" Height="28.35">
<TextObject Name="Text92" Left="47.25" Width="727.65" Height="28.35" Text="อธิบายความสอดคล้อง" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data14" Top="1700.69" Width="774.9" Height="28.35">
<DataBand Name="Data14" Top="1729.04" Width="774.9" Height="28.35">
<TextObject Name="Text93" Left="85.05" Width="689.85" Height="28.35" Text="[project_principle_rationale.explain_consistency2]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data15" Top="1733.75" Width="774.9" Height="28.35">
<DataBand Name="Data15" Top="1762.1" Width="774.9" Height="28.35">
<TextObject Name="Text94" Width="774.9" Height="28.35" Text="11. ความสอดคล้องกับเป้าหมายการให้บริการกระทรวง" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data16" Top="1766.81" Width="774.9" Height="28.35">
<DataBand Name="Data16" Top="1795.16" Width="774.9" Height="28.35">
<TextObject Name="Text95" Left="47.25" Width="727.65" Height="28.35" Text="[project_principle_rationale.subject_eleventh]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data17" Top="1799.86" Width="774.9" Height="28.35">
<DataBand Name="Data17" Top="1828.21" Width="774.9" Height="28.35">
<TextObject Name="Text96" Width="774.9" Height="28.35" Text="12. ความสอดคล้องกับเป้าหมายการให้บริการหน่วยงาน" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data18" Top="1832.92" Width="774.9" Height="28.35">
<DataBand Name="Data18" Top="1861.27" Width="774.9" Height="28.35">
<TextObject Name="Text97" Left="47.25" Width="727.65" Height="28.35" Text="[project_principle_rationale.subject_twelfth]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data19" Top="1865.97" Width="774.9" Height="113.4">
<DataBand Name="Data19" Top="1894.32" Width="774.9" Height="113.4">
<TextObject Name="Text98" Width="774.9" Height="28.35" Text="13. ความสอดคล้องกับยุทธศาสตร์ คณะ/หน่วยงานที่เสนอขอ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text99" Left="47.25" Top="28.35" Width="727.65" Height="28.35" Text="ประเด็นยุทธศาสตร์ที่ [project_principle_rationale.strategic_issues_thirteenth]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text100" Left="47.25" Top="56.7" Width="727.65" Height="28.35" Text="เรื่อง [project_principle_rationale.subject_thirteenth]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text101" Left="47.25" Top="85.05" Width="727.65" Height="28.35" Text="กลยุทธ์ [project_principle_rationale.strategy_thirteenth]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
<DataBand Name="Data20" Top="1984.08" Width="774.9" Height="28.35">
<DataBand Name="Data20" Top="2012.43" Width="774.9" Height="28.35">
<TextObject Name="Text102" Width="774.9" Height="28.35" Text="14. โครงการนี้สอดคล้องกับตัวบ่งชี้การประกันคุณภาพการศึกษาภายใน (สกอ.) ข้อใด" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data21" Top="2017.14" Width="774.9" Height="56.7" DataSource="fourteenth">
<DataBand Name="Data21" Top="2045.49" Width="774.9" Height="56.7" DataSource="fourteenth">
<TextObject Name="Text104" Left="349.65" Width="425.25" Height="28.35" Text="[project_principle_rationale.fourteenth.level]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold, Underline"/>
<TextObject Name="Text103" Left="56.7" Width="274.05" Height="28.35" Text="กรอบการประกันคุณภาพการศึกษาภายใน" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text105" Left="56.7" Top="28.35" Width="292.95" Height="28.35" Text="[project_principle_rationale.fourteenth.component]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text106" Left="349.65" Top="28.35" Width="453.6" Height="28.35" Text="[project_principle_rationale.fourteenth.indicator]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data22" Top="2078.54" Width="774.9" Height="28.35">
<DataBand Name="Data22" Top="2106.89" Width="774.9" Height="28.35">
<TextObject Name="Text107" Width="774.9" Height="28.35" Text="15. กิจกรรมการดำเนินงาน" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data23" Top="2111.6" Width="774.9" Height="28.35" DataSource="fifteenth">
<DataBand Name="Data23" Top="2139.95" Width="774.9" Height="28.35" DataSource="fifteenth">
<TextObject Name="Text108" Left="47.25" Width="727.65" Height="28.35" Text="[project_principle_rationale.fifteenth.activity]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</DataBand>
</DataBand>
<DataBand Name="Data24" Top="2144.65" Width="774.9" Height="141.75">
<DataBand Name="Data24" Top="2173" Width="774.9" Height="141.75">
<TextObject Name="Text109" Width="774.9" Height="28.35" Text="16. กลุ่มเป้าหมายผู้ร่วมโครงการ" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text188" Top="56.7" Width="774.9" Height="28.35" Text="[project_principle_rationale.text1]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text189" Top="85.05" Width="774.9" Height="28.35" Text="[project_principle_rationale.text2]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text361" Top="113.4" Width="774.9" Height="28.35" Text="ผลรวมทั้งหมด [project_principle_rationale.count_activity]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text362" Top="28.35" Width="774.9" Height="28.35" Text="หน่วยนับ [project_principle_rationale.sixteenths.budget_unit_name_th]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data31" Top="2291.11" Width="774.9" Height="28.35" DataSource="sixteenth">
<DataBand Name="Data31" Top="2319.46" Width="774.9" Height="28.35" DataSource="sixteenth">
<TextObject Name="Text136" Left="28.35" Width="746.55" Height="28.35" Text="[project_principle_rationale.sixteenth.activity]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data25" Top="2324.17" Width="774.9" Height="66.15" DataSource="sixteenths">
<DataBand Name="Data25" Top="2352.52" Width="774.9" Height="66.15" DataSource="sixteenths">
<TextObject Name="Text137" Left="28.35" Width="746.55" Height="28.35" Text="[project_principle_rationale.sixteenths.activity_table]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableObject Name="Table1" Left="28.35" Top="37.8" Width="718.2" Height="28.35">
<TableColumn Name="Column1" Width="151.2"/>
@@ -438,7 +439,7 @@
<TableCell Name="Cell5" Border.Lines="All" Text="วังไกลกังวล" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data45" Top="2395.02" Width="774.9" Height="28.35" DataSource="sixteenths2">
<DataBand Name="Data45" Top="2423.37" 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"/>
@@ -453,7 +454,7 @@
<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 SarabunPSK, 14pt"/>
</TableRow>
</TableObject>
<DataFooterBand Name="DataFooter2" Top="2428.08" Width="774.9" Height="66.15">
<DataFooterBand Name="DataFooter2" Top="2456.43" Width="774.9" Height="66.15">
<TextObject Name="Text110" Left="28.35" Top="28.35" Width="746.55" Height="37.8" Text="* หมายเหตุ ทั้งนี้วิทยากร,คณะกรรมการ, พนักงานขับรถ ไม่นับรวมเป็นผู้เข้าร่วมโครงการ" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TableObject Name="Table23" Left="28.35" Width="718.2" Height="28.35">
<TableColumn Name="Column125" Width="151.2"/>
@@ -473,13 +474,13 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data26" Top="2498.93" Width="774.9" Height="28.35">
<DataBand Name="Data26" Top="2527.28" Width="774.9" Height="28.35">
<TextObject Name="Text111" Width="774.9" Height="28.35" Text="17. สถานที่ดำเนินงาน" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data27" Top="2531.99" Width="774.9" Height="28.35" DataSource="seventeenth">
<DataBand Name="Data27" Top="2560.34" Width="774.9" Height="28.35" DataSource="seventeenth">
<TextObject Name="Text112" Left="28.35" Width="746.55" Height="28.35" Text="[project_principle_rationale.seventeenth.activity]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data28" Top="2565.04" Width="774.9" Height="28.35" DataSource="seventeenths">
<DataBand Name="Data28" Top="2593.39" Width="774.9" Height="28.35" DataSource="seventeenths">
<TextObject Name="Text138" Left="28.35" Width="746.55" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.the_time]" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data29" Top="2598.1" Width="774.9" Height="56.7" DataSource="seventeenths2">
<DataBand Name="Data29" Top="2626.45" 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 SarabunPSK, 14pt"/>
<TextObject Name="Text115" Left="463.05" Width="311.85" Height="28.35" Text="[project_principle_rationale.seventeenth.seventeenths.seventeenths2.location1]" VertAlign="Center" Font="TH SarabunPSK, 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 SarabunPSK, 14pt"/>
@@ -490,11 +491,11 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data30" Top="2659.51" Width="774.9" Height="28.35">
<DataBand Name="Data30" Top="2687.86" Width="774.9" Height="28.35">
<TextObject Name="Text116" Width="774.9" Height="28.35" Text="18. ระยะเวลาในการดำเนินงาน [project_principle_rationale.text3]" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data32" Top="2692.56" Width="774.9" Height="28.35" DataSource="eighteenth">
<DataBand Name="Data32" Top="2720.91" Width="774.9" Height="28.35" DataSource="eighteenth">
<TextObject Name="Text143" Width="774.9" Height="28.35" Text="[project_principle_rationale.eighteenth.activity]" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data33" Top="2725.62" Width="774.9" Height="85.05" DataSource="eighteenths">
<DataBand Name="Data33" Top="2753.97" 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 SarabunPSK, 14pt"/>
<TextObject Name="Text119" Left="179.55" Top="28.35" Width="491.4" Height="28.35" Text="[project_principle_rationale.eighteenth.eighteenths.start_date]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text120" Left="47.25" Top="56.7" Width="132.3" Height="28.35" Text="วันที่เสร็จสิ้นโครงการ" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
@@ -503,11 +504,11 @@
</DataBand>
</DataBand>
</DataBand>
<DataBand Name="Data48" Top="2815.37" Width="774.9" Height="28.35" DataSource="nineteenth">
<DataBand Name="Data48" Top="2843.72" Width="774.9" Height="28.35" DataSource="nineteenth">
<TextObject Name="Text122" Width="378" Height="28.35" Text="19. งบประมาณ" Font="TH SarabunPSK, 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 SarabunPSK, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data49" Top="2848.43" Width="774.9" Height="85.05" DataSource="nineteenth">
<DataBand Name="Data49" Top="2876.78" Width="774.9" Height="85.05" DataSource="nineteenth">
<TextObject Name="Text190" Left="47.25" Top="28.35" Width="330.75" Height="28.35" Text="ค่าใช้สอย" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text191" Left="396.9" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.total_compensation]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text192" Left="47.25" Width="330.75" Height="28.35" Text="ค่าตอบแทน" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH SarabunPSK, 14pt, style=Bold"/>
@@ -515,14 +516,14 @@
<TextObject Name="Text194" Left="47.25" Top="56.7" Width="330.75" Height="28.35" Text="ค่าวัสดุ / อุปกรณ์" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text195" Left="396.9" Top="56.7" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.total_material]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH SarabunPSK, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data34" Top="2938.19" Width="774.9" DataSource="nineteenth">
<DataBand Name="Data67" Top="2942.89" Width="774.9" Height="56.7" DataSource="nineteenth_data_header">
<DataBand Name="Data34" Top="2966.54" Width="774.9" DataSource="nineteenth">
<DataBand Name="Data67" Top="2971.24" Width="774.9" Height="56.7" DataSource="nineteenth_data_header">
<TextObject Name="Text124" Top="28.35" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.text4]" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text125" Left="396.9" Top="28.35" Width="330.75" Height="28.35" Text="[project_principle_rationale.nineteenth.nineteenth_data_header.budget_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" Font="TH SarabunPSK, 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 SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data36" Top="3084.6" Width="774.9" Height="28.35" DataSource="nineteenths_compensation">
<DataBand Name="Data36" Top="3112.95" 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 SarabunPSK, 14pt, style=Bold"/>
<DataHeaderBand Name="DataHeader1" Top="3004.3" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader1" Top="3032.65" Width="774.9" Height="75.6">
<TextObject Name="Text146" Left="47.25" Width="330.75" Height="28.35" Text="ค่าตอบแทน" Font="TH SarabunPSK, 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 SarabunPSK, 14pt, style=Bold"/>
<TableObject Name="Table3" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
@@ -546,7 +547,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data37" Top="3117.66" Width="774.9" Height="27.23" DataSource="nineteenths2_compensation">
<DataBand Name="Data37" Top="3146.01" 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"/>
@@ -561,14 +562,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 SarabunPSK, 14pt"/>
</TableRow>
</TableObject>
<DataFooterBand Name="DataFooter1" Top="3149.59" Width="774.9" Height="28.35">
<DataFooterBand Name="DataFooter1" Top="3177.95" Width="774.9" Height="28.35">
<TextObject Name="Text127" Left="47.25" Width="727.65" Height="28.35" Text="**หมายเหตุ : การบรรยายสามารถใช้วิทยากรได้เพียง 1 คนเท่านั้น" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataFooterBand>
</DataBand>
</DataBand>
<DataBand Name="Data68" Top="3262.96" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data68" Top="3291.31" 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 SarabunPSK, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader3" Top="3182.65" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader3" Top="3211" Width="774.9" Height="75.6">
<TextObject Name="Text128" Left="47.25" Width="330.75" Height="28.35" Text="ค่าใช้สอย" Font="TH SarabunPSK, 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 SarabunPSK, 14pt, style=Bold"/>
<TableObject Name="Table6" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
@@ -592,7 +593,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data38" Top="3296.01" Width="774.9" Height="28.35" DataSource="nineteenths_expenses1">
<DataBand Name="Data38" Top="3324.36" 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"/>
@@ -609,9 +610,9 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data39" Top="3381.02" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data39" Top="3409.37" 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_name3]" Font="TH SarabunPSK, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader4" Top="3329.07" Width="774.9" Height="47.25">
<DataHeaderBand Name="DataHeader4" Top="3357.42" 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"/>
@@ -633,7 +634,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data40" Top="3414.08" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
<DataBand Name="Data40" Top="3442.43" Width="774.9" Height="28.35" DataSource="nineteenths_expenses3">
<TableObject Name="Table47" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column220" Width="226.8"/>
<TableColumn Name="Column221" Width="103.95"/>
@@ -650,9 +651,9 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data41" Top="3499.09" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data41" Top="3527.44" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<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.header_name4]" Font="TH SarabunPSK, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader5" Top="3447.14" Width="774.9" Height="47.25">
<DataHeaderBand Name="DataHeader5" Top="3475.49" 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"/>
@@ -674,7 +675,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data46" Top="3532.15" Width="774.9" Height="28.35" DataSource="nineteenths_expenses4">
<DataBand Name="Data46" Top="3560.5" Width="774.9" Height="28.35" DataSource="nineteenths_expenses4">
<TableObject Name="Table14" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column50" Width="226.8"/>
<TableColumn Name="Column51" Width="103.95"/>
@@ -691,9 +692,9 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data54" Top="3617.16" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<DataBand Name="Data54" Top="3645.51" Width="774.9" Height="28.35" DataSource="nineteenths_expenses">
<TextObject Name="Text212" 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 SarabunPSK, 14pt, style=Bold, Underline"/>
<DataHeaderBand Name="DataHeader7" Top="3565.2" Width="774.9" Height="47.25">
<DataHeaderBand Name="DataHeader7" Top="3593.55" Width="774.9" Height="47.25">
<TableObject Name="Table24" Left="47.25" Width="680.4" Height="47.25">
<TableColumn Name="Column130" Width="226.8"/>
<TableColumn Name="Column131" Width="311.85"/>
@@ -715,7 +716,7 @@
</TableRow>
</TableObject>
</DataHeaderBand>
<DataBand Name="Data55" Top="3650.22" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
<DataBand Name="Data55" Top="3678.57" Width="774.9" Height="28.35" DataSource="nineteenths_expenses2">
<TableObject Name="Table48" Left="47.25" Width="680.4" Height="28.35">
<TableColumn Name="Column225" Width="226.8"/>
<TableColumn Name="Column226" Width="103.95"/>
@@ -732,7 +733,7 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data47" Top="3763.58" Width="774.9" Height="28.35" DataSource="nineteenths_material">
<DataBand Name="Data47" Top="3791.93" 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="236.25"/>
@@ -747,7 +748,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 SarabunPSK, 14pt"/>
</TableRow>
</TableObject>
<DataHeaderBand Name="DataHeader6" Top="3683.27" Width="774.9" Height="75.6">
<DataHeaderBand Name="DataHeader6" Top="3711.62" Width="774.9" Height="75.6">
<TextObject Name="Text133" Left="47.25" Width="444.15" Height="28.35" Text="ค่าวัสดุ / อุปกรณ์ (แสดงรายละเอียดการคำนวณให้ละเอียดชัดเจน)" Font="TH SarabunPSK, 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 SarabunPSK, 14pt, style=Bold"/>
<TableObject Name="Table15" Left="47.25" Top="28.35" Width="680.4" Height="47.25">
@@ -875,8 +876,8 @@
</DataBand>
<DataBand Name="Data69" Top="727.54" Width="774.9" Height="28.35">
<TextObject Name="Text24" Width="774.9" Height="28.35" Text="22. ผลที่คาดว่าจะได้รับ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data70" Top="760.59" 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 SarabunPSK, 14pt">
<DataBand Name="Data70" Top="760.59" Width="774.9" Height="94.5" DataSource="twenty_two">
<TextObject Name="Text25" Width="774.9" Height="94.5" Text="[project_principle_rationale.twenty_two.list]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt">
<Formats>
<NumberFormat/>
<GeneralFormat/>
@@ -884,22 +885,17 @@
</TextObject>
</DataBand>
</DataBand>
<DataBand Name="Data71" Top="793.65" Width="774.9" Height="28.35">
<DataBand Name="Data71" Top="859.8" Width="774.9" Height="28.35">
<TextObject Name="Text26" Width="774.9" Height="28.35" Text="23. การติดตามประเมินผล" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data72" Top="826.7" 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 SarabunPSK, 14pt">
<Formats>
<NumberFormat/>
<GeneralFormat/>
</Formats>
</TextObject>
<DataBand Name="Data72" Top="892.85" Width="774.9" Height="103.95" DataSource="twenty_three">
<TextObject Name="Text27" Width="774.9" Height="103.95" Text="[project_principle_rationale.twenty_three.list]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data73" Top="859.76" Width="774.9" Height="28.35">
<DataBand Name="Data73" Top="1001.51" Width="774.9" Height="28.35">
<TextObject Name="Text28" Width="774.9" Height="28.35" Text="24. ผู้รับผิดชอบโครงการ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data74" Top="892.81" Width="774.9" Height="28.35" DataSource="twenty_four">
<DataBand Name="Data74" Top="1034.56" 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 SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data61" Top="925.87" Width="774.9" Height="141.75" DataSource="twenty_fours">
<DataBand Name="Data61" Top="1067.62" 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.email]" Font="TH SarabunPSK, 14pt">
<Formats>
<NumberFormat/>
@@ -943,7 +939,7 @@
<TextObject Name="Text167" Width="1058.4" Height="37.8" Text="[project_principle_rationale.twenty_fifth.activity_display_name]" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text168" Top="37.8" Width="1058.4" Height="47.25" Text="[project_principle_rationale.twenty_fifth.activitys]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text169" Top="85.05" Width="1058.4" Height="28.35" Text="[project_principle_rationale.twenty_fifth.dates]" HorzAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text170" Top="113.4" Width="1058.4" Height="47.25" Text="[project_principle_rationale.twenty_fifth.locations]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text170" Top="113.4" Width="1058.4" Height="47.25" Text="[project_principle_rationale.twenty_fifth.locations]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" Font="TH SarabunPSK, 13pt"/>
<DataBand Name="Data59" Top="245.62" Width="1247.4" Height="47.25" DataSource="twenty_fifth_data_detail">
<TableObject Name="Table27" Width="1058.4" Height="47.25">
<TableColumn Name="Column215" Width="132.3"/>

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="11/21/2023 15:23:15" ReportInfo.CreatorVersion="2021.1.0.0">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="11/23/2023 14:34:46" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="project_principle_rationale" ReferenceName="project_principle_rationale" DataType="null" Enabled="true">
<Column Name="budget_year_name_th" DataType="System.String"/>
@@ -327,21 +327,21 @@
<TextObject Name="Text332" Top="198.45" Width="1247.4" Height="28.35" Text="พื้นที่หลัก : [project_principle_rationale.area]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TextObject Name="Text334" Left="1143.45" Width="103.95" Height="18.9" Text="แบบ ง.5 - (2)" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data35" Top="260.95" Width="1247.4" Height="28.35">
<DataBand Name="Data35" Top="259.86" Width="1247.4" Height="28.35">
<TextObject Name="Text45" Width="1247.4" Height="28.35" Text="1. ชื่อโครงการ : [project_principle_rationale.project]" AutoShrink="FontSize" AutoShrinkMinSize="12" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data1" Top="295.09" Width="1247.4" Height="28.35" DataSource="activity">
<DataBand Name="Data1" Top="292.91" Width="1247.4" Height="28.35" DataSource="activity">
<TextObject Name="Text200" Width="1247.4" Height="28.35" Text="[project_principle_rationale.activity.activity]" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data2" Top="329.24" Width="1247.4" Height="264.6">
<DataBand Name="Data2" Top="325.97" Width="1247.4" Height="264.6">
<TextObject Name="Text203" Top="236.25" Width="1247.4" Height="28.35" Text="3.วัตถุประสงค์" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text296" Width="1247.4" Height="28.35" Text="2. ความเป็นมาหรือหลักการและเหตุผล" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text333" Top="28.35" Width="1247.4" Height="207.9" Text="[project_principle_rationale.principles_reasons]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data9" Top="599.64" Width="1247.4" Height="189" DataSource="sixth">
<DataBand Name="Data9" Top="595.27" Width="1247.4" Height="189" DataSource="sixth">
<TextObject Name="Text73" Width="1247.4" Height="189" Text="[project_principle_rationale.sixth.objective]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data4" Top="794.44" Width="1247.4" Height="425.25" DataSource="project_principle_rationale">
<DataBand Name="Data4" Top="788.98" Width="1247.4" Height="425.25" DataSource="project_principle_rationale">
<TextObject Name="Text204" Width="1247.4" Height="28.35" Text="4. โครงการนี้สอดคล้องกับแผนยุทธศาสตร์ชาติ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text50" Top="28.35" Width="132.3" Height="28.35" Text="แผนยุทธศาสตร์ชาติ :" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text51" Left="132.3" Top="28.35" Width="1115.1" Height="28.35" Text="[project_principle_rationale.strategic_plan]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
@@ -364,14 +364,14 @@
<TextObject Name="Text66" Top="368.55" Width="75.6" Height="28.35" Text="ประเด็น : " Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text67" Left="75.6" Top="368.55" Width="1171.8" Height="56.7" Text="[project_principle_rationale.pin_fourth]" Font="TH SarabunPSK, 14pt"/>
</DataBand>
<DataBand Name="Data3" Top="1225.48" Width="1247.4" Height="28.35">
<DataBand Name="Data3" Top="1218.94" Width="1247.4" Height="28.35">
<TextObject Name="Text302" Width="1247.4" Height="28.35" Text="7. ความสอดคล้องกับยุทธศาสตร์การพัฒนามหาวิทยาลัย" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data5" Top="1259.63" Width="1247.4" Height="94.5" DataSource="eighth">
<TextObject Name="Text139" Top="47.25" Width="1247.4" Height="47.25" Text="กลยุทธ์ [project_principle_rationale.eighth.measure]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text84" Width="1247.4" Height="47.25" Text="ประเด็นยุทธศาสตร์ที่ [project_principle_rationale.eighth.strategic_issues]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data5" Top="1251.99" Width="1247.4" Height="113.4" DataSource="eighth">
<TextObject Name="Text139" Top="66.15" Width="1247.4" Height="47.25" Text="กลยุทธ์ [project_principle_rationale.eighth.measure]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text84" Width="1247.4" Height="66.15" Text="ประเด็นยุทธศาสตร์ที่ [project_principle_rationale.eighth.strategic_issues]" AutoWidth="true" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data27" Top="1359.93" Width="1247.4" Height="311.85">
<DataBand Name="Data27" Top="1370.1" Width="1247.4" Height="311.85">
<TextObject Name="Text207" Width="1247.4" Height="28.35" Text="8. ความสอดคล้องกับยุทธศาสตร์ หน่วยงาน/คณะ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text308" Top="113.4" Width="1247.4" Height="28.35" Text="9. ความสอดคล้องกับเป้าหมายการให้บริการกระทรวง" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text97" Left="170.1" Top="141.75" Width="1077.3" Height="56.7" Text="[project_principle_rationale.subject_eleventh]" Font="TH SarabunPSK, 14pt"/>
@@ -384,13 +384,13 @@
<TextObject Name="Text99" Top="28.35" Width="1247.4" Height="28.35" Text="ประเด็นยุทธศาสตร์ที่ [project_principle_rationale.strategic_issues_thirteenth]" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text309" Top="283.5" Width="1247.4" Height="28.35" Text="11. โครงการนี้สอดคล้องกับตัวชี้วัดผลสัมฤทธิ์และตัวชี้วัดเชิงนโยบายของแผนกลยุทธ์มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์ด้านใด" Font="TH SarabunPSK, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data28" Top="1677.57" Width="1247.4" Height="28.35" DataSource="ninth">
<DataBand Name="Data28" Top="1686.65" Width="1247.4" Height="28.35" DataSource="ninth">
<TextObject Name="Text86" Left="66.15" Width="1181.25" Height="28.35" Text="[project_principle_rationale.ninth.clause]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data33" Top="1711.72" Width="1247.4" Height="37.8" DataSource="ninths">
<DataBand Name="Data33" Top="1719.71" Width="1247.4" Height="37.8" DataSource="ninths">
<TextObject Name="Text87" Left="113.4" Width="1134" Height="37.8" Text="[project_principle_rationale.ninth.ninths.detail]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data51" Top="1755.32" Width="1247.4" Height="255.15" DataSource="project_principle_rationale">
<DataBand Name="Data51" Top="1762.21" Width="1247.4" Height="255.15" DataSource="project_principle_rationale">
<TextObject Name="Text88" Left="66.15" Width="1181.25" Height="28.35" Text="อธิบายความสอดคล้อง" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text89" Left="113.4" Top="28.35" Width="1134" Height="47.25" Text="[project_principle_rationale.explain_consistency1]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text310" Top="75.6" Width="1247.4" Height="28.35" Text="12. โครงการนี้สอดคล้องกับเป้าหมายการพัฒนาที่ยั่งยืน (Sustainable Development Goals : SDGs) ด้านใด" Font="TH SarabunPSK, 14pt, style=Bold"/>
@@ -398,17 +398,17 @@
<TextObject Name="Text311" Left="66.15" Top="151.2" Width="1181.25" Height="28.35" Text="อธิบายความสอดคล้อง" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text312" Left="113.4" Top="179.55" Width="1134" Height="47.25" Text="[project_principle_rationale.explain_consistency2]" AutoShrink="FontSize" AutoShrinkMinSize="9" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text313" Top="226.8" Width="1247.4" Height="28.35" Text="13. ตัวบ่งชี้การประกันคุณภาพการศึกษาภายใน (สกอ)" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data52" Top="2016.27" Width="1247.4" Height="103.95" DataSource="fourteenth">
<DataBand Name="Data52" Top="2022.07" Width="1247.4" Height="103.95" DataSource="fourteenth">
<TextObject Name="Text317" Top="28.35" Width="1247.4" Height="28.35" Text="ยุทธศาสตร์ หน่วยงาน/คณะ [project_principle_rationale.fourteenth.component]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text318" Top="56.7" Width="1247.4" Height="47.25" Text="ตัวบ่งชีที่ [project_principle_rationale.fourteenth.indicator]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text315" Width="1247.4" Height="28.35" Text="ระดับ [project_principle_rationale.fourteenth.level]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data29" Top="2126.01" Width="1247.4" Height="28.35" DataSource="twenty_four">
<DataBand Name="Data29" Top="2130.73" Width="1247.4" Height="28.35" DataSource="twenty_four">
<TextObject Name="Text209" Width="1247.4" Height="28.35" Text="14. ผู้รับผิดชอบโครงการ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data49" Top="2160.16" Width="1247.4" Height="28.35" DataSource="twenty_four">
<DataBand Name="Data49" Top="2163.78" Width="1247.4" Height="28.35" DataSource="twenty_four">
<TextObject Name="Text210" Width="1247.4" Height="28.35" Text="[project_principle_rationale.twenty_four.activity]" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data53" Top="2194.31" Width="1247.4" Height="141.75" DataSource="twenty_fours">
<DataBand Name="Data53" Top="2196.84" Width="1247.4" Height="141.75" DataSource="twenty_fours">
<TextObject Name="Text31" Top="56.7" Width="1247.4" Height="28.35" Text="เบอร์โทรศัพท์ภายใน [project_principle_rationale.twenty_four.twenty_fours.mobile_number]" Font="TH SarabunPSK, 14pt">
<Formats>
<NumberFormat/>
@@ -960,7 +960,7 @@
</TableObject>
<TextObject Name="Text323" Top="9.45" Width="1247.4" Height="28.35" Text="แบบฟอร์มการเขียนโครงการภายใต้ยุทธศาสตร์สำคัญของประเทศ" HorzAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TextObject Name="Text324" Left="1143.45" Width="103.95" Height="18.9" Text="แบบ ง.5 - (2)" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data57" Top="156.39" Width="1247.4" Height="37.8" DataSource="twentieth">
<DataBand Name="Data57" Top="155.91" Width="1247.4" Height="37.8" DataSource="twentieth">
<TableObject Name="Table18" Width="831.6" Height="37.8">
<TableColumn Name="Column78" Width="378"/>
<TableColumn Name="Column79" Width="37.8"/>
@@ -993,13 +993,13 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data58" Top="199.39" Width="1247.4" Height="37.8">
<DataBand Name="Data58" Top="198.41" Width="1247.4" Height="37.8">
<TextObject Name="Text37" Top="9.45" Width="1247.4" Height="28.35" Text="23. ผลที่ได้รับจากโครงการ" Font="TH SarabunPSK, 14pt, style=Bold"/>
</DataBand>
<DataBand Name="Data59" Top="242.38" Width="1247.4" Height="66.15" DataSource="twenty_one">
<DataBand Name="Data59" Top="240.92" Width="1247.4" Height="66.15" DataSource="twenty_one">
<TextObject Name="Text38" Width="1247.4" Height="28.35" Text="[project_principle_rationale.twenty_one.activity]" AutoShrink="FontSize" AutoShrinkMinSize="12" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text337" Top="28.35" Width="1247.4" Height="37.8" Text="[project_principle_rationale.twenty_one.remark]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data60" Top="313.73" Width="1247.4" Height="774.9" DataSource="twenty_ones">
<TextObject Name="Text337" Top="28.35" Width="1247.4" Height="37.8" Text="ระบุผลที่ได้รับจากโครงการ [project_principle_rationale.twenty_one.remark]" AutoShrink="FontSize" AutoShrinkMinSize="10" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data60" Top="311.77" Width="1247.4" Height="774.9" DataSource="twenty_ones">
<TextObject Name="Text42" Left="37.8" Top="28.35" Width="1200.15" Height="28.35" Text="[project_principle_rationale.twenty_one.twenty_ones.text1] [project_principle_rationale.twenty_one.twenty_ones.text11] [project_principle_rationale.twenty_one.twenty_ones.count_unit] [project_principle_rationale.twenty_one.twenty_ones.nuai_nap]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text43" Left="37.8" Top="113.4" Width="1200.15" Height="28.35" Text="[project_principle_rationale.twenty_one.twenty_ones.text3] [project_principle_rationale.twenty_one.twenty_ones.count_training] [project_principle_rationale.twenty_one.twenty_ones.rueang]" Font="TH SarabunPSK, 14pt"/>
<TextObject Name="Text46" Left="37.8" Top="141.75" Width="1200.15" Height="28.35" Text="[project_principle_rationale.twenty_one.twenty_ones.text4] [project_principle_rationale.twenty_one.twenty_ones.count_knowledge] [project_principle_rationale.twenty_one.twenty_ones.khrang3]" Font="TH SarabunPSK, 14pt"/>
@@ -1036,11 +1036,11 @@
<TextObject Name="Text231" Top="37.8" Width="812.7" Height="28.35" Text="24.ประเภทของผลผลิตโครงการ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TextObject Name="Text278" Top="9.45" Width="1247.4" Height="28.35" Text="แบบฟอร์มการเขียนโครงการภายใต้ยุทธศาสตร์สำคัญของประเทศ" HorzAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
<TextObject Name="Text279" Left="1086.75" Width="160.65" Height="18.9" Text="แบบ ง.5 - (2)" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<DataBand Name="Data25" Top="71.34" Width="1247.4" Height="28.35" DataSource="seventeenth_thai">
<TextObject Name="Text232" Width="812.7" Height="28.35" Text="- [project_principle_rationale.seventeenth_thai.type_project]" Font="TH SarabunPSK, 14pt"/>
<DataBand Name="Data25" Top="70.86" Width="1247.4" Height="28.35" DataSource="seventeenth_thai">
<TextObject Name="Text232" Width="812.7" Height="28.35" Text="[project_principle_rationale.seventeenth_thai.type_project]" Font="TH SarabunPSK, 14pt"/>
</DataBand>
</DataBand>
<DataBand Name="Data15" Top="104.89" Width="1247.4" Height="94.5">
<DataBand Name="Data15" Top="103.91" Width="1247.4" Height="94.5">
<TextObject Name="Text280" Width="812.7" Height="28.35" Text="25.เป้าหมายผลลัพธ์" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableObject Name="Table42" Left="56.7" Top="37.8" Width="756" Height="56.7">
<TableColumn Name="Column193" Width="359.1"/>
@@ -1058,7 +1058,7 @@
<TableCell Name="Cell246" Border.Lines="Top" Fill.Color="Gainsboro" Text="เชิงลบ (Negative)" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data16" Top="204.58" Width="1247.4" Height="75.6" DataSource="eighteenth_thai">
<DataBand Name="Data16" Top="203.12" Width="1247.4" Height="75.6" DataSource="eighteenth_thai">
<TableObject Name="Table38" Left="56.7" Width="756" Height="75.6">
<TableColumn Name="Column178" Width="365.4"/>
<TableColumn Name="Column179" Width="195.3"/>
@@ -1071,7 +1071,7 @@
</TableObject>
</DataBand>
</DataBand>
<DataBand Name="Data22" Top="285.38" Width="1247.4" Height="85.05">
<DataBand Name="Data22" Top="283.42" Width="1247.4" Height="85.05">
<TextObject Name="Text281" Width="812.7" Height="28.35" Text="26.ผลกระทบที่เกิดจากโครงการ" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableObject Name="Table39" Left="56.7" Top="28.35" Width="756" Height="56.7">
<TableColumn Name="Column181" Width="359.1"/>
@@ -1089,7 +1089,7 @@
<TableCell Name="Cell234" Border.Lines="Top" Fill.Color="Gainsboro" Text="เชิงลบ (Negative)" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data23" Top="375.62" Width="1247.4" Height="75.6" DataSource="nineteenth_thai">
<DataBand Name="Data23" Top="373.18" Width="1247.4" Height="75.6" DataSource="nineteenth_thai">
<TableObject Name="Table41" Left="56.7" Width="756" Height="75.6">
<TableColumn Name="Column185" Width="359.1"/>
<TableColumn Name="Column186" Width="198.45"/>