This commit is contained in:
kamonwan taengsuk
2023-03-31 17:09:55 +07:00
parent 56e4c6d449
commit c1fbcdbc5a
12 changed files with 1447 additions and 149 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,203 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace rmutr_report.Models.Personnel
{
public class personnel_salary_government_root
{
[Key]
public Guid? personnel_salary_government_root_uid { get; set; }
public Guid? log_report_uid { get; set; }
public string year { get; set; }
public int? salary { get; set; }
public int? estimated_salary_3_percent_1 { get; set; }
public int? estimated_salary_3_percent_2 { get; set; }
public int? estimated_salary_3_percent_3 { get; set; }
public int? estimated_salary_3_percent_4 { get; set; }
public int? estimated_salary_3_percent_sum { get; set; }
public int? retiree { get; set; }
public int? salary_per_month { get; set; }
public int? salary_per_month_12 { get; set; }
public int? salary_minus_retirement_year { get; set; }
public int? position_money { get; set; }
public int? position_money_12 { get; set; }
public int? compensation_monthly { get; set; }
public int? compensation_monthly_12 { get; set; }
public int? position_money_2 { get; set; }
public int? position_money_2_12 { get; set; }
public int? compensation_monthly_2 { get; set; }
public int? compensation_monthly_2_12 { get; set; }
public int? total { get; set; }
public int? position_money_3 { get; set; }
public int? position_money_3_12 { get; set; }
public int? compensation_monthly_3 { get; set; }
public int? compensation_monthly_3_12 { get; set; }
public int? position_money_4 { get; set; }
public int? position_money_4_12 { get; set; }
public int? compensation_monthly_4 { get; set; }
public int? compensation_monthly_4_12 { get; set; }
public int? house_rent { get; set; }
public int? compensation_paid { get; set; }
public int? compensation_paid_12 { get; set; }
public string special_compensation_with_full_salary { get; set; }
public int? special_compensation { get; set; }
public int? special_compensation_12 { get; set; }
public int? compensation_1 { get; set; }
public int? compensation_2 { get; set; }
public int? compensation_3 { get; set; }
public int? compensation_4 { get; set; }
public int? compensation_5 { get; set; }
public int? compensation_6 { get; set; }
public string other { get; set; }
public int? other_price { get; set; }
public int? total_2 { get; set; }
public int? total_including_salary_and_fittings { get; set; }
public int? total_including_salary_and_fittings_12 { get; set; }
// public bool? is_footer { get; set; }
public List<t_personnel_salary_government> personnel_salary_government { get; set; }
}
public class t_personnel_salary_government
{
[Key]
public Guid? personnel_salary_government_uid { get; set; }
public Guid? personnel_salary_government_root_uid { get; set; }
public string agency_category_name { get; set; }
public string manpower { get; set; }
public string prefix { get; set; }
public string first_name_th { get; set; }
public string last_name_th { get; set; }
public string parent_agency_name { get; set; }
public string area { get; set; }
public string position { get; set; }
public string position_level { get; set; }
public bool? is_academic_line { get; set; }
public bool? is_support_line { get; set; }
public string management_position_name { get; set; }
public string assign_no { get; set; }
public string position_name { get; set; }
public string assign_document_date { get; set; }
public DateTime? assign_effective_date { get; set; }
public int? retire_year { get; set; }
public double? salary { get; set; }
public int? estimated_salary_3_percent_1 { get; set; }
public int? estimated_salary_3_percent_2 { get; set; }
public int? estimated_salary_3_percent_3 { get; set; }
public int? estimated_salary_3_percent_4 { get; set; }
public int? estimated_salary_3_percent_sum { get; set; }
public int? retiree { get; set; }
public int? salary_per_month { get; set; }
public int? salary_per_month_12 { get; set; }
public int? salary_minus_retirement_year { get; set; }
public int? position_money { get; set; }
public int? position_money_12 { get; set; }
public int? compensation_monthly { get; set; }
public int? compensation_monthly_12 { get; set; }
public int? position_money_2 { get; set; }
public int? position_money_2_12 { get; set; }
public int? compensation_monthly_2 { get; set; }
public int? compensation_monthly_2_12 { get; set; }
public int? total { get; set; }
public int? position_money_3 { get; set; }
public int? position_money_3_12 { get; set; }
public int? compensation_monthly_3 { get; set; }
public int? compensation_monthly_3_12 { get; set; }
public int? position_money_4 { get; set; }
public int? position_money_4_12 { get; set; }
public int? compensation_monthly_4 { get; set; }
public int? compensation_monthly_4_12 { get; set; }
public int? house_rent { get; set; }
public int? compensation_paid { get; set; }
public int? compensation_paid_12 { get; set; }
public string special_compensation_with_full_salary { get; set; }
public int? special_compensation { get; set; }
public int? special_compensation_12 { get; set; }
public int? compensation_1 { get; set; }
public int? compensation_2 { get; set; }
public int? compensation_3 { get; set; }
public int? compensation_4 { get; set; }
public int? compensation_5 { get; set; }
public int? compensation_6 { get; set; }
public string other { get; set; }
public int? other_price { get; set; }
public int? total_2 { get; set; }
public int? total_including_salary_and_fittings { get; set; }
public int? total_including_salary_and_fittings_12 { get; set; }
public List<t_personnel_salary_government_deltail> personnel_salary_deltails { get; set; }
public bool? is_footer { get; set; }
}
public class t_personnel_salary_government_deltail
{
[Key]
public Guid? personnel_salary_government_deltail_uid { get; set; }
public Guid? personnel_salary_government_uid { get; set; }
public string manpower { get; set; }
public string prefix { get; set; }
public string first_name_th { get; set; }
public string last_name_th { get; set; }
public string parent_agency_name { get; set; }
public string area { get; set; }
public string position { get; set; }
public string position_level { get; set; }
public bool? is_academic_line { get; set; }
public bool? is_support_line { get; set; }
public string management_position_name { get; set; }
public string assign_no { get; set; }
public string position_name { get; set; }
public string assign_document_date { get; set; }
public DateTime? assign_effective_date { get; set; }
public int? retire_year { get; set; }
public double? salary { get; set; }
public int? estimated_salary_3_percent_1 { get; set; }
public int? estimated_salary_3_percent_2 { get; set; }
public int? estimated_salary_3_percent_3 { get; set; }
public int? estimated_salary_3_percent_4 { get; set; }
public int? estimated_salary_3_percent_sum { get; set; }
public int? retiree { get; set; }
public int? salary_per_month { get; set; }
public int? salary_per_month_12 { get; set; }
public int? salary_minus_retirement_year { get; set; }
public int? position_money { get; set; }
public int? position_money_12 { get; set; }
public int? compensation_monthly { get; set; }
public int? compensation_monthly_12 { get; set; }
public int? position_money_2 { get; set; }
public int? position_money_2_12 { get; set; }
public int? compensation_monthly_2 { get; set; }
public int? compensation_monthly_2_12 { get; set; }
public int? total { get; set; }
public int? position_money_3 { get; set; }
public int? position_money_3_12 { get; set; }
public int? compensation_monthly_3 { get; set; }
public int? compensation_monthly_3_12 { get; set; }
public int? position_money_4 { get; set; }
public int? position_money_4_12 { get; set; }
public int? compensation_monthly_4 { get; set; }
public int? compensation_monthly_4_12 { get; set; }
public int? house_rent { get; set; }
public int? compensation_paid { get; set; }
public int? compensation_paid_12 { get; set; }
public string special_compensation_with_full_salary { get; set; }
public int? special_compensation { get; set; }
public int? special_compensation_12 { get; set; }
public int? compensation_1 { get; set; }
public int? compensation_2 { get; set; }
public int? compensation_3 { get; set; }
public int? compensation_4 { get; set; }
public int? compensation_5 { get; set; }
public int? compensation_6 { get; set; }
public string other { get; set; }
public int? other_price { get; set; }
public int? total_2 { get; set; }
public int? total_including_salary_and_fittings { get; set; }
public int? total_including_salary_and_fittings_12 { get; set; }
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
978a68f3e6875da013bada5ff7f0fb41cecb2e55 dcf9b6c379165b1111fd56b247df6da1d3abe3d4

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
16801461433146553 16801886891459267

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="03/02/2023 21:57:02" ReportInfo.Modified="03/30/2023 17:47:47" ReportInfo.CreatorVersion="2021.1.0.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="03/02/2023 21:57:02" ReportInfo.Modified="03/30/2023 20:13:19" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary> <Dictionary>
<BusinessObjectDataSource Name="building_four" ReferenceName="building_four" DataType="System.Int32" Enabled="true"> <BusinessObjectDataSource Name="building_four" ReferenceName="building_four" DataType="System.Int32" Enabled="true">
<Column Name="agency_faculty" DataType="System.String"/> <Column Name="agency_faculty" DataType="System.String"/>
@@ -1159,16 +1159,16 @@
<TableColumn Name="Column208" Width="103.95"/> <TableColumn Name="Column208" Width="103.95"/>
<TableColumn Name="Column209" Width="113.4"/> <TableColumn Name="Column209" Width="113.4"/>
<TableRow Name="Row55" Height="37.8"> <TableRow Name="Row55" Height="37.8">
<TableCell Name="Cell259" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell259" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell260" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell260" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell261" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell261" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell262" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell262" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell263" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell263" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell264" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell264" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell265" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell265" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell266" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell266" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell267" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell267" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell268" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell268" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>
@@ -1259,16 +1259,16 @@
<TableColumn Name="Column108" Width="103.95"/> <TableColumn Name="Column108" Width="103.95"/>
<TableColumn Name="Column109" Width="113.4"/> <TableColumn Name="Column109" Width="113.4"/>
<TableRow Name="Row14" Height="37.8"> <TableRow Name="Row14" Height="37.8">
<TableCell Name="Cell59" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell59" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell60" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell60" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell61" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell61" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell62" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell62" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell63" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell63" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell64" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell64" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell65" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell65" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell66" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell66" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell67" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell67" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell68" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell68" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>
@@ -1359,16 +1359,16 @@
<TableColumn Name="Column231" Width="103.95"/> <TableColumn Name="Column231" Width="103.95"/>
<TableColumn Name="Column232" Width="113.4"/> <TableColumn Name="Column232" Width="113.4"/>
<TableRow Name="Row19" Height="37.8"> <TableRow Name="Row19" Height="37.8">
<TableCell Name="Cell91" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell91" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell92" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell92" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell93" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell93" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell94" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell94" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell95" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell95" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell96" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell96" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell97" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell97" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell98" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell98" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell99" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell99" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell100" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell100" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>
@@ -1459,16 +1459,16 @@
<TableColumn Name="Column263" Width="103.95"/> <TableColumn Name="Column263" Width="103.95"/>
<TableColumn Name="Column264" Width="113.4"/> <TableColumn Name="Column264" Width="113.4"/>
<TableRow Name="Row24" Height="37.8"> <TableRow Name="Row24" Height="37.8">
<TableCell Name="Cell201" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell201" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell202" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell202" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell203" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell203" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell204" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell204" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell205" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell205" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell228" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell228" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell269" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell269" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell270" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell270" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell271" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell271" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell272" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell272" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>
@@ -1559,16 +1559,16 @@
<TableColumn Name="Column295" Width="103.95"/> <TableColumn Name="Column295" Width="103.95"/>
<TableColumn Name="Column296" Width="113.4"/> <TableColumn Name="Column296" Width="113.4"/>
<TableRow Name="Row44" Height="37.8"> <TableRow Name="Row44" Height="37.8">
<TableCell Name="Cell295" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell295" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell296" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell296" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell297" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell297" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell298" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell298" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell299" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell299" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell300" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell300" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell301" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell301" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell302" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell302" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell303" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell303" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell304" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell304" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>
@@ -1659,16 +1659,16 @@
<TableColumn Name="Column327" Width="103.95"/> <TableColumn Name="Column327" Width="103.95"/>
<TableColumn Name="Column328" Width="113.4"/> <TableColumn Name="Column328" Width="113.4"/>
<TableRow Name="Row60" Height="37.8"> <TableRow Name="Row60" Height="37.8">
<TableCell Name="Cell327" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell327" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell328" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell328" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell329" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell329" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell330" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell330" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell331" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell331" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell332" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell332" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell333" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell333" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell334" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell334" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell335" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell335" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell336" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell336" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>
@@ -1759,16 +1759,16 @@
<TableColumn Name="Column359" Width="103.95"/> <TableColumn Name="Column359" Width="103.95"/>
<TableColumn Name="Column360" Width="113.4"/> <TableColumn Name="Column360" Width="113.4"/>
<TableRow Name="Row65" Height="37.8"> <TableRow Name="Row65" Height="37.8">
<TableCell Name="Cell359" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell359" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell360" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell360" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell361" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell361" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell362" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell362" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell363" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell363" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell364" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell364" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell365" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell365" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell366" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell366" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell367" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell367" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell368" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell368" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>
@@ -1859,16 +1859,16 @@
<TableColumn Name="Column391" Width="103.95"/> <TableColumn Name="Column391" Width="103.95"/>
<TableColumn Name="Column392" Width="113.4"/> <TableColumn Name="Column392" Width="113.4"/>
<TableRow Name="Row70" Height="37.8"> <TableRow Name="Row70" Height="37.8">
<TableCell Name="Cell391" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell391" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell392" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell392" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell393" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell393" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell394" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell394" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell395" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell395" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell396" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell396" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell397" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell397" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell398" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell398" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell399" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell399" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell400" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell400" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>
@@ -1959,16 +1959,16 @@
<TableColumn Name="Column423" Width="103.95"/> <TableColumn Name="Column423" Width="103.95"/>
<TableColumn Name="Column424" Width="113.4"/> <TableColumn Name="Column424" Width="113.4"/>
<TableRow Name="Row75" Height="37.8"> <TableRow Name="Row75" Height="37.8">
<TableCell Name="Cell423" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell423" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell424" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell424" Border.Lines="All" Fill.Color="Gainsboro" Text="รวมงาน" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell425" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell425" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell426" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell426" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell427" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell427" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_unit9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell428" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell428" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_material_cost9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell429" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell429" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_unit9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell430" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell430" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_labor_cost9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell431" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell431" Border.Lines="All" Fill.Color="Gainsboro" Text="[building_four.total_all9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
<TableCell Name="Cell432" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 11pt"/> <TableCell Name="Cell432" Border.Lines="All" Fill.Color="Gainsboro" HorzAlign="Center" VertAlign="Center" Font="TH SarabunPSK, 14pt, style=Bold"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ReportSummaryBand> </ReportSummaryBand>