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