This commit is contained in:
202
Controllers/SummaryInvest.Controller.cs
Normal file
202
Controllers/SummaryInvest.Controller.cs
Normal file
@@ -0,0 +1,202 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text.RegularExpressions;
|
||||
using FastReport;
|
||||
using FastReport.Export.OoXML;
|
||||
using FastReport.Export.Pdf;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using rmutr_report.Models;
|
||||
using Swashbuckle.AspNetCore.Annotations;
|
||||
|
||||
namespace rmutr_report.Controllers
|
||||
{
|
||||
[SwaggerTag("สำหรับรายงาน invest")]
|
||||
public class SummaryInvest : Controller
|
||||
{
|
||||
readonly Setting _setting;
|
||||
|
||||
public SummaryInvest(Setting setting)
|
||||
{
|
||||
_setting = setting;
|
||||
}
|
||||
|
||||
[SwaggerOperation("จัดทำค่าครุภัณฑ์ Key e-Budgeting")]
|
||||
[HttpPost, Route("reports/summary_invest/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetEBudgetingReport([FromRoute] string type, [FromBody] summary_invest summaryInvest)
|
||||
{
|
||||
var summaryInvests = new List<summary_invest>() { summaryInvest };
|
||||
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "summary_invest.frx");
|
||||
report.RegisterData(summaryInvests, "summary_invest");
|
||||
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_invest" + ".xlsx");
|
||||
break;
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("จัดทำค่าครุภัณฑ์ (ใบเสนอราคา)")]
|
||||
[HttpPost, Route("reports/summary_invest_preview/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSummaryInvestPreviewReport([FromRoute] string type,
|
||||
[FromBody] summary_invest_v2 summaryInvest)
|
||||
{
|
||||
var summaryInvests = new List<summary_invest_v2>() { summaryInvest };
|
||||
if (summaryInvest != null)
|
||||
{
|
||||
foreach (var summaryInvestYear in summaryInvest.years)
|
||||
{
|
||||
foreach (var plan in summaryInvestYear.plans)
|
||||
{
|
||||
foreach (var assetList in plan.asset_lists)
|
||||
{
|
||||
string formattedSeller = assetList.seller.Replace("<br>", " ");
|
||||
string pattern = @"<a href=.*?>(.*?)<\/a>";
|
||||
MatchCollection matches = Regex.Matches(assetList.file, pattern);
|
||||
|
||||
string formattedFile = "";
|
||||
if (assetList.is_approve == true)
|
||||
{
|
||||
assetList.approve_name = "อนุมัติแล้ว";
|
||||
}
|
||||
|
||||
|
||||
assetList.seller2 = formattedSeller;
|
||||
|
||||
|
||||
foreach (Match match in matches)
|
||||
{
|
||||
formattedFile += match.Groups[1].Value + " ";
|
||||
}
|
||||
|
||||
formattedFile = formattedFile.Trim();
|
||||
assetList.file2 = formattedFile;
|
||||
|
||||
//Console.WriteLine("seller output: " + formattedSeller);
|
||||
//Console.WriteLine("file output: " + formattedFile);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "summary_invest_preview.frx");
|
||||
report.RegisterData(summaryInvests, "summary_invest");
|
||||
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_invest_preview" + ".xlsx");
|
||||
break;
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("จัดสรรค่าครุภัณฑ์")]
|
||||
[HttpPost, Route("reports/summary_invest_approve/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSummaryInvestApproveReport([FromRoute] string type,
|
||||
[FromBody] summary_invest_v2 summaryInvest)
|
||||
{
|
||||
var summaryInvests = new List<summary_invest_v2>() { summaryInvest };
|
||||
if (summaryInvest != null)
|
||||
{
|
||||
foreach (var summaryInvestYear in summaryInvest.years)
|
||||
{
|
||||
foreach (var plan in summaryInvestYear.plans)
|
||||
{
|
||||
foreach (var assetList in plan.asset_lists)
|
||||
{
|
||||
string formattedSeller = assetList.seller.Replace("<br>", " ");
|
||||
string pattern = @"<a href=.*?>(.*?)<\/a>";
|
||||
MatchCollection matches = Regex.Matches(assetList.file, pattern);
|
||||
|
||||
string formattedFile = "";
|
||||
if (assetList.is_approve == true)
|
||||
{
|
||||
assetList.approve_name = "อนุมัติแล้ว";
|
||||
}
|
||||
|
||||
|
||||
assetList.seller2 = formattedSeller;
|
||||
|
||||
|
||||
foreach (Match match in matches)
|
||||
{
|
||||
formattedFile += match.Groups[1].Value + " ";
|
||||
}
|
||||
|
||||
formattedFile = formattedFile.Trim();
|
||||
assetList.file2 = formattedFile;
|
||||
|
||||
//Console.WriteLine("seller output: " + formattedSeller);
|
||||
//Console.WriteLine("file output: " + formattedFile);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "summary_invest_approve.frx");
|
||||
report.RegisterData(summaryInvests, "summary_invest");
|
||||
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_invest_approve" + ".xlsx");
|
||||
break;
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
}
|
||||
}
|
||||
125
Models/budget/summary_invest.cs
Normal file
125
Models/budget/summary_invest.cs
Normal file
@@ -0,0 +1,125 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public class summary_invest : summary_invest_initial
|
||||
{
|
||||
public List<summary_invest_year> years { get; set; }
|
||||
}
|
||||
public class summary_invest_year : summary_invest_initial
|
||||
{
|
||||
public Guid? budget_year_uid { get; set; }
|
||||
public string budget_year_name_th { get; set; }
|
||||
public List<summary_invest_plan> plans { get; set; }
|
||||
}
|
||||
public class summary_invest_plan : summary_invest_initial
|
||||
{
|
||||
public Guid? budget_plan_uid { get; set; }
|
||||
public string budget_plan_name_th { get; set; }
|
||||
public List<summary_invest_project> projects { get; set; }
|
||||
}
|
||||
public class summary_invest_project : summary_invest_initial
|
||||
{
|
||||
public Guid? budget_project_uid { get; set; }
|
||||
public string budget_project_name_th { get; set; }
|
||||
public List<summary_invest_faculty> facultys { get; set; }
|
||||
}
|
||||
public class summary_invest_faculty : summary_invest_initial
|
||||
{
|
||||
public Guid? faculty_uid { get; set; }
|
||||
public string faculty_name_th { get; set; }
|
||||
public List<summary_invest_list> asset_lists { get; set; }
|
||||
public List<summary_invest_list> construct_lists { get; set; }
|
||||
}
|
||||
public class summary_invest_list : summary_invest_initial
|
||||
{
|
||||
public Guid? invest_asset_approve_uid { get; set; }
|
||||
public Guid? invest_construct_approve_uid { get; set; }
|
||||
public Guid? key_uid { get; set; }
|
||||
public Guid? key_request_uid { get; set; }
|
||||
public string list_name { get; set; }
|
||||
public string unit_name { get; set; }
|
||||
public string seller { get; set; }
|
||||
public string file { get; set; }
|
||||
public int? row_order { get; set; }
|
||||
public int? step_order { get; set; }
|
||||
public int? amount { get; set; }
|
||||
public bool? is_from_reject { get; set; }
|
||||
public bool? is_edit { get; set; }
|
||||
public bool? is_approve { get; set; }
|
||||
public string approve_name { get; set; }
|
||||
public string petitioner_full_name { get; set; }
|
||||
public string phone_number { get; set; }
|
||||
}
|
||||
public class summary_invest_search
|
||||
{
|
||||
public Guid? budget_year_uid { get; set; }
|
||||
public Guid? budget_project_uid { get; set; }
|
||||
public Guid? budget_plan_uid { get; set; }
|
||||
public Guid? faculty_uid { get; set; }
|
||||
public string list_name { get; set; }
|
||||
public string petitioner_full_name { get; set; }
|
||||
public bool? is_asset { get; set; }
|
||||
public bool? is_construct { get; set; }
|
||||
public bool? is_approve { get; set; }
|
||||
}
|
||||
public class summary_invest_data_initial : summary_invest_search
|
||||
{
|
||||
public int? budget_year_number { get; set; }
|
||||
public string budget_year_name_th { get; set; }
|
||||
public string budget_project_name_th { get; set; }
|
||||
public string budget_plan_name_th { get; set; }
|
||||
public string faculty_name_th { get; set; }
|
||||
}
|
||||
public class summary_invest_initial
|
||||
{
|
||||
public decimal? unit_price { get; set; }
|
||||
public decimal? total { get; set; }
|
||||
public decimal? total_budget { get; set; }
|
||||
public decimal? asset_unit_price { get; set; }
|
||||
public decimal? asset_total_budget { get; set; }
|
||||
public decimal? construct_unit_price { get; set; }
|
||||
public decimal? construct_total_budget { get; set; }
|
||||
}
|
||||
public class summary_invest_v2 : summary_invest_initial
|
||||
{
|
||||
public List<summary_invest_year_v2> years { get; set; }
|
||||
}
|
||||
public class summary_invest_year_v2 : summary_invest_initial
|
||||
{
|
||||
public Guid? budget_year_uid { get; set; }
|
||||
public string budget_year_name_th { get; set; }
|
||||
public List<summary_invest_plan_v2> plans { get; set; }
|
||||
}
|
||||
public class summary_invest_plan_v2 : summary_invest_initial
|
||||
{
|
||||
public Guid? budget_plan_uid { get; set; }
|
||||
public string budget_plan_name_th { get; set; }
|
||||
public List<summary_invest_list_v2> asset_lists { get; set; }
|
||||
public List<summary_invest_list_v2> construct_lists { get; set; }
|
||||
}
|
||||
public class summary_invest_list_v2 : summary_invest_initial
|
||||
{
|
||||
public Guid? budget_project_uid { get; set; }
|
||||
public Guid? faculty_uid { get; set; }
|
||||
public string budget_project_name_th { get; set; }
|
||||
public string faculty_name_th { get; set; }
|
||||
public Guid? invest_asset_approve_uid { get; set; }
|
||||
public Guid? invest_construct_approve_uid { get; set; }
|
||||
public Guid? key_uid { get; set; }
|
||||
public Guid? key_request_uid { get; set; }
|
||||
public string list_name { get; set; }
|
||||
public string unit_name { get; set; }
|
||||
public string seller { get; set; }
|
||||
public string seller2 { get; set; }
|
||||
public string file { get; set; }
|
||||
public string file2 { get; set; }
|
||||
public int? row_order { get; set; }
|
||||
public int? step_order { get; set; }
|
||||
public int? amount { get; set; }
|
||||
public bool? is_from_reject { get; set; }
|
||||
public bool? is_edit { get; set; }
|
||||
public bool? is_approve { get; set; }
|
||||
public string approve_name { get; set; }
|
||||
public string petitioner_full_name { get; set; }
|
||||
public string phone_number { 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+e2a3977734a6c0e63d669a0800cfaf4bca52db1a")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+da8805020d3aac23490c9d2a0b621d651ee44921")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("rmutr_report")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("rmutr_report")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
83b7c8eaf06473c917649059b491b34a25238c6d940329abfd68e57bff3c4984
|
||||
fb341293279b66bfac2dcb8964beca0310d8356768610a72c001a0b0c99d163a
|
||||
|
||||
@@ -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+9c37d45f5cd26f307eeed46e82c6833c27288b33")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+da8805020d3aac23490c9d2a0b621d651ee44921")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("rmutr_report")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("rmutr_report")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
ce1e068e9e13ade3aae57571fad3b5eebac258828f5dbf8839f024cafd6dced7
|
||||
fb341293279b66bfac2dcb8964beca0310d8356768610a72c001a0b0c99d163a
|
||||
|
||||
@@ -1 +1 @@
|
||||
807162356eee65d68db8165b5fb955d25318de2207b8907923f13b609c16ee01
|
||||
486197f055fb5d72cad81ec325faa738048e295edd4b24fa7153c34679c68bad
|
||||
|
||||
@@ -1 +1 @@
|
||||
2a87f4d099a984a0e9253410e6f4597f90c3d03ecbe20d28d0efc2bffc02a7bc
|
||||
8d0a705eb05b7d31a5543fad875abccdcc0dec6fa2790db8f635c6c6cfa76d95
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -3024,6 +3024,70 @@
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_income_cooperative.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_invest.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/rmutr_report</BasePath>
|
||||
<RelativePath>reports\summary_invest.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_invest.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_invest_approve.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/rmutr_report</BasePath>
|
||||
<RelativePath>reports\summary_invest_approve.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_invest_approve.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_invest_preview.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/rmutr_report</BasePath>
|
||||
<RelativePath>reports\summary_invest_preview.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_invest_preview.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_invest_previewv2.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/rmutr_report</BasePath>
|
||||
<RelativePath>reports\summary_invest_previewv2.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_invest_previewv2.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\summary_mtef.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
|
||||
@@ -1 +1 @@
|
||||
f897b4952cd5268294905ba9623c4e220b69b02b431d5352f3f0a6591fa71fa2
|
||||
c50bede8becdc099c2f6e83e533c61274065063dd9f82764a97f4e0ec79d5558
|
||||
|
||||
@@ -1 +1 @@
|
||||
17248395490624370
|
||||
17249025111686656
|
||||
@@ -1 +1 @@
|
||||
17248395490624370
|
||||
17249123958142058
|
||||
282
wwwroot/reports/summary_invest.frx
Normal file
282
wwwroot/reports/summary_invest.frx
Normal file
@@ -0,0 +1,282 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/29/2024 11:52:31" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="summary_invest" ReferenceName="summary_invest" DataType="null" Enabled="true">
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="years" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="budget_year_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_year_name_th" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="plans" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="budget_plan_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_plan_name_th" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="projects" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="budget_project_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_project_name_th" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="facultys" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="faculty_uid" DataType="System.Guid"/>
|
||||
<Column Name="faculty_name_th" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="asset_lists" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="invest_asset_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="invest_construct_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_request_uid" DataType="System.Guid"/>
|
||||
<Column Name="list_name" DataType="System.String"/>
|
||||
<Column Name="unit_name" DataType="System.String"/>
|
||||
<Column Name="seller" DataType="System.String"/>
|
||||
<Column Name="file" DataType="System.String"/>
|
||||
<Column Name="row_order" DataType="System.Int32"/>
|
||||
<Column Name="step_order" DataType="System.Int32"/>
|
||||
<Column Name="amount" DataType="System.Int32"/>
|
||||
<Column Name="is_from_reject" DataType="System.Boolean"/>
|
||||
<Column Name="is_edit" DataType="System.Boolean"/>
|
||||
<Column Name="is_approve" DataType="System.Boolean"/>
|
||||
<Column Name="petitioner_full_name" DataType="System.String"/>
|
||||
<Column Name="phone_number" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
</BusinessObjectDataSource>
|
||||
<BusinessObjectDataSource Name="construct_lists" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="invest_asset_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="invest_construct_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_request_uid" DataType="System.Guid"/>
|
||||
<Column Name="list_name" DataType="System.String"/>
|
||||
<Column Name="unit_name" DataType="System.String"/>
|
||||
<Column Name="seller" DataType="System.String"/>
|
||||
<Column Name="file" DataType="System.String"/>
|
||||
<Column Name="row_order" DataType="System.Int32"/>
|
||||
<Column Name="step_order" DataType="System.Int32"/>
|
||||
<Column Name="amount" DataType="System.Int32"/>
|
||||
<Column Name="is_from_reject" DataType="System.Boolean"/>
|
||||
<Column Name="is_edit" DataType="System.Boolean"/>
|
||||
<Column Name="is_approve" DataType="System.Boolean"/>
|
||||
<Column Name="petitioner_full_name" DataType="System.String"/>
|
||||
<Column Name="phone_number" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="495" PaperHeight="500" Watermark.Font="Arial, 60pt" UnlimitedHeight="true">
|
||||
<PageHeaderBand Name="PageHeader1" Width="1795.5" Height="113.4">
|
||||
<TableObject Name="Table15" Width="1795.5" Height="66.15" Border.Lines="All">
|
||||
<TableColumn Name="Column110" Width="207.9"/>
|
||||
<TableColumn Name="Column111" Width="529.2"/>
|
||||
<TableColumn Name="Column256" Width="132.3"/>
|
||||
<TableColumn Name="Column257" Width="85.05"/>
|
||||
<TableColumn Name="Column258" Width="189"/>
|
||||
<TableColumn Name="Column259" Width="207.9"/>
|
||||
<TableColumn Name="Column260" Width="264.6"/>
|
||||
<TableColumn Name="Column261" Width="179.55"/>
|
||||
<TableRow Name="Row15" Height="66.15">
|
||||
<TableCell Name="Cell170" Border.Lines="All" Fill.Color="113, 125, 145" Text="ลำดับความสำคัญ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell171" Border.Lines="All" Fill.Color="113, 125, 145" Text="ชื่อรายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell316" Border.Lines="All" Fill.Color="113, 125, 145" Text="หน่วยนับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell317" Border.Lines="All" Fill.Color="113, 125, 145" Text="จำนวน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell318" Border.Lines="All" Fill.Color="113, 125, 145" Text="ราคาต่อหน่วย (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell319" Border.Lines="All" Fill.Color="113, 125, 145" Text="วงเงิน (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell320" Border.Lines="All" Fill.Color="113, 125, 145" Text="ผู้รับผิดชอบ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell321" Border.Lines="All" Fill.Color="113, 125, 145" Text="เบอร์โทร" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table20" Top="66.15" Width="1795.5" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column262" Width="207.9"/>
|
||||
<TableColumn Name="Column263" Width="529.2"/>
|
||||
<TableColumn Name="Column264" Width="132.3"/>
|
||||
<TableColumn Name="Column265" Width="85.05"/>
|
||||
<TableColumn Name="Column266" Width="189"/>
|
||||
<TableColumn Name="Column267" Width="207.9"/>
|
||||
<TableColumn Name="Column268" Width="264.6"/>
|
||||
<TableColumn Name="Column269" Width="179.55"/>
|
||||
<TableRow Name="Row20" Height="47.25">
|
||||
<TableCell Name="Cell322" Border.Lines="All" Fill.Color="193, 255, 238" Text="รวมทั้งสิ้น" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell323" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell324" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell325" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell326" Border.Lines="All" Fill.Color="193, 255, 238" Text="[summary_invest.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell327" Border.Lines="All" Fill.Color="193, 255, 238" Text="[summary_invest.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell328" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell329" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="120.18" Width="1795.5" Height="47.25" DataSource="years">
|
||||
<TableObject Name="Table21" Width="1795.5" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column270" Width="207.9"/>
|
||||
<TableColumn Name="Column271" Width="529.2"/>
|
||||
<TableColumn Name="Column272" Width="132.3"/>
|
||||
<TableColumn Name="Column273" Width="85.05"/>
|
||||
<TableColumn Name="Column274" Width="189"/>
|
||||
<TableColumn Name="Column275" Width="207.9"/>
|
||||
<TableColumn Name="Column276" Width="264.6"/>
|
||||
<TableColumn Name="Column277" Width="179.55"/>
|
||||
<TableRow Name="Row21" Height="47.25">
|
||||
<TableCell Name="Cell330" Border.Lines="All" Fill.Color="248, 201, 190" Text="ปีงบประมาณ" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell331" Border.Lines="All" Fill.Color="248, 201, 190" Text="[summary_invest.years.budget_year_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell332" Border.Lines="All" Fill.Color="248, 201, 190" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell333" Border.Lines="All" Fill.Color="248, 201, 190" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell334" Border.Lines="All" Fill.Color="248, 201, 190" Text="[summary_invest.years.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell335" Border.Lines="All" Fill.Color="248, 201, 190" Text="[summary_invest.years.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell336" Border.Lines="All" Fill.Color="248, 201, 190" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell337" Border.Lines="All" Fill.Color="248, 201, 190" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data2" Top="174.21" Width="1795.5" Height="47.25" DataSource="plans">
|
||||
<TableObject Name="Table22" Width="1795.5" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column278" Width="207.9"/>
|
||||
<TableColumn Name="Column279" Width="529.2"/>
|
||||
<TableColumn Name="Column280" Width="132.3"/>
|
||||
<TableColumn Name="Column281" Width="85.05"/>
|
||||
<TableColumn Name="Column282" Width="189"/>
|
||||
<TableColumn Name="Column283" Width="207.9"/>
|
||||
<TableColumn Name="Column284" Width="264.6"/>
|
||||
<TableColumn Name="Column285" Width="179.55"/>
|
||||
<TableRow Name="Row22" Height="47.25">
|
||||
<TableCell Name="Cell338" Border.Lines="All" Fill.Color="255, 255, 217" Text="แผนงาน" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell339" Border.Lines="All" Fill.Color="255, 255, 217" Text="[summary_invest.years.plans.budget_plan_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell340" Border.Lines="All" Fill.Color="255, 255, 217" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell341" Border.Lines="All" Fill.Color="255, 255, 217" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell342" Border.Lines="All" Fill.Color="255, 255, 217" Text="[summary_invest.years.plans.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell343" Border.Lines="All" Fill.Color="255, 255, 217" Text="[summary_invest.years.plans.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell344" Border.Lines="All" Fill.Color="255, 255, 217" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell345" Border.Lines="All" Fill.Color="255, 255, 217" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data3" Top="228.24" Width="1795.5" Height="47.25" DataSource="projects">
|
||||
<TableObject Name="Table23" Width="1795.5" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column286" Width="207.9"/>
|
||||
<TableColumn Name="Column287" Width="529.2"/>
|
||||
<TableColumn Name="Column288" Width="132.3"/>
|
||||
<TableColumn Name="Column289" Width="85.05"/>
|
||||
<TableColumn Name="Column290" Width="189"/>
|
||||
<TableColumn Name="Column291" Width="207.9"/>
|
||||
<TableColumn Name="Column292" Width="264.6"/>
|
||||
<TableColumn Name="Column293" Width="179.55"/>
|
||||
<TableRow Name="Row23" Height="47.25">
|
||||
<TableCell Name="Cell346" Border.Lines="All" Fill.Color="255, 201, 220" Text="ผลผลิต" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell347" Border.Lines="All" Fill.Color="255, 201, 220" Text="[summary_invest.years.plans.projects.budget_project_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell348" Border.Lines="All" Fill.Color="255, 201, 220" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell349" Border.Lines="All" Fill.Color="255, 201, 220" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell350" Border.Lines="All" Fill.Color="255, 201, 220" Text="[summary_invest.years.plans.projects.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell351" Border.Lines="All" Fill.Color="255, 201, 220" Text="[summary_invest.years.plans.projects.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell352" Border.Lines="All" Fill.Color="255, 201, 220" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell353" Border.Lines="All" Fill.Color="255, 201, 220" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data4" Top="282.27" Width="1795.5" Height="47.25" DataSource="facultys">
|
||||
<TableObject Name="Table24" Width="1795.5" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column294" Width="207.9"/>
|
||||
<TableColumn Name="Column295" Width="529.2"/>
|
||||
<TableColumn Name="Column296" Width="132.3"/>
|
||||
<TableColumn Name="Column297" Width="85.05"/>
|
||||
<TableColumn Name="Column298" Width="189"/>
|
||||
<TableColumn Name="Column299" Width="207.9"/>
|
||||
<TableColumn Name="Column300" Width="264.6"/>
|
||||
<TableColumn Name="Column301" Width="179.55"/>
|
||||
<TableRow Name="Row24" Height="47.25">
|
||||
<TableCell Name="Cell354" Border.Lines="All" Fill.Color="233, 213, 255" Text="คณะ / หน่วยงาน" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell355" Border.Lines="All" Fill.Color="233, 213, 255" Text="[summary_invest.years.plans.projects.facultys.faculty_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell356" Border.Lines="All" Fill.Color="233, 213, 255" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell357" Border.Lines="All" Fill.Color="233, 213, 255" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell358" Border.Lines="All" Fill.Color="233, 213, 255" Text="[summary_invest.years.plans.projects.facultys.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell359" Border.Lines="All" Fill.Color="233, 213, 255" Text="[summary_invest.years.plans.projects.facultys.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell360" Border.Lines="All" Fill.Color="233, 213, 255" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell361" Border.Lines="All" Fill.Color="233, 213, 255" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data5" Top="336.3" Width="1795.5" Height="47.25" DataSource="asset_lists">
|
||||
<TableObject Name="Table25" Width="1795.5" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column302" Width="207.9"/>
|
||||
<TableColumn Name="Column303" Width="529.2"/>
|
||||
<TableColumn Name="Column304" Width="132.3"/>
|
||||
<TableColumn Name="Column305" Width="85.05"/>
|
||||
<TableColumn Name="Column306" Width="189"/>
|
||||
<TableColumn Name="Column307" Width="207.9"/>
|
||||
<TableColumn Name="Column308" Width="264.6"/>
|
||||
<TableColumn Name="Column309" Width="179.55"/>
|
||||
<TableRow Name="Row25" Height="47.25">
|
||||
<TableCell Name="Cell362" Border.Lines="All" Text="[Row#]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell363" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.asset_lists.list_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell364" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.asset_lists.unit_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell365" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.asset_lists.amount]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell366" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.asset_lists.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell367" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.asset_lists.total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell368" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.asset_lists.petitioner_full_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell369" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.asset_lists.phone_number]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
<DataBand Name="Data6" Top="390.33" Width="1795.5" Height="47.25" DataSource="construct_lists">
|
||||
<TableObject Name="Table26" Width="1795.5" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column310" Width="207.9"/>
|
||||
<TableColumn Name="Column311" Width="529.2"/>
|
||||
<TableColumn Name="Column312" Width="132.3"/>
|
||||
<TableColumn Name="Column313" Width="85.05"/>
|
||||
<TableColumn Name="Column314" Width="189"/>
|
||||
<TableColumn Name="Column315" Width="207.9"/>
|
||||
<TableColumn Name="Column316" Width="264.6"/>
|
||||
<TableColumn Name="Column317" Width="179.55"/>
|
||||
<TableRow Name="Row26" Height="47.25">
|
||||
<TableCell Name="Cell370" Border.Lines="All" Text="[Row#]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell371" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.construct_lists.list_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell372" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.construct_lists.unit_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell373" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.construct_lists.amount]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell374" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.construct_lists.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell375" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.construct_lists.total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell376" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.construct_lists.petitioner_full_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell377" Border.Lines="All" Text="[summary_invest.years.plans.projects.facultys.construct_lists.phone_number]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
250
wwwroot/reports/summary_invest_approve.frx
Normal file
250
wwwroot/reports/summary_invest_approve.frx
Normal file
@@ -0,0 +1,250 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/29/2024 13:19:01" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="summary_invest" ReferenceName="summary_invest" DataType="null" Enabled="true">
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="years" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="budget_year_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_year_name_th" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="plans" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="budget_plan_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_plan_name_th" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="asset_lists" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="invest_asset_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="invest_construct_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_request_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_project_name_th" DataType="System.String"/>
|
||||
<Column Name="faculty_name_th" DataType="System.String"/>
|
||||
<Column Name="list_name" DataType="System.String"/>
|
||||
<Column Name="unit_name" DataType="System.String"/>
|
||||
<Column Name="seller" DataType="System.String"/>
|
||||
<Column Name="file" DataType="System.String"/>
|
||||
<Column Name="seller2" DataType="System.String"/>
|
||||
<Column Name="file2" DataType="System.String"/>
|
||||
<Column Name="row_order" DataType="System.Int32"/>
|
||||
<Column Name="step_order" DataType="System.Int32"/>
|
||||
<Column Name="amount" DataType="System.Int32"/>
|
||||
<Column Name="is_from_reject" DataType="System.Boolean"/>
|
||||
<Column Name="is_edit" DataType="System.Boolean"/>
|
||||
<Column Name="is_approve" DataType="System.Boolean"/>
|
||||
<Column Name="approve_name" DataType="System.String"/>
|
||||
<Column Name="petitioner_full_name" DataType="System.String"/>
|
||||
<Column Name="phone_number" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
</BusinessObjectDataSource>
|
||||
<BusinessObjectDataSource Name="construct_lists" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="invest_asset_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="invest_construct_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_request_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_project_name_th" DataType="System.String"/>
|
||||
<Column Name="faculty_name_th" DataType="System.String"/>
|
||||
<Column Name="list_name" DataType="System.String"/>
|
||||
<Column Name="unit_name" DataType="System.String"/>
|
||||
<Column Name="seller" DataType="System.String"/>
|
||||
<Column Name="file" DataType="System.String"/>
|
||||
<Column Name="row_order" DataType="System.Int32"/>
|
||||
<Column Name="step_order" DataType="System.Int32"/>
|
||||
<Column Name="amount" DataType="System.Int32"/>
|
||||
<Column Name="is_from_reject" DataType="System.Boolean"/>
|
||||
<Column Name="is_edit" DataType="System.Boolean"/>
|
||||
<Column Name="is_approve" DataType="System.Boolean"/>
|
||||
<Column Name="approve_name" DataType="System.String"/>
|
||||
<Column Name="petitioner_full_name" DataType="System.String"/>
|
||||
<Column Name="phone_number" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="780" PaperHeight="500" Watermark.Font="Arial, 60pt" UnlimitedHeight="true">
|
||||
<PageHeaderBand Name="PageHeader1" Width="2872.8" Height="132.3">
|
||||
<TableObject Name="Table15" Width="2872.8" Height="85.05" Border.Lines="All">
|
||||
<TableColumn Name="Column110" Width="207.9"/>
|
||||
<TableColumn Name="Column111" Width="529.2"/>
|
||||
<TableColumn Name="Column256" Width="302.4"/>
|
||||
<TableColumn Name="Column257" Width="236.25"/>
|
||||
<TableColumn Name="Column258" Width="122.85"/>
|
||||
<TableColumn Name="Column259" Width="94.5"/>
|
||||
<TableColumn Name="Column260" Width="207.9"/>
|
||||
<TableColumn Name="Column261" Width="226.8"/>
|
||||
<TableColumn Name="Column294" Width="453.6"/>
|
||||
<TableColumn Name="Column295" Width="283.5"/>
|
||||
<TableColumn Name="Column296" Width="207.9"/>
|
||||
<TableRow Name="Row15" Height="85.05">
|
||||
<TableCell Name="Cell170" Border.Lines="All" Fill.Color="113, 125, 145" Text="ลำดับความสำคัญ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell171" Border.Lines="All" Fill.Color="113, 125, 145" Text="ชื่อรายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell316" Border.Lines="All" Fill.Color="113, 125, 145" Text="ผลผลิต" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell317" Border.Lines="All" Fill.Color="113, 125, 145" Text="หน่วยงาน/คณะ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell318" Border.Lines="All" Fill.Color="113, 125, 145" Text="หน่วยนับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell319" Border.Lines="All" Fill.Color="113, 125, 145" Text="จำนวน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell320" Border.Lines="All" Fill.Color="113, 125, 145" Text="ราคาต่อหน่วย (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell321" Border.Lines="All" Fill.Color="113, 125, 145" Text="วงเงิน (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell354" Border.Lines="All" Fill.Color="113, 125, 145" Text="ใบเสนอราคา" HorzAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell355" Border.Lines="All" Fill.Color="113, 125, 145" Text="ผู้รับผิดชอบ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell356" Border.Lines="All" Fill.Color="113, 125, 145" Text="เบอร์โทร" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table20" Top="85.05" Width="2872.8" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column262" Width="207.9"/>
|
||||
<TableColumn Name="Column263" Width="529.2"/>
|
||||
<TableColumn Name="Column264" Width="302.4"/>
|
||||
<TableColumn Name="Column265" Width="236.25"/>
|
||||
<TableColumn Name="Column266" Width="122.85"/>
|
||||
<TableColumn Name="Column267" Width="94.5"/>
|
||||
<TableColumn Name="Column268" Width="207.9"/>
|
||||
<TableColumn Name="Column269" Width="226.8"/>
|
||||
<TableColumn Name="Column300" Width="245.7"/>
|
||||
<TableColumn Name="Column301" Width="207.9"/>
|
||||
<TableColumn Name="Column302" Width="283.5"/>
|
||||
<TableColumn Name="Column303" Width="207.9"/>
|
||||
<TableRow Name="Row20" Height="47.25">
|
||||
<TableCell Name="Cell322" Border.Lines="All" Fill.Color="193, 255, 238" Text="รวมทั้งสิ้น" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell323" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell324" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell325" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell326" Border.Lines="All" Fill.Color="193, 255, 238" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell327" Border.Lines="All" Fill.Color="193, 255, 238" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell328" Border.Lines="All" Fill.Color="193, 255, 238" Text="[summary_invest.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell329" Border.Lines="All" Fill.Color="193, 255, 238" Text="[summary_invest.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell360" Border.Lines="All" Fill.Color="193, 255, 238" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell361" Border.Lines="All" Fill.Color="193, 255, 238" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell362" Border.Lines="All" Fill.Color="193, 255, 238" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell363" Border.Lines="All" Fill.Color="193, 255, 238" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table24" Left="1927.8" Top="28.35" Width="453.6" Height="56.7" Border.Lines="All">
|
||||
<TableColumn Name="Column298" Width="245.7"/>
|
||||
<TableColumn Name="Column299" Width="207.9"/>
|
||||
<TableRow Name="Row24" Height="56.7">
|
||||
<TableCell Name="Cell358" Border.Lines="All" Fill.Color="113, 125, 145" Text="ชื่อบริษัท/วงเงิน (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell359" Border.Lines="All" Fill.Color="113, 125, 145" Text="ไฟล์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="143.73" Width="2872.8" Height="47.25" DataSource="years">
|
||||
<TableObject Name="Table25" Width="2872.8" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column305" Width="207.9"/>
|
||||
<TableColumn Name="Column306" Width="529.2"/>
|
||||
<TableColumn Name="Column307" Width="302.4"/>
|
||||
<TableColumn Name="Column308" Width="236.25"/>
|
||||
<TableColumn Name="Column309" Width="122.85"/>
|
||||
<TableColumn Name="Column310" Width="94.5"/>
|
||||
<TableColumn Name="Column311" Width="207.9"/>
|
||||
<TableColumn Name="Column312" Width="226.8"/>
|
||||
<TableColumn Name="Column313" Width="245.7"/>
|
||||
<TableColumn Name="Column314" Width="207.9"/>
|
||||
<TableColumn Name="Column315" Width="283.5"/>
|
||||
<TableColumn Name="Column316" Width="207.9"/>
|
||||
<TableRow Name="Row25" Height="47.25">
|
||||
<TableCell Name="Cell365" Border.Lines="All" Fill.Color="248, 201, 190" Text="ปีงบประมาณ" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell366" Border.Lines="All" Fill.Color="248, 201, 190" Text="[summary_invest.years.budget_year_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell367" Border.Lines="All" Fill.Color="248, 201, 190" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell368" Border.Lines="All" Fill.Color="248, 201, 190" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell369" Border.Lines="All" Fill.Color="248, 201, 190" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell370" Border.Lines="All" Fill.Color="248, 201, 190" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell371" Border.Lines="All" Fill.Color="248, 201, 190" Text="[summary_invest.years.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell372" Border.Lines="All" Fill.Color="248, 201, 190" Text="[summary_invest.years.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell373" Border.Lines="All" Fill.Color="248, 201, 190" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell374" Border.Lines="All" Fill.Color="248, 201, 190" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell375" Border.Lines="All" Fill.Color="248, 201, 190" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell376" Border.Lines="All" Fill.Color="248, 201, 190" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data2" Top="202.41" Width="2872.8" Height="47.25" DataSource="plans">
|
||||
<TableObject Name="Table26" Width="2872.8" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column318" Width="207.9"/>
|
||||
<TableColumn Name="Column319" Width="529.2"/>
|
||||
<TableColumn Name="Column320" Width="302.4"/>
|
||||
<TableColumn Name="Column321" Width="236.25"/>
|
||||
<TableColumn Name="Column322" Width="122.85"/>
|
||||
<TableColumn Name="Column323" Width="94.5"/>
|
||||
<TableColumn Name="Column324" Width="207.9"/>
|
||||
<TableColumn Name="Column325" Width="226.8"/>
|
||||
<TableColumn Name="Column326" Width="245.7"/>
|
||||
<TableColumn Name="Column327" Width="207.9"/>
|
||||
<TableColumn Name="Column328" Width="283.5"/>
|
||||
<TableColumn Name="Column329" Width="207.9"/>
|
||||
<TableRow Name="Row26" Height="47.25">
|
||||
<TableCell Name="Cell378" Border.Lines="All" Fill.Color="255, 255, 217" Text="แผนงาน" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell379" Border.Lines="All" Fill.Color="255, 255, 217" Text="[summary_invest.years.plans.budget_plan_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell380" Border.Lines="All" Fill.Color="255, 255, 217" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell381" Border.Lines="All" Fill.Color="255, 255, 217" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell382" Border.Lines="All" Fill.Color="255, 255, 217" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell383" Border.Lines="All" Fill.Color="255, 255, 217" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell384" Border.Lines="All" Fill.Color="255, 255, 217" Text="[summary_invest.years.plans.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell385" Border.Lines="All" Fill.Color="255, 255, 217" Text="[summary_invest.years.plans.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell386" Border.Lines="All" Fill.Color="255, 255, 217" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell387" Border.Lines="All" Fill.Color="255, 255, 217" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell388" Border.Lines="All" Fill.Color="255, 255, 217" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell389" Border.Lines="All" Fill.Color="255, 255, 217" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data3" Top="261.09" Width="2872.8" Height="47.25" DataSource="asset_lists">
|
||||
<TableObject Name="Table27" Width="2872.8" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column331" Width="207.9"/>
|
||||
<TableColumn Name="Column332" Width="529.2"/>
|
||||
<TableColumn Name="Column333" Width="302.4"/>
|
||||
<TableColumn Name="Column334" Width="236.25"/>
|
||||
<TableColumn Name="Column335" Width="122.85"/>
|
||||
<TableColumn Name="Column336" Width="94.5"/>
|
||||
<TableColumn Name="Column337" Width="207.9"/>
|
||||
<TableColumn Name="Column338" Width="226.8"/>
|
||||
<TableColumn Name="Column339" Width="245.7"/>
|
||||
<TableColumn Name="Column340" Width="207.9"/>
|
||||
<TableColumn Name="Column341" Width="283.5"/>
|
||||
<TableColumn Name="Column342" Width="207.9"/>
|
||||
<TableRow Name="Row27" Height="47.25">
|
||||
<TableCell Name="Cell391" Border.Lines="All" Text="[Row#]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell392" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.list_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell393" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.budget_project_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell394" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.faculty_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell395" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.unit_name]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell396" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell397" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell398" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell399" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.seller2]" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell400" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.file2]" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell401" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.petitioner_full_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell402" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.phone_number]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
260
wwwroot/reports/summary_invest_preview.frx
Normal file
260
wwwroot/reports/summary_invest_preview.frx
Normal file
@@ -0,0 +1,260 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/29/2024 13:13:08" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="summary_invest" ReferenceName="summary_invest" DataType="null" Enabled="true">
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="years" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="budget_year_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_year_name_th" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="plans" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="budget_plan_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_plan_name_th" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="asset_lists" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="invest_asset_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="invest_construct_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_request_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_project_name_th" DataType="System.String"/>
|
||||
<Column Name="faculty_name_th" DataType="System.String"/>
|
||||
<Column Name="list_name" DataType="System.String"/>
|
||||
<Column Name="unit_name" DataType="System.String"/>
|
||||
<Column Name="seller" DataType="System.String"/>
|
||||
<Column Name="file" DataType="System.String"/>
|
||||
<Column Name="seller2" DataType="System.String"/>
|
||||
<Column Name="file2" DataType="System.String"/>
|
||||
<Column Name="row_order" DataType="System.Int32"/>
|
||||
<Column Name="step_order" DataType="System.Int32"/>
|
||||
<Column Name="amount" DataType="System.Int32"/>
|
||||
<Column Name="is_from_reject" DataType="System.Boolean"/>
|
||||
<Column Name="is_edit" DataType="System.Boolean"/>
|
||||
<Column Name="is_approve" DataType="System.Boolean"/>
|
||||
<Column Name="approve_name" DataType="System.String"/>
|
||||
<Column Name="petitioner_full_name" DataType="System.String"/>
|
||||
<Column Name="phone_number" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
</BusinessObjectDataSource>
|
||||
<BusinessObjectDataSource Name="construct_lists" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="invest_asset_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="invest_construct_approve_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_uid" DataType="System.Guid"/>
|
||||
<Column Name="key_request_uid" DataType="System.Guid"/>
|
||||
<Column Name="budget_project_name_th" DataType="System.String"/>
|
||||
<Column Name="faculty_name_th" DataType="System.String"/>
|
||||
<Column Name="list_name" DataType="System.String"/>
|
||||
<Column Name="unit_name" DataType="System.String"/>
|
||||
<Column Name="seller" DataType="System.String"/>
|
||||
<Column Name="file" DataType="System.String"/>
|
||||
<Column Name="row_order" DataType="System.Int32"/>
|
||||
<Column Name="step_order" DataType="System.Int32"/>
|
||||
<Column Name="amount" DataType="System.Int32"/>
|
||||
<Column Name="is_from_reject" DataType="System.Boolean"/>
|
||||
<Column Name="is_edit" DataType="System.Boolean"/>
|
||||
<Column Name="is_approve" DataType="System.Boolean"/>
|
||||
<Column Name="approve_name" DataType="System.String"/>
|
||||
<Column Name="petitioner_full_name" DataType="System.String"/>
|
||||
<Column Name="phone_number" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="total" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="asset_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="asset_total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="construct_unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="construct_total_budget" DataType="System.Decimal"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="820" PaperHeight="500" Watermark.Font="Arial, 60pt" UnlimitedHeight="true">
|
||||
<PageHeaderBand Name="PageHeader1" Width="3024" Height="132.3">
|
||||
<TableObject Name="Table15" Width="3024" Height="85.05" Border.Lines="All">
|
||||
<TableColumn Name="Column110" Width="207.9"/>
|
||||
<TableColumn Name="Column111" Width="529.2"/>
|
||||
<TableColumn Name="Column256" Width="302.4"/>
|
||||
<TableColumn Name="Column257" Width="236.25"/>
|
||||
<TableColumn Name="Column258" Width="122.85"/>
|
||||
<TableColumn Name="Column259" Width="94.5"/>
|
||||
<TableColumn Name="Column260" Width="207.9"/>
|
||||
<TableColumn Name="Column261" Width="226.8"/>
|
||||
<TableColumn Name="Column294" Width="453.6"/>
|
||||
<TableColumn Name="Column295" Width="283.5"/>
|
||||
<TableColumn Name="Column296" Width="207.9"/>
|
||||
<TableColumn Name="Column297" Width="151.2"/>
|
||||
<TableRow Name="Row15" Height="85.05">
|
||||
<TableCell Name="Cell170" Border.Lines="All" Fill.Color="113, 125, 145" Text="ลำดับความสำคัญ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell171" Border.Lines="All" Fill.Color="113, 125, 145" Text="ชื่อรายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell316" Border.Lines="All" Fill.Color="113, 125, 145" Text="ผลผลิต" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell317" Border.Lines="All" Fill.Color="113, 125, 145" Text="หน่วยงาน/คณะ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell318" Border.Lines="All" Fill.Color="113, 125, 145" Text="หน่วยนับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell319" Border.Lines="All" Fill.Color="113, 125, 145" Text="จำนวน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell320" Border.Lines="All" Fill.Color="113, 125, 145" Text="ราคาต่อหน่วย (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell321" Border.Lines="All" Fill.Color="113, 125, 145" Text="วงเงิน (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell354" Border.Lines="All" Fill.Color="113, 125, 145" Text="ใบเสนอราคา" HorzAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell355" Border.Lines="All" Fill.Color="113, 125, 145" Text="ผู้รับผิดชอบ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell356" Border.Lines="All" Fill.Color="113, 125, 145" Text="เบอร์โทร" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell357" Border.Lines="All" Fill.Color="113, 125, 145" Text="ผลอนุมัติ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table20" Top="85.05" Width="3024" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column262" Width="207.9"/>
|
||||
<TableColumn Name="Column263" Width="529.2"/>
|
||||
<TableColumn Name="Column264" Width="302.4"/>
|
||||
<TableColumn Name="Column265" Width="236.25"/>
|
||||
<TableColumn Name="Column266" Width="122.85"/>
|
||||
<TableColumn Name="Column267" Width="94.5"/>
|
||||
<TableColumn Name="Column268" Width="207.9"/>
|
||||
<TableColumn Name="Column269" Width="226.8"/>
|
||||
<TableColumn Name="Column300" Width="245.7"/>
|
||||
<TableColumn Name="Column301" Width="207.9"/>
|
||||
<TableColumn Name="Column302" Width="283.5"/>
|
||||
<TableColumn Name="Column303" Width="207.9"/>
|
||||
<TableColumn Name="Column304" Width="151.2"/>
|
||||
<TableRow Name="Row20" Height="47.25">
|
||||
<TableCell Name="Cell322" Border.Lines="All" Fill.Color="193, 255, 238" Text="รวมทั้งสิ้น" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell323" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell324" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell325" Border.Lines="All" Fill.Color="193, 255, 238" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell326" Border.Lines="All" Fill.Color="193, 255, 238" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell327" Border.Lines="All" Fill.Color="193, 255, 238" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell328" Border.Lines="All" Fill.Color="193, 255, 238" Text="[summary_invest.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell329" Border.Lines="All" Fill.Color="193, 255, 238" Text="[summary_invest.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell360" Border.Lines="All" Fill.Color="193, 255, 238" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell361" Border.Lines="All" Fill.Color="193, 255, 238" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell362" Border.Lines="All" Fill.Color="193, 255, 238" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell363" Border.Lines="All" Fill.Color="193, 255, 238" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell364" Border.Lines="All" Fill.Color="193, 255, 238" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table24" Left="1927.8" Top="28.35" Width="453.6" Height="56.7" Border.Lines="All">
|
||||
<TableColumn Name="Column298" Width="245.7"/>
|
||||
<TableColumn Name="Column299" Width="207.9"/>
|
||||
<TableRow Name="Row24" Height="56.7">
|
||||
<TableCell Name="Cell358" Border.Lines="All" Fill.Color="113, 125, 145" Text="ชื่อบริษัท/วงเงิน (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
<TableCell Name="Cell359" Border.Lines="All" Fill.Color="113, 125, 145" Text="ไฟล์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="White"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="143.73" Width="3024" Height="47.25" DataSource="years">
|
||||
<TableObject Name="Table25" Width="3024" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column305" Width="207.9"/>
|
||||
<TableColumn Name="Column306" Width="529.2"/>
|
||||
<TableColumn Name="Column307" Width="302.4"/>
|
||||
<TableColumn Name="Column308" Width="236.25"/>
|
||||
<TableColumn Name="Column309" Width="122.85"/>
|
||||
<TableColumn Name="Column310" Width="94.5"/>
|
||||
<TableColumn Name="Column311" Width="207.9"/>
|
||||
<TableColumn Name="Column312" Width="226.8"/>
|
||||
<TableColumn Name="Column313" Width="245.7"/>
|
||||
<TableColumn Name="Column314" Width="207.9"/>
|
||||
<TableColumn Name="Column315" Width="283.5"/>
|
||||
<TableColumn Name="Column316" Width="207.9"/>
|
||||
<TableColumn Name="Column317" Width="151.2"/>
|
||||
<TableRow Name="Row25" Height="47.25">
|
||||
<TableCell Name="Cell365" Border.Lines="All" Fill.Color="248, 201, 190" Text="ปีงบประมาณ" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell366" Border.Lines="All" Fill.Color="248, 201, 190" Text="[summary_invest.years.budget_year_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell367" Border.Lines="All" Fill.Color="248, 201, 190" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell368" Border.Lines="All" Fill.Color="248, 201, 190" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell369" Border.Lines="All" Fill.Color="248, 201, 190" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell370" Border.Lines="All" Fill.Color="248, 201, 190" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell371" Border.Lines="All" Fill.Color="248, 201, 190" Text="[summary_invest.years.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell372" Border.Lines="All" Fill.Color="248, 201, 190" Text="[summary_invest.years.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell373" Border.Lines="All" Fill.Color="248, 201, 190" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell374" Border.Lines="All" Fill.Color="248, 201, 190" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell375" Border.Lines="All" Fill.Color="248, 201, 190" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell376" Border.Lines="All" Fill.Color="248, 201, 190" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell377" Border.Lines="All" Fill.Color="248, 201, 190" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data2" Top="202.41" Width="3024" Height="47.25" DataSource="plans">
|
||||
<TableObject Name="Table26" Width="3024" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column318" Width="207.9"/>
|
||||
<TableColumn Name="Column319" Width="529.2"/>
|
||||
<TableColumn Name="Column320" Width="302.4"/>
|
||||
<TableColumn Name="Column321" Width="236.25"/>
|
||||
<TableColumn Name="Column322" Width="122.85"/>
|
||||
<TableColumn Name="Column323" Width="94.5"/>
|
||||
<TableColumn Name="Column324" Width="207.9"/>
|
||||
<TableColumn Name="Column325" Width="226.8"/>
|
||||
<TableColumn Name="Column326" Width="245.7"/>
|
||||
<TableColumn Name="Column327" Width="207.9"/>
|
||||
<TableColumn Name="Column328" Width="283.5"/>
|
||||
<TableColumn Name="Column329" Width="207.9"/>
|
||||
<TableColumn Name="Column330" Width="151.2"/>
|
||||
<TableRow Name="Row26" Height="47.25">
|
||||
<TableCell Name="Cell378" Border.Lines="All" Fill.Color="255, 255, 217" Text="แผนงาน" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell379" Border.Lines="All" Fill.Color="255, 255, 217" Text="[summary_invest.years.plans.budget_plan_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell380" Border.Lines="All" Fill.Color="255, 255, 217" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell381" Border.Lines="All" Fill.Color="255, 255, 217" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell382" Border.Lines="All" Fill.Color="255, 255, 217" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell383" Border.Lines="All" Fill.Color="255, 255, 217" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell384" Border.Lines="All" Fill.Color="255, 255, 217" Text="[summary_invest.years.plans.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell385" Border.Lines="All" Fill.Color="255, 255, 217" Text="[summary_invest.years.plans.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell386" Border.Lines="All" Fill.Color="255, 255, 217" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell387" Border.Lines="All" Fill.Color="255, 255, 217" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell388" Border.Lines="All" Fill.Color="255, 255, 217" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell389" Border.Lines="All" Fill.Color="255, 255, 217" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell390" Border.Lines="All" Fill.Color="255, 255, 217" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataBand Name="Data3" Top="261.09" Width="3024" Height="47.25" DataSource="asset_lists">
|
||||
<TableObject Name="Table27" Width="3024" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column331" Width="207.9"/>
|
||||
<TableColumn Name="Column332" Width="529.2"/>
|
||||
<TableColumn Name="Column333" Width="302.4"/>
|
||||
<TableColumn Name="Column334" Width="236.25"/>
|
||||
<TableColumn Name="Column335" Width="122.85"/>
|
||||
<TableColumn Name="Column336" Width="94.5"/>
|
||||
<TableColumn Name="Column337" Width="207.9"/>
|
||||
<TableColumn Name="Column338" Width="226.8"/>
|
||||
<TableColumn Name="Column339" Width="245.7"/>
|
||||
<TableColumn Name="Column340" Width="207.9"/>
|
||||
<TableColumn Name="Column341" Width="283.5"/>
|
||||
<TableColumn Name="Column342" Width="207.9"/>
|
||||
<TableColumn Name="Column343" Width="151.2"/>
|
||||
<TableRow Name="Row27" Height="47.25">
|
||||
<TableCell Name="Cell391" Border.Lines="All" Text="[Row#]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell392" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.list_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell393" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.budget_project_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell394" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.faculty_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell395" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.unit_name]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell396" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell397" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell398" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell399" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.seller2]" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell400" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.file2]" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell401" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.petitioner_full_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell402" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.phone_number]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell403" Border.Lines="All" Text="[summary_invest.years.plans.asset_lists.approve_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
Reference in New Issue
Block a user