add reports
This commit is contained in:
@@ -3093,7 +3093,7 @@ namespace rmutr_report.Controllers
|
||||
XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 7), ws.Cell(row, 20)).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Right;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 20)).Style.Fill.BackgroundColor = XLColor.LightYellow;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 20)).Style.Fill.BackgroundColor = XLColor.FromArgb(255,230,153);
|
||||
ws.Range(ws.Cell(row, 7), ws.Cell(row, 20)).Style.NumberFormat.SetFormat("#,#");
|
||||
ws.Range(ws.Cell(row, 2), ws.Cell(row, 6)).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
|
||||
94
Controllers/RoTwo.Controller.cs
Normal file
94
Controllers/RoTwo.Controller.cs
Normal file
@@ -0,0 +1,94 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using FastReport;
|
||||
using FastReport.Export.OoXML;
|
||||
using FastReport.Export.Pdf;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using rmutr_report.Models;
|
||||
using rmutr_report.Models.Personnel;
|
||||
using rmutr_report.Models.RoThree;
|
||||
using Swashbuckle.AspNetCore.Annotations;
|
||||
|
||||
namespace rmutr_report.Controllers
|
||||
{
|
||||
[SwaggerTag("สำหรับรายงาน ร.2 คำขอชี้แจงงบบุคลากร")]
|
||||
|
||||
public class RoTwo : Controller
|
||||
{
|
||||
readonly Setting _setting;
|
||||
|
||||
public RoTwo(Setting setting)
|
||||
{
|
||||
this._setting = setting;
|
||||
}
|
||||
|
||||
[HttpPost, Route("reports/personnel_statement/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetRoThreeReport([FromRoute] string type, [FromBody] personnel_statement personnel_statements)
|
||||
{
|
||||
int no = 1;
|
||||
int no_2 = 1;
|
||||
foreach (var personnelStatementDetail in personnel_statements.personnel_statement_details)
|
||||
{
|
||||
personnelStatementDetail.start_dates =
|
||||
personnelStatementDetail.start_date.Value.ToString("dd/MM/yyyy",
|
||||
CultureInfo.CreateSpecificCulture("th-TH"));
|
||||
if (personnelStatementDetail.topic_type == 2)
|
||||
{
|
||||
personnelStatementDetail.row_no = no;
|
||||
no++;
|
||||
}
|
||||
}
|
||||
foreach (var personnelStatementDetail2 in personnel_statements.personnel_statement_details_2)
|
||||
{
|
||||
personnelStatementDetail2.start_dates =
|
||||
personnelStatementDetail2.start_date.Value.ToString("dd/MM/yyyy",
|
||||
CultureInfo.CreateSpecificCulture("th-TH"));
|
||||
if (personnelStatementDetail2.topic_type == 2)
|
||||
{
|
||||
personnelStatementDetail2.row_no = no_2;
|
||||
no_2++;
|
||||
}
|
||||
}
|
||||
var personnelstatements = new List<personnel_statement>() { personnel_statements };
|
||||
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "personnel_statement.frx");
|
||||
report.RegisterData(personnelstatements, "personnel_statement");
|
||||
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.ms-excel");
|
||||
string date = DateTime.Now.ToString("yyyyMMddHHmmss");
|
||||
return File(
|
||||
stream,
|
||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
"personnel_statement_"+date + ".xlsx");
|
||||
break;
|
||||
case "doc":
|
||||
case "docx":
|
||||
Word2007Export word = new Word2007Export();
|
||||
report.Export(word, stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
return File(stream, "appllication/vnd.ms-word");
|
||||
break;
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -36,6 +36,7 @@ namespace rmutr_report.Models.Personnel
|
||||
public string major { get; set; }
|
||||
public string qualification { get; set; }
|
||||
public DateTime? start_date { get; set; }
|
||||
public string start_dates { get; set; }
|
||||
public decimal? salary_rate { get; set; }
|
||||
public decimal? increase_cost_of_living { get; set; }
|
||||
public decimal? social_security { get; set; }
|
||||
@@ -44,6 +45,10 @@ namespace rmutr_report.Models.Personnel
|
||||
public decimal? total_expenses_per_year { get; set; }
|
||||
|
||||
public string department { get; set; }
|
||||
public int? row_no { get; set; }
|
||||
public int? topic_type { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class t_personnel_statement_detail_2
|
||||
@@ -57,6 +62,7 @@ namespace rmutr_report.Models.Personnel
|
||||
public string major { get; set; }
|
||||
public string qualification { get; set; }
|
||||
public DateTime? start_date { get; set; }
|
||||
public string start_dates { get; set; }
|
||||
public decimal? salary_rate { get; set; }
|
||||
public decimal? increase_cost_of_living { get; set; }
|
||||
public decimal? social_security { get; set; }
|
||||
@@ -66,5 +72,8 @@ namespace rmutr_report.Models.Personnel
|
||||
|
||||
public string department { get; set; }
|
||||
public int? row { get; set; }
|
||||
public int? row_no { get; set; }
|
||||
public int? topic_type { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
fbfa60e7aec45c4984e6c01a01c1f94c28233dde
|
||||
6b38d80c42c7701c621aeb86361ccf2c1087d190
|
||||
|
||||
Binary file not shown.
Binary file not shown.
437
wwwroot/reports/personnel_statement.frx
Normal file
437
wwwroot/reports/personnel_statement.frx
Normal file
@@ -0,0 +1,437 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/11/2023 14:27:01" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="personnel_statement" ReferenceName="personnel_statement" DataType="null" Enabled="true">
|
||||
<Column Name="academic_year_name_th" DataType="System.String"/>
|
||||
<Column Name="sector" DataType="System.String"/>
|
||||
<Column Name="revenue_estimates_type" DataType="System.String"/>
|
||||
<Column Name="parent_agency_name" DataType="System.String"/>
|
||||
<Column Name="agency_name_th" DataType="System.String"/>
|
||||
<Column Name="agency_category_name" DataType="System.String"/>
|
||||
<Column Name="set_revenue_estimates" DataType="System.Decimal"/>
|
||||
<Column Name="author_name" DataType="System.String"/>
|
||||
<Column Name="position_name" DataType="System.String"/>
|
||||
<Column Name="phone" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="personnel_statement_details" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="position_no" DataType="System.String"/>
|
||||
<Column Name="full_name" DataType="System.String"/>
|
||||
<Column Name="position_level" DataType="System.String"/>
|
||||
<Column Name="major" DataType="System.String"/>
|
||||
<Column Name="qualification" DataType="System.String"/>
|
||||
<Column Name="start_dates" DataType="System.String"/>
|
||||
<Column Name="salary_rate" DataType="System.Decimal"/>
|
||||
<Column Name="increase_cost_of_living" DataType="System.Decimal"/>
|
||||
<Column Name="social_security" DataType="System.Decimal"/>
|
||||
<Column Name="monthly_remuneration" DataType="System.Decimal"/>
|
||||
<Column Name="total_expenses_per_mount" DataType="System.Decimal"/>
|
||||
<Column Name="total_expenses_per_year" DataType="System.Decimal"/>
|
||||
<Column Name="department" DataType="System.String"/>
|
||||
<Column Name="row_no" DataType="System.Int32"/>
|
||||
<Column Name="topic_type" DataType="System.Int32"/>
|
||||
</BusinessObjectDataSource>
|
||||
<BusinessObjectDataSource Name="personnel_statement_details_2" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="position_no" DataType="System.String"/>
|
||||
<Column Name="full_name" DataType="System.String"/>
|
||||
<Column Name="position_level" DataType="System.String"/>
|
||||
<Column Name="major" DataType="System.String"/>
|
||||
<Column Name="qualification" DataType="System.String"/>
|
||||
<Column Name="start_dates" DataType="System.String"/>
|
||||
<Column Name="salary_rate" DataType="System.Decimal"/>
|
||||
<Column Name="increase_cost_of_living" DataType="System.Decimal"/>
|
||||
<Column Name="social_security" DataType="System.Decimal"/>
|
||||
<Column Name="monthly_remuneration" DataType="System.Decimal"/>
|
||||
<Column Name="total_expenses_per_mount" DataType="System.Decimal"/>
|
||||
<Column Name="total_expenses_per_year" DataType="System.Decimal"/>
|
||||
<Column Name="department" DataType="System.String"/>
|
||||
<Column Name="row_no" DataType="System.Int32"/>
|
||||
<Column Name="topic_type" DataType="System.Int32"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="580" PaperHeight="500" Watermark.Font="Arial, 60pt">
|
||||
<PageHeaderBand Name="PageHeader1" Width="2116.8" Height="283.5">
|
||||
<TextObject Name="Text40" Width="2116.8" Height="37.8" Text="งบประมาณรายจ่ายจากเงินรายได้ ประจำปีงบประมาณ พ.ศ. [personnel_statement.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text41" Top="37.8" Width="2116.8" Height="37.8" Text="รายละเอียดคำชี้แจง งบบุคลากร : ค่าจ้างชั่วคราว และเงินเพิ่มค่าครองชีพชั่วคราว" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table18" Top="207.9" Width="2116.8" Height="75.6" Border.Lines="All">
|
||||
<TableColumn Name="Column145" Width="151.2"/>
|
||||
<TableColumn Name="Column146" Width="274.05"/>
|
||||
<TableColumn Name="Column147" Width="198.45"/>
|
||||
<TableColumn Name="Column148" Width="207.9"/>
|
||||
<TableColumn Name="Column149" Width="160.65"/>
|
||||
<TableColumn Name="Column150" Width="122.85"/>
|
||||
<TableColumn Name="Column151" Width="122.85"/>
|
||||
<TableColumn Name="Column152" Width="132.3"/>
|
||||
<TableColumn Name="Column153" Width="122.85"/>
|
||||
<TableColumn Name="Column154" Width="132.3"/>
|
||||
<TableColumn Name="Column155" Width="132.3"/>
|
||||
<TableColumn Name="Column156" Width="132.3"/>
|
||||
<TableColumn Name="Column157" Width="226.8"/>
|
||||
<TableRow Name="Row18" Height="75.6">
|
||||
<TableCell Name="Cell205" Border.Lines="Left, Top, Bottom" Text="เลขที่ตำแหน่ง" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell206" Border.Lines="All" Text="ชื่อ - นามสกุล" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell207" Border.Lines="All" Text="ชื่อตำแหน่ง" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell208" Border.Lines="All" Text="ประจำสาขาวิชา" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell209" Border.Lines="All" Text="คุณวุฒิ" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell210" Border.Lines="All" Text="วันที่เริ่มปฏิบัติงาน" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell211" Border.Lines="All" Text="อัตราเงินเดือน /เดือน" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell212" Border.Lines="All" Text="เงินเพิ่มค่าครองชีพ ชั่วคราว/เดือน" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell213" Border.Lines="All" Text="ค่าประกันสังคม /เดือน" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell214" Border.Lines="All" Text="ค่าตอบแทนรายเดือน (ถ้ามี)" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell215" Border.Lines="All" Text="รวมรายจ่าย /เดือน" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell216" Border.Lines="All" Text="รวมรายจ่าย/ปี" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell217" Border.Lines="All" Text="ฝ่ายงาน / ภาระงาน (สรุปพอสังเขป)" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text67" Top="75.6" Width="2116.8" Height="37.8" Text="ข้อมูลลูกจ้างชั่วคราวและภาระงานที่ได้รับมอบหมายโดยสรุป" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text68" Left="283.5" Top="113.4" Width="94.5" Height="37.8" Text="หน่วยงาน :" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text69" Left="378" Top="113.4" Width="387.45" Height="37.8" Border.Lines="Bottom" Text="[personnel_statement.agency_name_th]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text70" Left="283.5" Top="160.65" Width="94.5" Height="37.8" Text="ผลผลิต :" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text71" Left="378" Top="160.65" Width="387.45" Height="37.8" Border.Lines="Bottom" Text="[personnel_statement.agency_category_name]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text72" Left="1275.75" Top="113.4" Width="94.5" Height="37.8" Text="ภาค :" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text73" Left="1370.25" Top="113.4" Width="387.45" Height="37.8" Border.Lines="Bottom" Text="[personnel_statement.sector]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text74" Left="1275.75" Top="160.65" Width="94.5" Height="37.8" Text="พื้นที่ :" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text75" Left="1370.25" Top="160.65" Width="387.45" Height="37.8" Border.Lines="Bottom" Text="[personnel_statement.parent_agency_name]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="291.34" Width="2116.8">
|
||||
<DataBand Name="Data2" Top="299.19" Width="2116.8" Height="47.25" DataSource="personnel_statement_details">
|
||||
<TableObject Name="Table17" Width="2116.8" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column131" Width="37.8"/>
|
||||
<TableColumn Name="Column132" Width="113.4"/>
|
||||
<TableColumn Name="Column133" Width="274.05"/>
|
||||
<TableColumn Name="Column134" Width="198.45"/>
|
||||
<TableColumn Name="Column135" Width="207.9"/>
|
||||
<TableColumn Name="Column136" Width="160.65"/>
|
||||
<TableColumn Name="Column137" Width="122.85"/>
|
||||
<TableColumn Name="Column138" Width="122.85"/>
|
||||
<TableColumn Name="Column139" Width="132.3"/>
|
||||
<TableColumn Name="Column140" Width="122.85"/>
|
||||
<TableColumn Name="Column141" Width="132.3"/>
|
||||
<TableColumn Name="Column142" Width="132.3"/>
|
||||
<TableColumn Name="Column143" Width="132.3"/>
|
||||
<TableColumn Name="Column144" Width="226.8"/>
|
||||
<TableRow Name="Row17" Height="47.25">
|
||||
<TableCell Name="Cell191" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.row_no]" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell192" Border.Lines="Right, Top, Bottom" Text="[personnel_statement.personnel_statement_details.position_no]" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell193" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.full_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell194" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.position_level]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell195" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.major]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell196" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.qualification]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell197" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.start_dates]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell198" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.salary_rate]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell199" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.increase_cost_of_living]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell200" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.social_security]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell201" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.monthly_remuneration]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell202" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.total_expenses_per_mount]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell203" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.total_expenses_per_year]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell204" Border.Lines="All" Text="[personnel_statement.personnel_statement_details.department]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 1" Fill.Color="255, 242, 204" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details.topic_type]== 2" TextFill.Color="Black" Font="TH Sarabun New, 14.25pt" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
<DataBand Name="Data3" Top="354.28" Width="2116.8" Height="47.25" DataSource="personnel_statement_details_2">
|
||||
<TableObject Name="Table19" Width="2116.8" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column158" Width="37.8"/>
|
||||
<TableColumn Name="Column159" Width="113.4"/>
|
||||
<TableColumn Name="Column160" Width="274.05"/>
|
||||
<TableColumn Name="Column161" Width="198.45"/>
|
||||
<TableColumn Name="Column162" Width="207.9"/>
|
||||
<TableColumn Name="Column163" Width="160.65"/>
|
||||
<TableColumn Name="Column164" Width="122.85"/>
|
||||
<TableColumn Name="Column165" Width="122.85"/>
|
||||
<TableColumn Name="Column166" Width="132.3"/>
|
||||
<TableColumn Name="Column167" Width="122.85"/>
|
||||
<TableColumn Name="Column168" Width="132.3"/>
|
||||
<TableColumn Name="Column169" Width="132.3"/>
|
||||
<TableColumn Name="Column170" Width="132.3"/>
|
||||
<TableColumn Name="Column171" Width="226.8"/>
|
||||
<TableRow Name="Row19" Height="47.25">
|
||||
<TableCell Name="Cell218" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.row_no]" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell219" Border.Lines="Right, Top, Bottom" Text="[personnel_statement.personnel_statement_details_2.position_no]" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell220" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.full_name]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell221" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.position_level]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell222" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.major]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell223" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.qualification]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell224" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.start_dates]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell225" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.salary_rate]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell226" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.increase_cost_of_living]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell227" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.social_security]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell228" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.monthly_remuneration]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell229" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.total_expenses_per_mount]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell230" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.total_expenses_per_year]" AutoShrink="FontSize" AutoShrinkMinSize="10" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell231" Border.Lines="All" Text="[personnel_statement.personnel_statement_details_2.department]" AutoShrink="FontSize" AutoShrinkMinSize="10" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[personnel_statement.personnel_statement_details_2.topic_type]== 2" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<ReportSummaryBand Name="ReportSummary1" Top="409.37" Width="2116.8" Height="37.8">
|
||||
<TextObject Name="Text66" Width="2116.8" Height="37.8" Fill.Color="255, 242, 204" Text="หมายเหตุ : วันที่เริ่มปฏิบัติงาน* หมายถึง วันที่ได้รับการบรรจุเป็นอัตราลูกจ้างชั่วคราว วันเริ่มทำงาน มิใช่วันที่ในการต่อสัญญาจ้างรายปี" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</ReportSummaryBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
Reference in New Issue
Block a user