This commit is contained in:
@@ -12,6 +12,7 @@ using FastReport.Export.Pdf;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using rmutr_report.Models;
|
||||
using rmutr_report.Models.Personnel;
|
||||
using rmutr_report.Models.RoThree;
|
||||
using Swashbuckle.AspNetCore.Annotations;
|
||||
|
||||
namespace rmutr_report.Controllers
|
||||
@@ -3592,7 +3593,7 @@ namespace rmutr_report.Controllers
|
||||
public IActionResult GetBudgetAllocationReport([FromRoute] string type,
|
||||
[FromBody] estimate_income_expenses budget)
|
||||
{
|
||||
|
||||
|
||||
var summaryBudget = new List<estimate_income_expenses>() { budget };
|
||||
|
||||
Report report = new Report();
|
||||
@@ -3620,6 +3621,93 @@ namespace rmutr_report.Controllers
|
||||
"summary_income_allocation" + ".xlsx");
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
[SwaggerOperation("รวมทุกแผน")]
|
||||
[HttpPost, Route("reports/request_summary_all_plans/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetBudgetRequestSummaryReport([FromRoute] string type,
|
||||
[FromBody] request_summary requestSummary)
|
||||
{
|
||||
int row = 1;
|
||||
foreach (var requestSummaryDetail in requestSummary.data_1)
|
||||
{
|
||||
requestSummaryDetail.rowno = row.ToString();
|
||||
row++;
|
||||
}
|
||||
|
||||
|
||||
requestSummary.short_budget_year = requestSummary.budget_year.Substring(2, 2);
|
||||
var requestSummaries = new List<request_summary>() { requestSummary };
|
||||
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "all_plans.frx");
|
||||
report.RegisterData(requestSummaries, "request_summary");
|
||||
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.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
"request_summary" + ".xlsx");
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
[SwaggerOperation("แผนบูรณาการแผนยุทธศาสตร์")]
|
||||
[HttpPost, Route("reports/request_summary_integrated_strategic/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetBudgetRequestSummary2Report([FromRoute] string type,
|
||||
[FromBody] request_summary requestSummary)
|
||||
{
|
||||
requestSummary.short_budget_year = requestSummary.budget_year.Substring(2, 2);
|
||||
int row = 1;
|
||||
foreach (var requestSummaryDetail in requestSummary.data_1)
|
||||
{
|
||||
requestSummaryDetail.rowno = row.ToString();
|
||||
row++;
|
||||
}
|
||||
|
||||
var requestSummaries = new List<request_summary>() { requestSummary };
|
||||
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "integrated_strategic.frx");
|
||||
report.RegisterData(requestSummaries, "request_summary");
|
||||
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.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
"request_summary" + ".xlsx");
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
}
|
||||
|
||||
91
Models/budget/request_summary.cs
Normal file
91
Models/budget/request_summary.cs
Normal file
@@ -0,0 +1,91 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class request_summary
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string short_budget_year { get; set; }
|
||||
public decimal? total_amount_1 { get; set; }
|
||||
public decimal? total_amount_2 { get; set; }
|
||||
public decimal? total_amount_3 { get; set; }
|
||||
public decimal? total_amount_4 { get; set; }
|
||||
public decimal? total_amount_5 { get; set; }
|
||||
public decimal? total_amount_6 { get; set; }
|
||||
public decimal? total_amount_7 { get; set; }
|
||||
public decimal? total_amount_8 { get; set; }
|
||||
public decimal? total_amount_9 { get; set; }
|
||||
public decimal? total_amount_10 { get; set; }
|
||||
public decimal? total_amount_11 { get; set; }
|
||||
public decimal? total_amount_12 { get; set; }
|
||||
public decimal? total_amount_13 { get; set; }
|
||||
public decimal? total_amount_14 { get; set; }
|
||||
public List<request_summary_detail> data_1 { get; set; }
|
||||
}
|
||||
|
||||
public class request_summary_detail
|
||||
{
|
||||
public string rowno { get; set; }
|
||||
public string list { get; set; }
|
||||
public decimal? amount_1 { get; set; }
|
||||
public decimal? amount_2 { get; set; }
|
||||
public decimal? amount_3{ get; set; }
|
||||
public decimal? amount_4 { get; set; }
|
||||
public decimal? amount_5 { get; set; }
|
||||
public decimal? amount_6 { get; set; }
|
||||
public decimal? amount_7 { get; set; }
|
||||
public decimal? amount_8 { get; set; }
|
||||
public decimal? amount_9 { get; set; }
|
||||
public decimal? amount_10 { get; set; }
|
||||
public decimal? amount_11 { get; set; }
|
||||
public decimal? amount_12 { get; set; }
|
||||
public decimal? amount_13 { get; set; }
|
||||
public decimal? amount_14 { get; set; }
|
||||
public List<request_summary_detail2> data_2 { get; set; }
|
||||
}
|
||||
|
||||
public class request_summary_detail2
|
||||
{
|
||||
public string rowno { get; set; }
|
||||
public string list { get; set; }
|
||||
public decimal? amount_1 { get; set; }
|
||||
public decimal? amount_2 { get; set; }
|
||||
public decimal? amount_3{ get; set; }
|
||||
public decimal? amount_4 { get; set; }
|
||||
public decimal? amount_5 { get; set; }
|
||||
public decimal? amount_6 { get; set; }
|
||||
public decimal? amount_7 { get; set; }
|
||||
public decimal? amount_8 { get; set; }
|
||||
public decimal? amount_9 { get; set; }
|
||||
public decimal? amount_10 { get; set; }
|
||||
public decimal? amount_11 { get; set; }
|
||||
public decimal? amount_12 { get; set; }
|
||||
public decimal? amount_13 { get; set; }
|
||||
public decimal? amount_14 { get; set; }
|
||||
public bool? is_bold { get; set; }
|
||||
public string color { get; set; }
|
||||
public List<request_summary_detail3> data_3 { get; set; }
|
||||
}
|
||||
|
||||
public class request_summary_detail3
|
||||
{
|
||||
public string rowno { get; set; }
|
||||
public string list { get; set; }
|
||||
public decimal? amount_1 { get; set; }
|
||||
public decimal? amount_2 { get; set; }
|
||||
public decimal? amount_3{ get; set; }
|
||||
public decimal? amount_4 { get; set; }
|
||||
public decimal? amount_5 { get; set; }
|
||||
public decimal? amount_6 { get; set; }
|
||||
public decimal? amount_7 { get; set; }
|
||||
public decimal? amount_8 { get; set; }
|
||||
public decimal? amount_9 { get; set; }
|
||||
public decimal? amount_10 { get; set; }
|
||||
public decimal? amount_11 { get; set; }
|
||||
public decimal? amount_12 { get; set; }
|
||||
public decimal? amount_13 { get; set; }
|
||||
public decimal? amount_14 { get; set; }
|
||||
public bool? is_bold { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -14,7 +14,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("rmutr_report")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8f6a0b8c14684a10aba8a1bca94dac283d2e20ac")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e90a5c766b33cdcf3981c372f01427aaa5d3406")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("rmutr_report")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("rmutr_report")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
bfe575db8eb0a6ce7878fd59debeaf9f2f023ec0e656b8f34fd9a877f6d9582f
|
||||
e37de4c61d17f22f08c2b24c318ca3d8a5a1773c972482481d0c902920608456
|
||||
|
||||
@@ -14,7 +14,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("rmutr_report")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8f6a0b8c14684a10aba8a1bca94dac283d2e20ac")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e90a5c766b33cdcf3981c372f01427aaa5d3406")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("rmutr_report")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("rmutr_report")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
bfe575db8eb0a6ce7878fd59debeaf9f2f023ec0e656b8f34fd9a877f6d9582f
|
||||
e37de4c61d17f22f08c2b24c318ca3d8a5a1773c972482481d0c902920608456
|
||||
|
||||
@@ -1 +1 @@
|
||||
377111b3d1b7031d608d1278d8658e8b6f6ca9b2350700b1322226a3d0c15520
|
||||
dd01d0f6621f13fc6c7fdcdb9dd7e1054e3bb54fde4920b3b953636d89a59d30
|
||||
|
||||
@@ -1 +1 @@
|
||||
fde8a6f63407284f2bcd1c9b0bb1eb123543982b9dc3ae00f91bf72ae5c98bcf
|
||||
2a87f4d099a984a0e9253410e6f4597f90c3d03ecbe20d28d0efc2bffc02a7bc
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -48,6 +48,38 @@
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\academic_position_leave_graph.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\all_plans.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/rmutr_report</BasePath>
|
||||
<RelativePath>reports\all_plans.frx</RelativePath>
|
||||
<AssetKind></AssetKind>
|
||||
<AssetMode></AssetMode>
|
||||
<AssetRole></AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory></CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\all_plans.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\all_plans2.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/rmutr_report</BasePath>
|
||||
<RelativePath>reports\all_plans2.frx</RelativePath>
|
||||
<AssetKind></AssetKind>
|
||||
<AssetMode></AssetMode>
|
||||
<AssetRole></AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory></CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\all_plans2.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\appoint_higher_position.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
@@ -864,6 +896,22 @@
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\hr_summary_study_leave.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\integrated_strategic.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/rmutr_report</BasePath>
|
||||
<RelativePath>reports\integrated_strategic.frx</RelativePath>
|
||||
<AssetKind></AssetKind>
|
||||
<AssetMode></AssetMode>
|
||||
<AssetRole></AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory></CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\integrated_strategic.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\investment_budget_summary.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
|
||||
@@ -1 +1 @@
|
||||
33814906f52e0f8cfd7bb5360baea6c562ab42de0f2574d78acf3490ba1b4515
|
||||
5e2b0a0b0aae1729058a1b869c574d0d8376900c6cb993c5031e219c517c5065
|
||||
|
||||
@@ -1 +1 @@
|
||||
17246480032464415
|
||||
17246648982055188
|
||||
@@ -1 +1 @@
|
||||
17246485221009095
|
||||
17246762284769178
|
||||
573
wwwroot/reports/all_plans.frx
Normal file
573
wwwroot/reports/all_plans.frx
Normal file
@@ -0,0 +1,573 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/26/2024 19:23:53" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Windows.Forms;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using FastReport;
|
||||
using FastReport.Data;
|
||||
using FastReport.Dialog;
|
||||
using FastReport.Barcode;
|
||||
using FastReport.Table;
|
||||
using FastReport.Utils;
|
||||
|
||||
namespace FastReport
|
||||
{
|
||||
public class ReportScript
|
||||
{
|
||||
|
||||
|
||||
// private void Data2_AfterPrint(object sender, EventArgs e)
|
||||
// {
|
||||
// if ((String)Report.GetColumnValue("request_summary.data_1.data_2.color"))=="1"
|
||||
// Data2.FillColor = Color.blue;
|
||||
// }
|
||||
}
|
||||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="request_summary" ReferenceName="request_summary" DataType="null" Enabled="true">
|
||||
<Column Name="budget_year" DataType="System.String"/>
|
||||
<Column Name="short_budget_year" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="data_1" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="rowno" DataType="System.String"/>
|
||||
<Column Name="list" DataType="System.String"/>
|
||||
<Column Name="amount_1" DataType="System.Decimal"/>
|
||||
<Column Name="amount_2" DataType="System.Decimal"/>
|
||||
<Column Name="amount_3" DataType="System.Decimal"/>
|
||||
<Column Name="amount_4" DataType="System.Decimal"/>
|
||||
<Column Name="amount_5" DataType="System.Decimal"/>
|
||||
<Column Name="amount_6" DataType="System.Decimal"/>
|
||||
<Column Name="amount_7" DataType="System.Decimal"/>
|
||||
<Column Name="amount_8" DataType="System.Decimal"/>
|
||||
<Column Name="amount_9" DataType="System.Decimal"/>
|
||||
<Column Name="amount_10" DataType="System.Decimal"/>
|
||||
<Column Name="amount_11" DataType="System.Decimal"/>
|
||||
<Column Name="amount_12" DataType="System.Decimal"/>
|
||||
<Column Name="amount_13" DataType="System.Decimal"/>
|
||||
<Column Name="amount_14" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="data_2" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="rowno" DataType="System.String"/>
|
||||
<Column Name="list" DataType="System.String"/>
|
||||
<Column Name="amount_1" DataType="System.Decimal"/>
|
||||
<Column Name="amount_2" DataType="System.Decimal"/>
|
||||
<Column Name="amount_3" DataType="System.Decimal"/>
|
||||
<Column Name="amount_4" DataType="System.Decimal"/>
|
||||
<Column Name="amount_5" DataType="System.Decimal"/>
|
||||
<Column Name="amount_6" DataType="System.Decimal"/>
|
||||
<Column Name="amount_7" DataType="System.Decimal"/>
|
||||
<Column Name="amount_8" DataType="System.Decimal"/>
|
||||
<Column Name="amount_9" DataType="System.Decimal"/>
|
||||
<Column Name="amount_10" DataType="System.Decimal"/>
|
||||
<Column Name="amount_11" DataType="System.Decimal"/>
|
||||
<Column Name="amount_12" DataType="System.Decimal"/>
|
||||
<Column Name="amount_13" DataType="System.Decimal"/>
|
||||
<Column Name="amount_14" DataType="System.Decimal"/>
|
||||
<Column Name="is_bold" DataType="System.Boolean"/>
|
||||
<Column Name="color" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="data_3" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="rowno" DataType="System.String"/>
|
||||
<Column Name="list" DataType="System.String"/>
|
||||
<Column Name="amount_1" DataType="System.Decimal"/>
|
||||
<Column Name="amount_2" DataType="System.Decimal"/>
|
||||
<Column Name="amount_3" DataType="System.Decimal"/>
|
||||
<Column Name="amount_4" DataType="System.Decimal"/>
|
||||
<Column Name="amount_5" DataType="System.Decimal"/>
|
||||
<Column Name="amount_6" DataType="System.Decimal"/>
|
||||
<Column Name="amount_7" DataType="System.Decimal"/>
|
||||
<Column Name="amount_8" DataType="System.Decimal"/>
|
||||
<Column Name="amount_9" DataType="System.Decimal"/>
|
||||
<Column Name="amount_10" DataType="System.Decimal"/>
|
||||
<Column Name="amount_11" DataType="System.Decimal"/>
|
||||
<Column Name="amount_12" DataType="System.Decimal"/>
|
||||
<Column Name="amount_13" DataType="System.Decimal"/>
|
||||
<Column Name="amount_14" DataType="System.Decimal"/>
|
||||
<Column Name="is_bold" DataType="System.Boolean"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
<Column Name="total_amount_1" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_2" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_3" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_4" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_5" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_6" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_7" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_8" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_9" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_10" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_11" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_12" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_13" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_14" DataType="System.Decimal"/>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="640" PaperHeight="500" Watermark.Font="Arial, 60pt">
|
||||
<PageHeaderBand Name="PageHeader1" Width="2343.6" Height="311.85">
|
||||
<TextObject Name="Text40" Width="1578.15" Height="37.8" Text="งบประมาณแผ่นดิน ปีงบประมาณ พ.ศ. [request_summary.budget_year] (คำขอ)" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table15" Top="75.6" Width="2343.6" Height="236.25" Border.Lines="All">
|
||||
<TableColumn Name="Column110" Width="444.15"/>
|
||||
<TableColumn Name="Column111" Width="1899.45"/>
|
||||
<TableRow Name="Row15" Height="236.25">
|
||||
<TableCell Name="Cell170" Border.Lines="All" Text="งบรายจ่าย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell171" Border.Lines="All" Text="งบประมาณ [request_summary.budget_year] (คำขอ)" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text41" Top="37.8" Width="1578.15" Height="37.8" Text="มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์ " VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text42" Left="1993.95" Top="37.8" Width="349.65" Height="37.8" Text="รวมทุกแผน" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table18" Left="444.15" Top="103.95" Width="1899.45" Height="160.65" Border.Lines="All">
|
||||
<TableColumn Name="Column200" Width="132.3"/>
|
||||
<TableColumn Name="Column201" Width="132.3"/>
|
||||
<TableColumn Name="Column202" Width="132.3"/>
|
||||
<TableColumn Name="Column203" Width="132.3"/>
|
||||
<TableColumn Name="Column204" Width="132.3"/>
|
||||
<TableColumn Name="Column205" Width="132.3"/>
|
||||
<TableColumn Name="Column206" Width="132.3"/>
|
||||
<TableColumn Name="Column207" Width="141.75"/>
|
||||
<TableColumn Name="Column208" Width="132.3"/>
|
||||
<TableColumn Name="Column209" Width="141.75"/>
|
||||
<TableColumn Name="Column210" Width="151.2"/>
|
||||
<TableColumn Name="Column225" Width="141.75"/>
|
||||
<TableColumn Name="Column226" Width="132.3"/>
|
||||
<TableColumn Name="Column227" Width="132.3"/>
|
||||
<TableRow Name="Row18" Height="160.65">
|
||||
<TableCell Name="Cell260" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] วิทย์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell261" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] สังคม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell262" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] บริการวิชาการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell263" Border.Lines="All" Text=" ปี[request_summary.short_budget_year] ทำนุบำรุงศิลปะ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell264" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานบูรณาการ พัฒนาและส่งเสริมเศรษฐกิจ ฐานราก" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell265" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานบูรณาการ สร้างรายได้จากการท่องเที่ยว" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell266" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานบูรณาการ พัฒนาด้านคมนาคม และโลจิสติกส์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell267" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานบูรณาการ พัฒนาภาค " HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell268" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานบูรณาการ พัฒนาอุตสาหกรรม และบริการแห่งอนาคต" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell269" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนบูรณาการเตรียม ความพร้อมเพื่อ รองรับสังคมผู้สูงวัย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell270" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานยุทธศาสตร์ (โครงการสำคัญ)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell285" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานยุทธศาสตร์ ผู้ประกอบการและวิสาหกิจ ขนาดกลางและขนาดย่อมสู่สากล (SME)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell286" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานยุทธศาสตร์ฯ โครงการพัฒนาและ ผลิตกำลังคนของประเทศฯ Thailand 4.0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell287" Border.Lines="All" Text="งบประมาณ ปี [request_summary.short_budget_year]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table19" Left="444.15" Top="264.6" Width="1899.45" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column228" Width="132.3"/>
|
||||
<TableColumn Name="Column229" Width="132.3"/>
|
||||
<TableColumn Name="Column230" Width="132.3"/>
|
||||
<TableColumn Name="Column231" Width="132.3"/>
|
||||
<TableColumn Name="Column232" Width="132.3"/>
|
||||
<TableColumn Name="Column233" Width="132.3"/>
|
||||
<TableColumn Name="Column234" Width="132.3"/>
|
||||
<TableColumn Name="Column235" Width="141.75"/>
|
||||
<TableColumn Name="Column236" Width="132.3"/>
|
||||
<TableColumn Name="Column237" Width="141.75"/>
|
||||
<TableColumn Name="Column238" Width="151.2"/>
|
||||
<TableColumn Name="Column239" Width="141.75"/>
|
||||
<TableColumn Name="Column240" Width="132.3"/>
|
||||
<TableColumn Name="Column241" Width="132.3"/>
|
||||
<TableRow Name="Row19" Height="47.25">
|
||||
<TableCell Name="Cell288" Border.Lines="All" Text="[request_summary.total_amount_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell289" Border.Lines="All" Text="[request_summary.total_amount_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell290" Border.Lines="All" Text="[request_summary.total_amount_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell291" Border.Lines="All" Text="[request_summary.total_amount_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell292" Border.Lines="All" Text="[request_summary.total_amount_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell293" Border.Lines="All" Text="[request_summary.total_amount_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell294" Border.Lines="All" Text="[request_summary.total_amount_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell295" Border.Lines="All" Text="[request_summary.total_amount_8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell296" Border.Lines="All" Text="[request_summary.total_amount_9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell297" Border.Lines="All" Text="[request_summary.total_amount_10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell298" Border.Lines="All" Text="[request_summary.total_amount_11]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell299" Border.Lines="All" Text="[request_summary.total_amount_12]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell300" Border.Lines="All" Text="[request_summary.total_amount_13]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell301" Border.Lines="All" Text="[request_summary.total_amount_14]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="320.94" Width="2343.6">
|
||||
<DataBand Name="Data2" Top="330.03" Width="2343.6" Height="47.25" AfterPrintEvent="Data2_AfterPrint" DataSource="data_1">
|
||||
<TableObject Name="Table5" Width="2343.64" Height="47.25">
|
||||
<TableColumn Name="Column43" Width="444.17"/>
|
||||
<TableColumn Name="Column44" Width="132.32"/>
|
||||
<TableColumn Name="Column45" Width="132.3"/>
|
||||
<TableColumn Name="Column46" Width="132.3"/>
|
||||
<TableColumn Name="Column47" Width="132.3"/>
|
||||
<TableColumn Name="Column48" Width="132.3"/>
|
||||
<TableColumn Name="Column49" Width="132.3"/>
|
||||
<TableColumn Name="Column50" Width="132.3"/>
|
||||
<TableColumn Name="Column51" Width="141.75"/>
|
||||
<TableColumn Name="Column211" Width="132.3"/>
|
||||
<TableColumn Name="Column212" Width="141.75"/>
|
||||
<TableColumn Name="Column213" Width="151.2"/>
|
||||
<TableColumn Name="Column242" Width="141.75"/>
|
||||
<TableColumn Name="Column243" Width="132.3"/>
|
||||
<TableColumn Name="Column244" Width="132.3"/>
|
||||
<TableRow Name="Row5" Height="47.25">
|
||||
<TableCell Name="Cell43" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.rowno].[request_summary.data_1.list]" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell44" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell45" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell46" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell47" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell48" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell49" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell50" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell51" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell271" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell272" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell273" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_11]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell302" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_12]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell303" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_13]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell304" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_14]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data3" Top="386.37" Width="2343.6" Height="47.25" DataSource="data_2">
|
||||
<TableObject Name="Table3" Width="2343.64" Height="47.25">
|
||||
<TableColumn Name="Column25" Width="444.17"/>
|
||||
<TableColumn Name="Column26" Width="132.32"/>
|
||||
<TableColumn Name="Column27" Width="132.3"/>
|
||||
<TableColumn Name="Column28" Width="132.3"/>
|
||||
<TableColumn Name="Column29" Width="132.3"/>
|
||||
<TableColumn Name="Column30" Width="132.3"/>
|
||||
<TableColumn Name="Column40" Width="132.3"/>
|
||||
<TableColumn Name="Column78" Width="132.3"/>
|
||||
<TableColumn Name="Column275" Width="141.75"/>
|
||||
<TableColumn Name="Column276" Width="132.3"/>
|
||||
<TableColumn Name="Column277" Width="141.75"/>
|
||||
<TableColumn Name="Column278" Width="151.2"/>
|
||||
<TableColumn Name="Column279" Width="141.75"/>
|
||||
<TableColumn Name="Column280" Width="132.3"/>
|
||||
<TableColumn Name="Column281" Width="132.3"/>
|
||||
<TableRow Name="Row3" Height="47.25">
|
||||
<TableCell Name="Cell25" Border.Lines="All" Text="[request_summary.data_1.data_2.rowno][request_summary.data_1.data_2.list]" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell26" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell27" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_2]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell28" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell29" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell30" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell40" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell78" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell335" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_8]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell336" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_9]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell337" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_10]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell338" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_11]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell339" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_12]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell340" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_13]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell341" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_14]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "1"" Fill.Color="153, 204, 255" Font="TH Sarabun New, 12pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color]== "2"" Fill.Color="255, 204, 153" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[request_summary.data_1.data_2.color] == "3"" Fill.Color="255, 255, 204" Font="TH Sarabun New, 12pt" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data4" Top="442.71" Width="2343.6" Height="47.25" DataSource="data_3">
|
||||
<TableObject Name="Table21" Width="2343.64" Height="47.25">
|
||||
<TableColumn Name="Column260" Width="444.17"/>
|
||||
<TableColumn Name="Column261" Width="132.32"/>
|
||||
<TableColumn Name="Column262" Width="132.3"/>
|
||||
<TableColumn Name="Column263" Width="132.3"/>
|
||||
<TableColumn Name="Column264" Width="132.3"/>
|
||||
<TableColumn Name="Column265" Width="132.3"/>
|
||||
<TableColumn Name="Column266" Width="132.3"/>
|
||||
<TableColumn Name="Column267" Width="132.3"/>
|
||||
<TableColumn Name="Column268" Width="141.75"/>
|
||||
<TableColumn Name="Column269" Width="132.3"/>
|
||||
<TableColumn Name="Column270" Width="141.75"/>
|
||||
<TableColumn Name="Column271" Width="151.2"/>
|
||||
<TableColumn Name="Column272" Width="141.75"/>
|
||||
<TableColumn Name="Column273" Width="132.3"/>
|
||||
<TableColumn Name="Column274" Width="132.3"/>
|
||||
<TableRow Name="Row21" Height="47.25">
|
||||
<TableCell Name="Cell320" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.rowno][request_summary.data_1.data_2.data_3.list]" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell321" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_1]" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell322" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_2]" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell323" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell324" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell325" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell326" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell327" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell328" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_8]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell329" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_9]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell330" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_10]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell331" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_11]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell332" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_12]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell333" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_13]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell334" Border.Lines="All" Text="[request_summary.data_1.data_2.data_3.amount_14]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.data_3.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
283
wwwroot/reports/integrated_strategic.frx
Normal file
283
wwwroot/reports/integrated_strategic.frx
Normal file
@@ -0,0 +1,283 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/26/2024 19:39:50" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="request_summary" ReferenceName="request_summary" DataType="null" Enabled="true">
|
||||
<Column Name="budget_year" DataType="System.String"/>
|
||||
<Column Name="short_budget_year" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="data_1" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="rowno" DataType="System.String"/>
|
||||
<Column Name="list" DataType="System.String"/>
|
||||
<Column Name="amount_1" DataType="System.Decimal"/>
|
||||
<Column Name="amount_2" DataType="System.Decimal"/>
|
||||
<Column Name="amount_3" DataType="System.Decimal"/>
|
||||
<Column Name="amount_4" DataType="System.Decimal"/>
|
||||
<Column Name="amount_5" DataType="System.Decimal"/>
|
||||
<Column Name="amount_6" DataType="System.Decimal"/>
|
||||
<Column Name="amount_7" DataType="System.Decimal"/>
|
||||
<Column Name="amount_8" DataType="System.Decimal"/>
|
||||
<Column Name="amount_9" DataType="System.Decimal"/>
|
||||
<Column Name="amount_10" DataType="System.Decimal"/>
|
||||
<Column Name="amount_11" DataType="System.Decimal"/>
|
||||
<Column Name="amount_12" DataType="System.Decimal"/>
|
||||
<Column Name="amount_13" DataType="System.Decimal"/>
|
||||
<Column Name="amount_14" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="data_2" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="rowno" DataType="System.String"/>
|
||||
<Column Name="list" DataType="System.String"/>
|
||||
<Column Name="amount_1" DataType="System.Decimal"/>
|
||||
<Column Name="amount_2" DataType="System.Decimal"/>
|
||||
<Column Name="amount_3" DataType="System.Decimal"/>
|
||||
<Column Name="amount_4" DataType="System.Decimal"/>
|
||||
<Column Name="amount_5" DataType="System.Decimal"/>
|
||||
<Column Name="amount_6" DataType="System.Decimal"/>
|
||||
<Column Name="amount_7" DataType="System.Decimal"/>
|
||||
<Column Name="amount_8" DataType="System.Decimal"/>
|
||||
<Column Name="amount_9" DataType="System.Decimal"/>
|
||||
<Column Name="amount_10" DataType="System.Decimal"/>
|
||||
<Column Name="amount_11" DataType="System.Decimal"/>
|
||||
<Column Name="amount_12" DataType="System.Decimal"/>
|
||||
<Column Name="amount_13" DataType="System.Decimal"/>
|
||||
<Column Name="amount_14" DataType="System.Decimal"/>
|
||||
<Column Name="is_bold" DataType="System.Boolean"/>
|
||||
<Column Name="color" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="data_3" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="rowno" DataType="System.String"/>
|
||||
<Column Name="list" DataType="System.String"/>
|
||||
<Column Name="amount_1" DataType="System.Decimal"/>
|
||||
<Column Name="amount_2" DataType="System.Decimal"/>
|
||||
<Column Name="amount_3" DataType="System.Decimal"/>
|
||||
<Column Name="amount_4" DataType="System.Decimal"/>
|
||||
<Column Name="amount_5" DataType="System.Decimal"/>
|
||||
<Column Name="amount_6" DataType="System.Decimal"/>
|
||||
<Column Name="amount_7" DataType="System.Decimal"/>
|
||||
<Column Name="amount_8" DataType="System.Decimal"/>
|
||||
<Column Name="amount_9" DataType="System.Decimal"/>
|
||||
<Column Name="amount_10" DataType="System.Decimal"/>
|
||||
<Column Name="amount_11" DataType="System.Decimal"/>
|
||||
<Column Name="amount_12" DataType="System.Decimal"/>
|
||||
<Column Name="amount_13" DataType="System.Decimal"/>
|
||||
<Column Name="amount_14" DataType="System.Decimal"/>
|
||||
<Column Name="is_bold" DataType="System.Boolean"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
<Column Name="total_amount_1" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_2" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_3" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_4" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_5" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_6" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_7" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_8" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_9" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_10" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_11" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_12" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_13" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount_14" DataType="System.Decimal"/>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="495" PaperHeight="500" Watermark.Font="Arial, 60pt">
|
||||
<PageHeaderBand Name="PageHeader1" Width="1795.5" Height="311.85">
|
||||
<TextObject Name="Text40" Width="1578.15" Height="37.8" Text="งบประมาณแผ่นดิน ปีงบประมาณ พ.ศ. [request_summary.budget_year] (คำขอ)" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table15" Top="75.6" Width="1786.05" Height="236.25" Border.Lines="All">
|
||||
<TableColumn Name="Column110" Width="444.15"/>
|
||||
<TableColumn Name="Column111" Width="1341.9"/>
|
||||
<TableRow Name="Row15" Height="236.25">
|
||||
<TableCell Name="Cell170" Border.Lines="All" Text="งบรายจ่าย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell171" Border.Lines="All" Text="งบประมาณ [request_summary.budget_year] (คำขอ)" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text41" Top="37.8" Width="1578.15" Height="37.8" Text="มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์ " VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text42" Left="1436.4" Top="37.8" Width="349.65" Height="37.8" Text="แผนบูรณาการ+แผนยุทธศาสตร์" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table18" Left="444.15" Top="103.95" Width="1341.9" Height="160.65" Border.Lines="All">
|
||||
<TableColumn Name="Column200" Width="132.3"/>
|
||||
<TableColumn Name="Column201" Width="132.3"/>
|
||||
<TableColumn Name="Column202" Width="132.3"/>
|
||||
<TableColumn Name="Column203" Width="132.3"/>
|
||||
<TableColumn Name="Column204" Width="132.3"/>
|
||||
<TableColumn Name="Column205" Width="132.3"/>
|
||||
<TableColumn Name="Column206" Width="132.3"/>
|
||||
<TableColumn Name="Column207" Width="141.75"/>
|
||||
<TableColumn Name="Column208" Width="132.3"/>
|
||||
<TableColumn Name="Column209" Width="141.75"/>
|
||||
<TableRow Name="Row18" Height="160.65">
|
||||
<TableCell Name="Cell260" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานบูรณาการ พัฒนาและส่งเสริม เศรษฐกิจฐานราก" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell261" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานบูรณาการ สร้างรายได้ จากการท่องเที่ยว" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell262" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนบูรณาการ พัฒนาด้านคมนาคม และระบบโลจิสติกส์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell263" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนบูรณาการ พัฒนาภาค" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell264" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานบูรณาการ พัฒนาอุตสาหกรรม และบริการแห่งอนาคต" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell265" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนบูรณาการ เตรียมความพร้อม เพื่อรองรับสังคมผู้สูงวัย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell266" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานยุทธศาสตร์ (โครงการสำคัญ)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell267" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานยุทธศาสตร์ฯ โครงการพัฒนา และผลิตกำลังคน ของประเทศฯ Thailand 4.0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell268" Border.Lines="All" Text=" ปี [request_summary.short_budget_year] แผนงานยุทธศาสตร์ การพัฒนาผู้ประกอบการ และวิสาหกิจขนาดกลาง และขนาดย่อมสู่สากล (SME)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell269" Border.Lines="All" Text="งบประมาณ ปี [request_summary.short_budget_year]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table19" Left="444.15" Top="264.6" Width="1341.9" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column228" Width="132.3"/>
|
||||
<TableColumn Name="Column229" Width="132.3"/>
|
||||
<TableColumn Name="Column230" Width="132.3"/>
|
||||
<TableColumn Name="Column231" Width="132.3"/>
|
||||
<TableColumn Name="Column232" Width="132.3"/>
|
||||
<TableColumn Name="Column233" Width="132.3"/>
|
||||
<TableColumn Name="Column234" Width="132.3"/>
|
||||
<TableColumn Name="Column235" Width="141.75"/>
|
||||
<TableColumn Name="Column236" Width="132.3"/>
|
||||
<TableColumn Name="Column237" Width="141.75"/>
|
||||
<TableRow Name="Row19" Height="47.25">
|
||||
<TableCell Name="Cell288" Border.Lines="All" Text="[request_summary.total_amount_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell289" Border.Lines="All" Text="[request_summary.total_amount_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell290" Border.Lines="All" Text="[request_summary.total_amount_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell291" Border.Lines="All" Text="[request_summary.total_amount_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell292" Border.Lines="All" Text="[request_summary.total_amount_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell293" Border.Lines="All" Text="[request_summary.total_amount_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell294" Border.Lines="All" Text="[request_summary.total_amount_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell295" Border.Lines="All" Text="[request_summary.total_amount_8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell296" Border.Lines="All" Text="[request_summary.total_amount_9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell297" Border.Lines="All" Text="[request_summary.total_amount_10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="320.94" Width="1795.5" Height="47.25" DataSource="data_1">
|
||||
<TableObject Name="Table5" Width="1786.09" Height="47.25">
|
||||
<TableColumn Name="Column43" Width="444.17"/>
|
||||
<TableColumn Name="Column44" Width="132.32"/>
|
||||
<TableColumn Name="Column45" Width="132.3"/>
|
||||
<TableColumn Name="Column46" Width="132.3"/>
|
||||
<TableColumn Name="Column47" Width="132.3"/>
|
||||
<TableColumn Name="Column48" Width="132.3"/>
|
||||
<TableColumn Name="Column49" Width="132.3"/>
|
||||
<TableColumn Name="Column50" Width="132.3"/>
|
||||
<TableColumn Name="Column51" Width="141.75"/>
|
||||
<TableColumn Name="Column211" Width="132.3"/>
|
||||
<TableColumn Name="Column212" Width="141.75"/>
|
||||
<TableRow Name="Row5" Height="47.25">
|
||||
<TableCell Name="Cell43" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.rowno].[request_summary.data_1.list]" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell44" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell45" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell46" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell47" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell48" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell49" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell50" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell51" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell271" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TableCell Name="Cell272" Border.Lines="All" Fill.Color="204, 153, 255" Text="[request_summary.data_1.amount_10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data2" Top="377.28" Width="1795.5" Height="47.25" DataSource="data_2">
|
||||
<TableObject Name="Table20" Width="1786.09" Height="47.25">
|
||||
<TableColumn Name="Column245" Width="444.17"/>
|
||||
<TableColumn Name="Column246" Width="132.32"/>
|
||||
<TableColumn Name="Column247" Width="132.3"/>
|
||||
<TableColumn Name="Column248" Width="132.3"/>
|
||||
<TableColumn Name="Column249" Width="132.3"/>
|
||||
<TableColumn Name="Column250" Width="132.3"/>
|
||||
<TableColumn Name="Column251" Width="132.3"/>
|
||||
<TableColumn Name="Column252" Width="132.3"/>
|
||||
<TableColumn Name="Column253" Width="141.75"/>
|
||||
<TableColumn Name="Column254" Width="132.3"/>
|
||||
<TableColumn Name="Column255" Width="141.75"/>
|
||||
<TableRow Name="Row20" Height="47.25">
|
||||
<TableCell Name="Cell305" Border.Lines="All" Text="[request_summary.data_1.data_2.rowno][request_summary.data_1.data_2.list]" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell306" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_1]" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell307" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_2]" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell308" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell309" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell310" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell311" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell312" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell313" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_8]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell314" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_9]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell315" Border.Lines="All" Text="[request_summary.data_1.data_2.amount_10]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[request_summary.data_1.data_2.is_bold] == true" Font="TH Sarabun New, 12pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
Reference in New Issue
Block a user