Add report
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
kamonwan taengsuk
2024-02-16 14:13:50 +07:00
parent 5f44fa4ecb
commit aa6b674ced
26 changed files with 320 additions and 11 deletions

View File

@@ -3476,6 +3476,42 @@ namespace rmutr_report.Controllers
"student_overview" + ".xlsx"); "student_overview" + ".xlsx");
} }
return Ok();
}
[SwaggerOperation("สรุปงบประมาณรายจ่าย")]
[HttpPost, Route("reports/summary_budget_expense/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetBudgetSummaryExpenseReport([FromRoute] string type,
[FromBody] summary_budget_expense budget)
{
var summaryBudget = new List<summary_budget_expense>() { budget };
Report report = new Report();
report.Load(_setting.report_path + "summary_budget_expense.frx");
report.RegisterData(summaryBudget, "summary_budget_expense");
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",
"summary_budget_expense" + ".xlsx");
}
return Ok(); return Ok();
} }
} }

View File

@@ -0,0 +1,38 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class summary_budget_expense
{
public string budget_year { get; set; }
public string agency_name_th { get; set; }
public string budget_plan_name_th { get; set; }
public string parent_agency_name { get; set; }
public List<summary_budget_expense_detail> data { get; set; }
public decimal? total_equipment { get; set; }
public decimal? total_land_building { get; set; }
public decimal? total_subsidy { get; set; }
public decimal? total_compensation { get; set; }
public decimal? total_living_expenses { get; set; }
public decimal? total_material { get; set; }
public decimal? total_utilities { get; set; }
public decimal? total_other_expenses { get; set; }
public decimal? total_other_budget_expenses { get; set; }
public decimal? total_all { get; set; }
}
public class summary_budget_expense_detail
{
public string budget_project_name_th { get; set; }
public decimal? equipment { get; set; }
public decimal? land_building { get; set; }
public decimal? subsidy { get; set; }
public decimal? compensation { get; set; }
public decimal? living_expenses { get; set; }
public decimal? material { get; set; }
public decimal? utilities { get; set; }
public decimal? other_expenses { get; set; }
public decimal? other_budget_expenses { get; set; }
public decimal? total { get; set; }
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -14,7 +14,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyCompanyAttribute("rmutr_report")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+11d4269f2a953099a1a2e2a18a12481feb57743d")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5f44fa4ecbad606ad73975fffc8699ac8e1af4ea")]
[assembly: System.Reflection.AssemblyProductAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyProductAttribute("rmutr_report")]
[assembly: System.Reflection.AssemblyTitleAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyTitleAttribute("rmutr_report")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@@ -1 +1 @@
03b0534922c4aafb3191ccd7974eadf115d743c6c7b4b6da29d3cc29594325f0 1135665427bbeecf8c2ad531dc444d715aaefb436e07fb44d540ba2feb6dd557

View File

@@ -1 +1 @@
6f1697b6b3ee209a8dc6494f742f942d1069dcf6f0776195128b7d2b88e95220 814cbd923d0b771afb4468edd956b64b37aff6602890bfb34cfcf0a5743cec8f

View File

@@ -1 +1 @@
151a50b1ee190d1aeaee2cba3f62986c63ace172165d58d9d44da5f25e02d993 e2b740473ce2922e386ca29207bf0ddd8d311b9fa433e7d972dee6de2a5bd678

Binary file not shown.

Binary file not shown.

View File

@@ -2752,6 +2752,22 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_all_project_table.frx))</OriginalItemSpec> <OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_all_project_table.frx))</OriginalItemSpec>
</StaticWebAsset> </StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_budget_expense.frx))">
<SourceType>Package</SourceType>
<SourceId>rmutr_report</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/rmutr_report</BasePath>
<RelativePath>reports\summary_budget_expense.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\summary_budget_expense.frx))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_budget_university.frx))"> <StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_budget_university.frx))">
<SourceType>Package</SourceType> <SourceType>Package</SourceType>
<SourceId>rmutr_report</SourceId> <SourceId>rmutr_report</SourceId>

View File

@@ -1 +1 @@
3aa706f2c61e17142c6c20bf3e6e70812f5704e5e1fd08724f95f850b6ae70ed 3a5ed6e019ac50427c04c5dcc311649c0287e5ab2253e898c63f505c41bfa92f

View File

@@ -14,7 +14,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyCompanyAttribute("rmutr_report")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+da2936ee0d4f518eed75d681e659b829b5c83b70")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5f44fa4ecbad606ad73975fffc8699ac8e1af4ea")]
[assembly: System.Reflection.AssemblyProductAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyProductAttribute("rmutr_report")]
[assembly: System.Reflection.AssemblyTitleAttribute("rmutr_report")] [assembly: System.Reflection.AssemblyTitleAttribute("rmutr_report")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@@ -1 +1 @@
d422d09f7ef4c657f7792bcea4a4e378820d0b0f1fb3a5b9c031dcf2a2fae350 1135665427bbeecf8c2ad531dc444d715aaefb436e07fb44d540ba2feb6dd557

View File

@@ -1 +1 @@
9f60262dad61b3efce04caf2181f0daca67f75db1b054c8852d368c6ea861cba 814cbd923d0b771afb4468edd956b64b37aff6602890bfb34cfcf0a5743cec8f

View File

@@ -1 +1 @@
33fc03236a4722f554f10fac37fe989dc73f2aafe8cf22c724021db85b56c8dd da06089eb1c3be2785a14fe62b3131711b3e91545e14a70bec5baf07f6b78f23

View File

@@ -512,6 +512,22 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\durable_articles_threeold.frx))</OriginalItemSpec> <OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\durable_articles_threeold.frx))</OriginalItemSpec>
</StaticWebAsset> </StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\durable_articles_three_old.frx))">
<SourceType>Package</SourceType>
<SourceId>rmutr_report</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/rmutr_report</BasePath>
<RelativePath>reports\durable_articles_three_old.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\durable_articles_three_old.frx))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\expenditure_budget_proposal.frx))"> <StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\expenditure_budget_proposal.frx))">
<SourceType>Package</SourceType> <SourceType>Package</SourceType>
<SourceId>rmutr_report</SourceId> <SourceId>rmutr_report</SourceId>
@@ -2736,6 +2752,22 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_all_project_table.frx))</OriginalItemSpec> <OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_all_project_table.frx))</OriginalItemSpec>
</StaticWebAsset> </StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_budget_expense.frx))">
<SourceType>Package</SourceType>
<SourceId>rmutr_report</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/rmutr_report</BasePath>
<RelativePath>reports\summary_budget_expense.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\summary_budget_expense.frx))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_budget_university.frx))"> <StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_budget_university.frx))">
<SourceType>Package</SourceType> <SourceType>Package</SourceType>
<SourceId>rmutr_report</SourceId> <SourceId>rmutr_report</SourceId>

View File

@@ -1 +1 @@
0940c1c1a0b8dafd8584f37614446a60332eb78045fff61b1d37512d1601cad0 3a5ed6e019ac50427c04c5dcc311649c0287e5ab2253e898c63f505c41bfa92f

View File

@@ -1 +1 @@
17032367224993865 17080675174043013

View File

@@ -0,0 +1,187 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="01/13/2021 00:11:35" ReportInfo.Modified="02/16/2024 14:09:37" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="summary_budget_expense" ReferenceName="summary_budget_expense" DataType="null" Enabled="true">
<Column Name="budget_year" DataType="System.String"/>
<Column Name="agency_name_th" DataType="System.String"/>
<Column Name="budget_plan_name_th" DataType="System.String"/>
<Column Name="parent_agency_name" DataType="System.String"/>
<Column Name="total_equipment" DataType="System.Decimal"/>
<Column Name="total_land_building" DataType="System.Decimal"/>
<Column Name="total_subsidy" DataType="System.Decimal"/>
<Column Name="total_compensation" DataType="System.Decimal"/>
<Column Name="total_living_expenses" DataType="System.Decimal"/>
<Column Name="total_material" DataType="System.Decimal"/>
<Column Name="total_utilities" DataType="System.Decimal"/>
<Column Name="total_other_expenses" DataType="System.Decimal"/>
<Column Name="total_other_budget_expenses" DataType="System.Decimal"/>
<Column Name="total_all" DataType="System.Decimal"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="budget_project_name_th" DataType="System.String"/>
<Column Name="equipment" DataType="System.Decimal"/>
<Column Name="land_building" DataType="System.Decimal"/>
<Column Name="subsidy" DataType="System.Decimal"/>
<Column Name="compensation" DataType="System.Decimal"/>
<Column Name="living_expenses" DataType="System.Decimal"/>
<Column Name="material" DataType="System.Decimal"/>
<Column Name="utilities" DataType="System.Decimal"/>
<Column Name="other_expenses" DataType="System.Decimal"/>
<Column Name="other_budget_expenses" DataType="System.Decimal"/>
<Column Name="total" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="370" PaperHeight="210" Watermark.Font="Arial, 60pt">
<ReportTitleBand Name="ReportTitle1" Width="1323" Height="226.8">
<TextObject Name="Text1" Width="1323" Height="28.35" Text="สรุปงบประมาณรายจ่าย ประจำปีงบประมาณ พ.ศ. [summary_budget_expense.budget_year]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TextObject Name="Text2" Top="28.35" Width="1323" Height="28.35" Text="หน่วยงาน [summary_budget_expense.agency_name_th] พื้นที่ [summary_budget_expense.parent_agency_name]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table9" Left="-9450" Top="-9450" Width="1247.4" Height="85.05">
<TableColumn Name="Column45" Width="75.6"/>
<TableColumn Name="Column46" Width="236.25"/>
<TableColumn Name="Column47" Width="85.05"/>
<TableColumn Name="Column48" Width="56.7"/>
<TableColumn Name="Column49"/>
<TableColumn Name="Column50" Width="94.5"/>
<TableColumn Name="Column51" Width="170.1"/>
<TableColumn Name="Column52" Width="179.55"/>
<TableColumn Name="Column53" Width="217.35"/>
<TableColumn Name="Column54"/>
<TableRow Name="Row9" Height="85.05">
<TableCell Name="Cell45" Border.Lines="All" Text="ลำดับ&#13;&#10;ความสำคัญ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell46" Border.Lines="All" Text="รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell47" Border.Lines="All" Text="หน่วยนับ" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell48" Border.Lines="All" Text="จำนวน&#13;&#10;หน่วย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell49" Border.Lines="All" Text="ราคาต่อ&#13;&#10;หน่วย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell50" Border.Lines="All" Text="งบประมาณรวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell51" Border.Lines="Left, Right, Top" Text="ใบเสนอราคา" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell52" Border.Lines="Left, Right, Top" Text="ครุภัณฑ์สั่งจาก" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell53" Border.Lines="All" Text="ประเภท" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell54" Border.Lines="All" Text="คำชี้แจง&#13;&#10;หน้า" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TableObject Name="Table10" Top="113.4" Width="1323" Height="113.4">
<TableColumn Name="Column55" Width="264.6"/>
<TableColumn Name="Column56" Width="859.95"/>
<TableColumn Name="Column57" Width="103.95"/>
<TableColumn Name="Column58" Width="94.5"/>
<TableRow Name="Row10" Height="113.4">
<TableCell Name="Cell55" Border.Lines="All" Text="ผลผลิต" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell56" Border.Lines="All" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell57" Border.Lines="All" Text="งบรายจ่ายอื่น" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell58" Border.Lines="All" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TableObject Name="Table11" Left="264.6" Top="160.65" Width="217.35" Height="66.15">
<TableColumn Name="Column62" Width="103.95"/>
<TableColumn Name="Column63" Width="113.4"/>
<TableRow Name="Row11" Height="66.15">
<TableCell Name="Cell62" Border.Lines="All" Text=" ค่าครุภัณฑ์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell63" Border.Lines="All" Text="ค่า&#13;&#10;ที่ดินและสิ่งก่อสร้าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TextObject Name="Text3" Top="56.7" Width="1323" Height="28.35" Text="[summary_budget_expense.budget_plan_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableObject Name="Table16" Left="264.6" Top="113.4" Width="217.35" Height="47.25">
<TableColumn Name="Column81" Width="217.35"/>
<TableRow Name="Row16" Height="47.25">
<TableCell Name="Cell81" Border.Lines="All" Text="งบลงทุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TableObject Name="Table17" Left="481.95" Top="113.4" Width="642.6" Height="28.35">
<TableColumn Name="Column82" Width="642.6"/>
<TableRow Name="Row17" Height="28.35">
<TableCell Name="Cell82" Border.Lines="All" Text="งบเงินอุดหนุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TableObject Name="Table18" Left="585.9" Top="170.1" Width="217.35" Height="56.7">
<TableColumn Name="Column83" Width="103.95"/>
<TableColumn Name="Column84" Width="113.4"/>
<TableRow Name="Row18" Height="56.7">
<TableCell Name="Cell83" Border.Lines="All" Text="ค่าตอบแทน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell84" Border.Lines="All" Text="ค่าใช้สอย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TableObject Name="Table19" Left="585.9" Top="141.75" Width="434.7" Height="28.35">
<TableColumn Name="Column85" Width="434.7"/>
<TableRow Name="Row19" Height="28.35">
<TableCell Name="Cell85" Border.Lines="All" Text="ค่าใช้จ่ายดำเนินงาน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TableObject Name="Table20" Left="481.95" Top="141.75" Width="103.95" Height="85.05">
<TableColumn Name="Column86" Width="103.95"/>
<TableRow Name="Row20" Height="85.05">
<TableCell Name="Cell86" Border.Lines="All" Text="เงินอุดหนุน&#13;&#10;ค่าใช้จ่ายโครงการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TableObject Name="Table21" Left="803.25" Top="170.1" Width="217.35" Height="56.7">
<TableColumn Name="Column87" Width="103.95"/>
<TableColumn Name="Column88" Width="113.4"/>
<TableRow Name="Row21" Height="56.7">
<TableCell Name="Cell87" Border.Lines="All" Text="ค่าวัสดุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell88" Border.Lines="All" Text="ค่าสาธารณูปโภค" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<TableObject Name="Table23" Left="1020.6" Top="141.75" Width="103.95" Height="85.05">
<TableColumn Name="Column101" Width="103.95"/>
<TableRow Name="Row23" Height="85.05">
<TableCell Name="Cell101" Border.Lines="All" Text="ค่าใช้จ่ายอื่นๆ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
</ReportTitleBand>
<DataBand Name="Data1" Top="231.74" Width="1323" Height="28.35">
<TableObject Name="Table15" Width="1323" Height="28.35">
<TableColumn Name="Column70" Width="264.6"/>
<TableColumn Name="Column71" Width="103.95"/>
<TableColumn Name="Column72" Width="113.4"/>
<TableColumn Name="Column73" Width="103.95"/>
<TableColumn Name="Column74" Width="103.95"/>
<TableColumn Name="Column75" Width="113.4"/>
<TableColumn Name="Column76" Width="103.95"/>
<TableColumn Name="Column77" Width="113.4"/>
<TableColumn Name="Column78" Width="103.95"/>
<TableColumn Name="Column79" Width="103.95"/>
<TableColumn Name="Column80" Width="94.5"/>
<TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell70" Border.Lines="All" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell71" Border.Lines="All" Text="[summary_budget_expense.total_equipment]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell72" Border.Lines="All" Text="[summary_budget_expense.total_land_building]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell73" Border.Lines="All" Text="[summary_budget_expense.total_subsidy]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell74" Border.Lines="All" Text="[summary_budget_expense.total_compensation]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell75" Border.Lines="All" Text="[summary_budget_expense.total_living_expenses]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell76" Border.Lines="All" Text="[summary_budget_expense.total_material]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell77" Border.Lines="All" Text="[summary_budget_expense.total_utilities]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell78" Border.Lines="All" Text="[summary_budget_expense.total_other_expenses]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell79" Border.Lines="All" Text="[summary_budget_expense.total_other_budget_expenses]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
<TableCell Name="Cell80" Border.Lines="All" Text="[summary_budget_expense.total_all]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
</TableRow>
</TableObject>
<DataBand Name="Data2" Top="265.03" Width="1323" Height="28.35" DataSource="data">
<TableObject Name="Table22" Width="1323" Height="28.35">
<TableColumn Name="Column90" Width="264.6"/>
<TableColumn Name="Column91" Width="103.95"/>
<TableColumn Name="Column92" Width="113.4"/>
<TableColumn Name="Column93" Width="103.95"/>
<TableColumn Name="Column94" Width="103.95"/>
<TableColumn Name="Column95" Width="113.4"/>
<TableColumn Name="Column96" Width="103.95"/>
<TableColumn Name="Column97" Width="113.4"/>
<TableColumn Name="Column98" Width="103.95"/>
<TableColumn Name="Column99" Width="103.95"/>
<TableColumn Name="Column100" Width="94.5"/>
<TableRow Name="Row22" Height="28.35">
<TableCell Name="Cell90" Border.Lines="All" Text="[summary_budget_expense.data.budget_project_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell91" Border.Lines="All" Text="[summary_budget_expense.data.equipment]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell92" Border.Lines="All" Text="[summary_budget_expense.data.land_building]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell93" Border.Lines="All" Text="[summary_budget_expense.data.subsidy]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell94" Border.Lines="All" Text="[summary_budget_expense.data.compensation]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell95" Border.Lines="All" Text="[summary_budget_expense.data.living_expenses]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell96" Border.Lines="All" Text="[summary_budget_expense.data.material]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell97" Border.Lines="All" Text="[summary_budget_expense.data.utilities]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell98" Border.Lines="All" Text="[summary_budget_expense.data.other_expenses]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell99" Border.Lines="All" Text="[summary_budget_expense.data.other_budget_expenses]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
<TableCell Name="Cell100" Border.Lines="All" Text="[summary_budget_expense.data.total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
</ReportPage>
</Report>