This commit is contained in:
@@ -1037,6 +1037,166 @@ namespace rmutr_report.Controllers
|
||||
break;
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
[SwaggerOperation("ค่าตอบแทนอื่นๆ")]
|
||||
[HttpPost, Route("reports/other_compensation/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetCompensationReport([FromRoute] string type,
|
||||
[FromBody] parcel_inspection_committee committee)
|
||||
{
|
||||
int no = 1;
|
||||
|
||||
foreach (var data in committee.data)
|
||||
{
|
||||
data.list = "รายการ " + no;
|
||||
no++;
|
||||
foreach (var detail in data.data_detail)
|
||||
{
|
||||
if (detail != null)
|
||||
{
|
||||
detail.total_amount = ( detail.quantity_person *
|
||||
detail.amount);
|
||||
}
|
||||
}
|
||||
|
||||
data.total_amount = data.data_detail.Sum(f => f.total_amount);
|
||||
|
||||
var s = committee.data.Sum(d => d.total_amount);
|
||||
committee.total_all_amount = s;
|
||||
}
|
||||
|
||||
var expenses = new List<parcel_inspection_committee>() { committee };
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "other_compensation.frx");
|
||||
report.RegisterData(expenses, "parcel_inspection_committee");
|
||||
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",
|
||||
"other_compensation" + ".xlsx");
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
[SwaggerOperation("ค่าตอบแทน_ค่าเช่าบ้าน")]
|
||||
[HttpPost, Route("reports/house_rent_ro_three/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetHouseRentReport([FromRoute] string type,
|
||||
[FromBody] house_rent_ro_three houseRent)
|
||||
{
|
||||
if (houseRent.topic_type == 1)
|
||||
{
|
||||
houseRent.topic_name = "ค่าเช่าบ้านชาวต่างประเทศ";
|
||||
|
||||
}
|
||||
|
||||
if (houseRent.topic_type == 2)
|
||||
{
|
||||
houseRent.topic_name = "ค่าเช่าบ้านครูอาสาสมัคร(ชาวจีน)";
|
||||
|
||||
}
|
||||
|
||||
if (houseRent.topic_type == 3)
|
||||
{
|
||||
houseRent.topic_name = "ค่าเช่าบ้านที่ปรึกษาชาวต่างประเทศ";
|
||||
}
|
||||
|
||||
|
||||
var house = new List<house_rent_ro_three>() { houseRent };
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "house_rent_ro_three.frx");
|
||||
report.RegisterData(house, "house_rent_ro_three");
|
||||
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",
|
||||
"house_rent_ro_three" + ".xlsx");
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
[SwaggerOperation("ค่าตอบแทนพิเศษรายเดือน_ค่าตอบแทนเงินประจำตำแหน่ง")]
|
||||
[HttpPost, Route("reports/compensation_ro_three/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetCompensationMoneyReport([FromRoute] string type,
|
||||
[FromBody] compensation_ro_three compensationRoThree)
|
||||
{
|
||||
var compensation = compensationRoThree.data.ToList();
|
||||
if (compensationRoThree.topic_type == 1)
|
||||
{
|
||||
compensationRoThree.topic_name = "ค่าตอบแทนพิเศษรายเดือน อาจารย์ชาวต่างประเทศ";
|
||||
|
||||
}
|
||||
|
||||
if (compensationRoThree.topic_type == 2)
|
||||
{
|
||||
compensationRoThree.topic_name = "ค่าตอบแทนเงินประจำตำแหน่ง";
|
||||
|
||||
}
|
||||
|
||||
foreach (var detail in compensationRoThree.data)
|
||||
{
|
||||
detail.budget_amount = (detail.salary_rate * 12);
|
||||
}
|
||||
compensationRoThree.total_amount = compensation.Sum(f => f.budget_amount);
|
||||
|
||||
var compensationRoThrees = new List<compensation_ro_three>() { compensationRoThree };
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "compensation_ro_three.frx");
|
||||
report.RegisterData(compensationRoThrees, "compensation_ro_three");
|
||||
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",
|
||||
"compensation_ro_three" + ".xlsx");
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
}
|
||||
|
||||
27
Models/RoReport/compensation_ro_three.cs
Normal file
27
Models/RoReport/compensation_ro_three.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class compensation_ro_three
|
||||
{
|
||||
public int? topic_type { get; set; } //1 2 3
|
||||
public string topic_name { get; set; }
|
||||
public string budget_year { get; set; }
|
||||
public string date_range { get; set; }
|
||||
public string product { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
public string sector { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public List<compensation_ro_three_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class compensation_ro_three_detail
|
||||
{
|
||||
public string faculty_name_th { get; set; }
|
||||
public string display_name_th { get; set; }
|
||||
public decimal? salary_rate { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
31
Models/RoReport/house_rent_ro_three.cs
Normal file
31
Models/RoReport/house_rent_ro_three.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class house_rent_ro_three
|
||||
{
|
||||
public int? topic_type { get; set; } //1 2 3
|
||||
public string topic_name { get; set; }
|
||||
public string budget_year { get; set; }
|
||||
public string product { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
public string sector { get; set; }
|
||||
public List<house_rent_ro_three_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class house_rent_ro_three_detail
|
||||
{
|
||||
public string display_name_th { get; set; }
|
||||
public string position { get; set; }
|
||||
public string qualification { get; set; }
|
||||
public decimal? salary_rate { get; set; }
|
||||
public decimal? other_compensation { get; set; }
|
||||
public decimal? rent_per_month { get; set; }
|
||||
public decimal? rent_per_year { get; set; }
|
||||
public decimal? book { get; set; }
|
||||
public decimal? insurance { get; set; }
|
||||
public decimal? fee { get; set; }
|
||||
|
||||
public string station { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -23,6 +23,7 @@ namespace rmutr_report.Models
|
||||
public decimal? quantity { get; set; }
|
||||
public decimal? quantity_person { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public decimal? quantity_work { get; set; }
|
||||
public string unit { get; set; }
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
4fbc03ee83ba8c63e3851e021e2d1fb743067dae
|
||||
38a9d07017ef8cf4da24333a91be9dc5a1c91c4d
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -304,6 +304,22 @@
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\compensation_head_major.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\compensation_ro_three.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/rmutr_report</BasePath>
|
||||
<RelativePath>reports\compensation_ro_three.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\compensation_ro_three.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\data_line_academic.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
@@ -480,6 +496,22 @@
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\faculty_council.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\house_rent_ro_three.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/rmutr_report</BasePath>
|
||||
<RelativePath>reports\house_rent_ro_three.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\house_rent_ro_three.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\hr_askfor_insignia.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
@@ -1120,6 +1152,22 @@
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\other_committee_fee.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\other_compensation.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/rmutr_report</BasePath>
|
||||
<RelativePath>reports\other_compensation.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\other_compensation.frx))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\reports\parcel_inspection_committee.frx))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>rmutr_report</SourceId>
|
||||
|
||||
@@ -1 +1 @@
|
||||
c5f222989e07e2a5023c6ece5f0951ac96f2245c
|
||||
27b0df10d71791bb35e369c161be6ce323153ef6
|
||||
|
||||
@@ -1 +1 @@
|
||||
16992429240644035
|
||||
16992484278328616
|
||||
86
wwwroot/reports/compensation_ro_three.frx
Normal file
86
wwwroot/reports/compensation_ro_three.frx
Normal file
@@ -0,0 +1,86 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="11/06/2023 12:26:29" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="compensation_ro_three" ReferenceName="compensation_ro_three" DataType="null" Enabled="true">
|
||||
<Column Name="topic_type" DataType="System.Int32"/>
|
||||
<Column Name="topic_name" DataType="System.String"/>
|
||||
<Column Name="date_range" DataType="System.String"/>
|
||||
<Column Name="budget_year" DataType="System.String"/>
|
||||
<Column Name="product" DataType="System.String"/>
|
||||
<Column Name="agency_name_th" DataType="System.String"/>
|
||||
<Column Name="sector" DataType="System.String"/>
|
||||
<Column Name="total_amount" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
|
||||
<Column Name="faculty_name_th" DataType="System.String"/>
|
||||
<Column Name="display_name_th" DataType="System.String"/>
|
||||
<Column Name="salary_rate" DataType="System.Decimal"/>
|
||||
<Column Name="budget_amount" DataType="System.Decimal"/>
|
||||
<Column Name="remark" DataType="System.String"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="360" PaperHeight="1500" Watermark.Font="Arial, 60pt">
|
||||
<PageHeaderBand Name="PageHeader1" Width="1285.2" Height="311.85">
|
||||
<TextObject Name="Text40" Width="1285.2" Height="37.8" Text="งบประมาณรายจ่ายจากเงินรายได้ ประจำปีงบประมาณ พ.ศ. [compensation_ro_three.budget_year]" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table14" Top="236.25" Width="1285.2" Height="75.6" Border.Lines="All">
|
||||
<TableColumn Name="Column70"/>
|
||||
<TableColumn Name="Column92" Width="274.05"/>
|
||||
<TableColumn Name="Column93" Width="378"/>
|
||||
<TableColumn Name="Column94" Width="179.55"/>
|
||||
<TableColumn Name="Column95" Width="170.1"/>
|
||||
<TableColumn Name="Column96" Width="217.35"/>
|
||||
<TableRow Name="Row14" Height="75.6">
|
||||
<TableCell Name="Cell110" Border.Lines="All" Text="ลำดับที่" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell152" Border.Lines="All" Text="คณะ" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell153" Border.Lines="All" Text="ชื่อ-นามสกุล" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell154" Border.Lines="All" Text="อัตราเบิก /เดือน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell155" Border.Lines="All" Text="งบประมาณตลอดปี [compensation_ro_three.budget_year]" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell156" Border.Lines="All" Text="หมายเหตุ" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text41" Top="75.6" Width="1285.2" Height="37.8" Text="[compensation_ro_three.product]" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text42" Top="113.4" Width="1285.2" Height="37.8" Text="[compensation_ro_three.topic_name]" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold, Underline" TextFill.Color="131, 60, 12"/>
|
||||
<TextObject Name="Text43" Top="179.55" Width="661.5" Height="37.8" Text="หน่วยงาน : [compensation_ro_three.agency_name_th]" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text44" Left="661.5" Top="179.55" Width="623.7" Height="37.8" Text="[compensation_ro_three.sector]" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text45" Top="37.8" Width="1285.2" Height="37.8" Text="( [compensation_ro_three.date_range] )" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="317.04" Width="1285.2">
|
||||
<DataBand Name="Data2" Top="322.24" Width="1285.2" Height="56.7" DataSource="data">
|
||||
<TableObject Name="Table17" Width="1285.2" Height="56.7" Border.Lines="All">
|
||||
<TableColumn Name="Column131"/>
|
||||
<TableColumn Name="Column132" Width="274.05"/>
|
||||
<TableColumn Name="Column133" Width="378"/>
|
||||
<TableColumn Name="Column134" Width="179.55"/>
|
||||
<TableColumn Name="Column135" Width="170.1"/>
|
||||
<TableColumn Name="Column136" Width="217.35"/>
|
||||
<TableRow Name="Row17" Height="56.7">
|
||||
<TableCell Name="Cell191" Border.Lines="All" Text="[Row#]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell192" Border.Lines="All" Text="[compensation_ro_three.data.faculty_name_th]" Format="Custom" Format.Format="G" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell193" Border.Lines="All" Text="[compensation_ro_three.data.display_name_th]" Format="Custom" Format.Format="G" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell194" Border.Lines="All" Text="[compensation_ro_three.data.salary_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell195" Border.Lines="All" Text="[compensation_ro_three.data.budget_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell196" Border.Lines="All" Text="[compensation_ro_three.data.remark]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<ReportSummaryBand Name="ReportSummary1" Top="384.13" Width="1285.2" Height="47.25">
|
||||
<TableObject Name="Table18" Width="1285.2" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column137"/>
|
||||
<TableColumn Name="Column138" Width="274.05"/>
|
||||
<TableColumn Name="Column139" Width="378"/>
|
||||
<TableColumn Name="Column140" Width="179.55"/>
|
||||
<TableColumn Name="Column141" Width="170.1"/>
|
||||
<TableColumn Name="Column142" Width="217.35"/>
|
||||
<TableRow Name="Row18" Height="47.25">
|
||||
<TableCell Name="Cell197" Border.Lines="Bottom" Fill.Color="255, 242, 204" Text="รวมทั้งสิ้น" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold" ColSpan="4"/>
|
||||
<TableCell Name="Cell198" Border.Lines="All" Fill.Color="255, 242, 204" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell199" Border.Lines="All" Fill.Color="255, 242, 204" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell200" Border.Lines="All" Fill.Color="255, 242, 204" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell201" Border.Lines="Left, Right, Bottom" Fill.Color="255, 242, 204" Text="[compensation_ro_three.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell202" Border.Lines="Bottom" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</ReportSummaryBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
96
wwwroot/reports/house_rent_ro_three.frx
Normal file
96
wwwroot/reports/house_rent_ro_three.frx
Normal file
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="11/06/2023 11:55:02" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="house_rent_ro_three" ReferenceName="house_rent_ro_three" DataType="null" Enabled="true">
|
||||
<Column Name="topic_type" DataType="System.Int32"/>
|
||||
<Column Name="topic_name" DataType="System.String"/>
|
||||
<Column Name="budget_year" DataType="System.String"/>
|
||||
<Column Name="product" DataType="System.String"/>
|
||||
<Column Name="agency_name_th" DataType="System.String"/>
|
||||
<Column Name="sector" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
|
||||
<Column Name="display_name_th" DataType="System.String"/>
|
||||
<Column Name="position" DataType="System.String"/>
|
||||
<Column Name="qualification" DataType="System.String"/>
|
||||
<Column Name="salary_rate" DataType="System.Decimal"/>
|
||||
<Column Name="other_compensation" DataType="System.Decimal"/>
|
||||
<Column Name="rent_per_month" DataType="System.Decimal"/>
|
||||
<Column Name="rent_per_year" DataType="System.Decimal"/>
|
||||
<Column Name="book" DataType="System.Decimal"/>
|
||||
<Column Name="insurance" DataType="System.Decimal"/>
|
||||
<Column Name="fee" DataType="System.Decimal"/>
|
||||
<Column Name="station" DataType="System.String"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="590" PaperHeight="1500" Watermark.Font="Arial, 60pt">
|
||||
<PageHeaderBand Name="PageHeader1" Width="2154.6" Height="311.85">
|
||||
<TextObject Name="Text40" Width="2154.6" Height="37.8" Text="งบประมาณรายจ่ายจากเงินรายได้ ประจำปีงบประมาณ พ.ศ. [house_rent_ro_three.budget_year]" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table14" Top="236.25" Width="2154.6" Height="75.6" Border.Lines="All">
|
||||
<TableColumn Name="Column70"/>
|
||||
<TableColumn Name="Column92" Width="274.05"/>
|
||||
<TableColumn Name="Column93" Width="179.55"/>
|
||||
<TableColumn Name="Column94" Width="179.55"/>
|
||||
<TableColumn Name="Column95" Width="170.1"/>
|
||||
<TableColumn Name="Column96" Width="151.2"/>
|
||||
<TableColumn Name="Column97" Width="151.2"/>
|
||||
<TableColumn Name="Column98" Width="151.2"/>
|
||||
<TableColumn Name="Column99" Width="189"/>
|
||||
<TableColumn Name="Column100" Width="160.65"/>
|
||||
<TableColumn Name="Column101" Width="207.9"/>
|
||||
<TableColumn Name="Column102" Width="274.05"/>
|
||||
<TableRow Name="Row14" Height="75.6">
|
||||
<TableCell Name="Cell110" Border.Lines="All" Text="ลำดับที่" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell152" Border.Lines="All" Text="ชื่อ - นามสกุล" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell153" Border.Lines="All" Text="ตำแหน่ง" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell154" Border.Lines="All" Text="คุณวุฒิ" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell155" Border.Lines="All" Text="อัตราเงินเดือน ณ 1 ตุลาคม 2565" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell156" Border.Lines="All" Text="ค่าตอบแทนอื่นๆ ต่อเดือน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell157" Border.Lines="All" Text="ค่าเช่าบ้าน ต่อเดือน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell158" Border.Lines="All" Text="ค่าเช่าบ้าน ต่อปี" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell159" Border.Lines="All" Fill.Color="255, 242, 204" Text="ค่าทำหนังสือตรวจลงตรา เข้าประเทศไทย" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell160" Border.Lines="All" Fill.Color="255, 242, 204" Text="ค่าประกันสุขภาพ และอุบัติเหตุ" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell161" Border.Lines="All" Fill.Color="255, 242, 204" Text="ค่าธรรมเนียมการขอใบอนุญาต ทำงานในต่างประเทศ" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell162" Border.Lines="All" Text="ประจำสาขาวิชา / คณะ/วิทยาลัย" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text41" Top="37.8" Width="2154.6" Height="37.8" Text="[house_rent_ro_three.product]" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text42" Top="75.6" Width="2154.6" Height="37.8" Text="ค่าตอบแทน : [house_rent_ro_three.topic_name]" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold, Underline" TextFill.Color="131, 60, 12"/>
|
||||
<TextObject Name="Text43" Left="340.2" Top="113.4" Width="689.85" Height="37.8" Text="หน่วยงาน : [house_rent_ro_three.agency_name_th]" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text44" Left="1181.25" Top="113.4" Width="623.7" Height="37.8" Text="[house_rent_ro_three.sector]" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text45" Left="1323" Top="189" Width="557.55" Height="47.25" Border.Lines="All" Fill.Color="255, 242, 204" Text="ครูอาสาสมัคร (ชาวต่างประเทศ)" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="319.4" Width="2154.6">
|
||||
<DataBand Name="Data2" Top="326.94" Width="2154.6" Height="47.25" DataSource="data">
|
||||
<TableObject Name="Table17" Width="2154.6" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column131"/>
|
||||
<TableColumn Name="Column132" Width="274.05"/>
|
||||
<TableColumn Name="Column133" Width="179.55"/>
|
||||
<TableColumn Name="Column134" Width="179.55"/>
|
||||
<TableColumn Name="Column135" Width="170.1"/>
|
||||
<TableColumn Name="Column136" Width="151.2"/>
|
||||
<TableColumn Name="Column137" Width="151.2"/>
|
||||
<TableColumn Name="Column138" Width="151.2"/>
|
||||
<TableColumn Name="Column139" Width="189"/>
|
||||
<TableColumn Name="Column140" Width="160.65"/>
|
||||
<TableColumn Name="Column141" Width="207.9"/>
|
||||
<TableColumn Name="Column142" Width="274.05"/>
|
||||
<TableRow Name="Row17" Height="47.25">
|
||||
<TableCell Name="Cell191" Border.Lines="All" Text="[Row#]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell192" Border.Lines="All" Text="[house_rent_ro_three.data.display_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell193" Border.Lines="All" Text="[house_rent_ro_three.data.position]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell194" Border.Lines="All" Text="[house_rent_ro_three.data.qualification]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell195" Border.Lines="All" Text="[house_rent_ro_three.data.salary_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell196" Border.Lines="All" Text="[house_rent_ro_three.data.other_compensation]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell197" Border.Lines="All" Text="[house_rent_ro_three.data.rent_per_month]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell198" Border.Lines="All" Text="[house_rent_ro_three.data.rent_per_year]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell199" Border.Lines="All" Text="[house_rent_ro_three.data.book]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell200" Border.Lines="All" Text="[house_rent_ro_three.data.insurance]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell201" Border.Lines="All" Text="[house_rent_ro_three.data.fee]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell202" Border.Lines="All" Text="[house_rent_ro_three.data.station]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
63
wwwroot/reports/other_compensation.frx
Normal file
63
wwwroot/reports/other_compensation.frx
Normal file
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="01/13/2021 00:11:35" ReportInfo.Modified="11/06/2023 11:09:43" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="parcel_inspection_committee" ReferenceName="parcel_inspection_committee" DataType="null" Enabled="true">
|
||||
<Column Name="topic_name" DataType="System.String"/>
|
||||
<Column Name="total_all_amount" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
|
||||
<Column Name="list" DataType="System.String"/>
|
||||
<Column Name="total_amount" DataType="System.Decimal"/>
|
||||
<BusinessObjectDataSource Name="data_detail" DataType="null" Enabled="true">
|
||||
<Column Name="quantity" DataType="System.Decimal"/>
|
||||
<Column Name="quantity_person" DataType="System.Decimal"/>
|
||||
<Column Name="quantity_work" DataType="System.Decimal"/>
|
||||
<Column Name="amount" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount" DataType="System.Decimal"/>
|
||||
<Column Name="unit" DataType="System.String"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Sheet1" Landscape="true" PaperWidth="297" PaperHeight="210" RawPaperSize="9" Watermark.Font="Arial, 60pt">
|
||||
<DataBand Name="Data1" Width="1047.06" Height="37.8">
|
||||
<TextObject Name="Text1" Width="330.75" Height="37.8" Text="ค่าคณะกรรมการอื่นๆ" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text2" Left="330.75" Width="236.25" Height="37.8" Text="[parcel_inspection_committee.total_all_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text3" Left="567" Width="207.9" Height="37.8" Text="บาท" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<DataBand Name="Data2" Top="43.28" Width="1047.06" Height="85.05" DataSource="data">
|
||||
<TableObject Name="Table1" Top="37.8" Width="774.94" Height="47.25">
|
||||
<TableColumn Name="Column1" Width="66.17"/>
|
||||
<TableColumn Name="Column2" Width="236.27"/>
|
||||
<TableColumn Name="Column3" Width="141.75"/>
|
||||
<TableColumn Name="Column4" Width="160.65"/>
|
||||
<TableColumn Name="Column19" Width="170.1"/>
|
||||
<TableRow Name="Row1" Height="47.25">
|
||||
<TableCell Name="Cell1" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวนวัน/เดือน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold" ColSpan="2"/>
|
||||
<TableCell Name="Cell2" Border.Lines="All" Fill.Color="214, 220, 228" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวน (คน)" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวนเงิน (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell19" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวนเงินรวม (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text4" Width="330.75" Height="37.8" Text="[parcel_inspection_committee.data.list]" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text5" Left="330.75" Width="236.25" Height="37.8" Text="[parcel_inspection_committee.data.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text6" Left="567" Width="207.9" Height="37.8" Text="บาท" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<DataBand Name="Data3" Top="133.81" Width="1047.06" Height="37.8" DataSource="data_detail">
|
||||
<TableObject Name="Table2" Width="774.94" Height="37.8">
|
||||
<TableColumn Name="Column15" Width="66.17"/>
|
||||
<TableColumn Name="Column16" Width="236.27"/>
|
||||
<TableColumn Name="Column17" Width="141.75"/>
|
||||
<TableColumn Name="Column18" Width="160.65"/>
|
||||
<TableColumn Name="Column21" Width="170.1"/>
|
||||
<TableRow Name="Row2" Height="37.8">
|
||||
<TableCell Name="Cell15" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.quantity]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell16" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell17" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.quantity_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell18" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell21" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
@@ -18,9 +18,9 @@
|
||||
</Dictionary>
|
||||
<ReportPage Name="Sheet1" Landscape="true" PaperWidth="297" PaperHeight="210" RawPaperSize="9" Watermark.Font="Arial, 60pt">
|
||||
<DataBand Name="Data1" Width="1047.06" Height="37.8">
|
||||
<TextObject Name="Text1" Width="330.75" Height="37.8" Text="ค่าคณะกรรมการตรวจรับพัสดุในงานจ้างก่อสร้าง" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text2" Left="330.75" Width="236.25" Height="37.8" Text="[parcel_inspection_committee.total_all_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text3" Left="567" Width="330.75" Height="37.8" Text="บาท" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text1" Width="330.75" Height="37.8" Text="ค่าคณะกรรมการตรวจรับพัสดุในงานจ้างก่อสร้าง" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text2" Left="330.75" Width="236.25" Height="37.8" Text="[parcel_inspection_committee.total_all_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text3" Left="567" Width="330.75" Height="37.8" Text="บาท" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<DataBand Name="Data2" Top="43.28" Width="1047.06" Height="85.05" DataSource="data">
|
||||
<TableObject Name="Table1" Top="37.8" Width="897.79" Height="47.25">
|
||||
<TableColumn Name="Column1" Width="66.17"/>
|
||||
@@ -30,17 +30,17 @@
|
||||
<TableColumn Name="Column19" Width="141.75"/>
|
||||
<TableColumn Name="Column20" Width="151.2"/>
|
||||
<TableRow Name="Row1" Height="47.25">
|
||||
<TableCell Name="Cell1" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวนครั้งที่ตรวจรับ (วัน)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" ColSpan="2"/>
|
||||
<TableCell Name="Cell2" Border.Lines="All" Fill.Color="214, 220, 228" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวน (คน)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวนเงิน (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell19" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวน (งาน)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell20" Border.Lines="All" Fill.Color="214, 220, 228" Text="หน่วย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell1" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวนครั้งที่ตรวจรับ (วัน)" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold" ColSpan="2"/>
|
||||
<TableCell Name="Cell2" Border.Lines="All" Fill.Color="214, 220, 228" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวน (คน)" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวนเงิน (บาท)" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell19" Border.Lines="All" Fill.Color="214, 220, 228" Text="จำนวน (งาน)" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell20" Border.Lines="All" Fill.Color="214, 220, 228" Text="หน่วย" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text4" Width="330.75" Height="37.8" Text="[parcel_inspection_committee.data.list]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text5" Left="330.75" Width="236.25" Height="37.8" Text="[parcel_inspection_committee.data.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text6" Left="567" Width="330.75" Height="37.8" Text="บาท" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text4" Width="330.75" Height="37.8" Text="[parcel_inspection_committee.data.list]" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text5" Left="330.75" Width="236.25" Height="37.8" Text="[parcel_inspection_committee.data.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text6" Left="567" Width="330.75" Height="37.8" Text="บาท" VertAlign="Center" Font="TH SarabunPSK, 16pt, style=Bold"/>
|
||||
<DataBand Name="Data3" Top="133.81" Width="1047.06" Height="37.8" DataSource="data_detail">
|
||||
<TableObject Name="Table2" Width="897.79" Height="37.8">
|
||||
<TableColumn Name="Column15" Width="66.17"/>
|
||||
@@ -50,12 +50,12 @@
|
||||
<TableColumn Name="Column21" Width="141.75"/>
|
||||
<TableColumn Name="Column22" Width="151.2"/>
|
||||
<TableRow Name="Row2" Height="37.8">
|
||||
<TableCell Name="Cell15" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.quantity]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell16" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell17" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.quantity_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell18" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell21" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.quantity_work]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell22" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.unit]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt"/>
|
||||
<TableCell Name="Cell15" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.quantity]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell16" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell17" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.quantity_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell18" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" AutoShrink="FontSize" AutoShrinkMinSize="9" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell21" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.quantity_work]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
<TableCell Name="Cell22" Border.Lines="All" Text="[parcel_inspection_committee.data.data_detail.unit]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 16pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
|
||||
Reference in New Issue
Block a user