This commit is contained in:
@@ -26,13 +26,14 @@ namespace rmutr_report.Controllers
|
||||
{
|
||||
this._setting = setting;
|
||||
}
|
||||
|
||||
[SwaggerOperation("สรุปแผนความต้องการ รายการครุภัณฑ์")]
|
||||
[HttpPost, Route("reports/summary_of_equipment/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSum1Report([FromRoute] string type,
|
||||
[FromBody] summary_of_equipment summary_of_equipments)
|
||||
{
|
||||
var _summary_of_equipment = new List<summary_of_equipment>() {summary_of_equipments};
|
||||
var _summary_of_equipment = new List<summary_of_equipment>() { summary_of_equipments };
|
||||
var workbook = new XLWorkbook();
|
||||
var ws = workbook.Worksheets.Add("รายการก่อสร้างอาคาร");
|
||||
var imagePath = _setting.report_path + @"Logo-RMUTR.png";
|
||||
@@ -299,6 +300,7 @@ namespace rmutr_report.Controllers
|
||||
// }
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("สรุปแผนความต้องการ รายการครุภัณฑ์ 5 ปี")]
|
||||
[HttpPost, Route("reports/summary_of_equipment_five_year/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
@@ -545,21 +547,86 @@ namespace rmutr_report.Controllers
|
||||
ws.Range(ws.Cell(row, 8), ws.Cell(row, 14)).Style.NumberFormat.SetFormat("#,#");
|
||||
row++;
|
||||
}
|
||||
if (equipments.color == 2)
|
||||
|
||||
if (equipments.color == 2)
|
||||
{
|
||||
ws.Cell(row, 1).Value = null;
|
||||
ws.Cell(row, 2).Value = equipments.list;
|
||||
ws.Cell(row, 3).Value = null;
|
||||
ws.Cell(row, 4).Value = null;
|
||||
ws.Cell(row, 5).Value = null;
|
||||
ws.Cell(row, 6).Value = null;
|
||||
ws.Cell(row, 7).Value = null;
|
||||
ws.Cell(row, 8).Value = equipments.unit_price;
|
||||
ws.Cell(row, 9).Value = equipments.price_1;
|
||||
ws.Cell(row, 10).Value = equipments.price_2;
|
||||
ws.Cell(row, 11).Value = equipments.price_3;
|
||||
ws.Cell(row, 12).Value = equipments.price_4;
|
||||
ws.Cell(row, 13).Value = equipments.price_5;
|
||||
ws.Cell(row, 14).Value = null;
|
||||
ws.Cell(row, 15).Value = null;
|
||||
ws.Cell(row, 16).Value = null;
|
||||
ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 3).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 4).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 5).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 6).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 7).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 8).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 9).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 10).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 11).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 12).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 13).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 14).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 15).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 16).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Font.FontName =
|
||||
"TH Sarabun New";
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Font.FontSize = 12;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Alignment.WrapText = true;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Fill.BackgroundColor = XLColor.BabyBlue;
|
||||
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 3).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 4).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 5).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 6).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 7).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 8).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 9).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 10).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 11).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 12).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 13).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 14).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 15).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 16).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 8), ws.Cell(row, 14)).Style.NumberFormat.SetFormat("#,#");
|
||||
row++;
|
||||
}
|
||||
|
||||
foreach (var equipments1 in equipments.data)
|
||||
{
|
||||
if (equipments1.color == 3)
|
||||
{
|
||||
ws.Cell(row, 1).Value = null;
|
||||
ws.Cell(row, 2).Value = equipments.list;
|
||||
ws.Cell(row, 2).Value = equipments1.faculty_name;
|
||||
ws.Cell(row, 3).Value = null;
|
||||
ws.Cell(row, 4).Value = null;
|
||||
ws.Cell(row, 5).Value = null;
|
||||
ws.Cell(row, 6).Value = null;
|
||||
ws.Cell(row, 7).Value = null;
|
||||
ws.Cell(row, 8).Value = equipments.unit_price;
|
||||
ws.Cell(row, 9).Value = equipments.price_1;
|
||||
ws.Cell(row, 10).Value = equipments.price_2;
|
||||
ws.Cell(row, 11).Value = equipments.price_3;
|
||||
ws.Cell(row, 12).Value = equipments.price_4;
|
||||
ws.Cell(row, 13).Value = equipments.price_5;
|
||||
ws.Cell(row, 8).Value = equipments1.unit_price;
|
||||
ws.Cell(row, 9).Value = equipments1.price_1;
|
||||
ws.Cell(row, 10).Value = equipments1.price_2;
|
||||
ws.Cell(row, 11).Value = equipments1.price_3;
|
||||
ws.Cell(row, 12).Value = equipments1.price_4;
|
||||
ws.Cell(row, 13).Value = equipments1.price_5;
|
||||
ws.Cell(row, 14).Value = null;
|
||||
ws.Cell(row, 15).Value = null;
|
||||
ws.Cell(row, 16).Value = null;
|
||||
@@ -585,8 +652,8 @@ namespace rmutr_report.Controllers
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Alignment.WrapText = true;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Fill.BackgroundColor = XLColor.BabyBlue;
|
||||
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Fill.BackgroundColor =
|
||||
XLColor.LavenderPurple;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 3).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
@@ -607,23 +674,24 @@ namespace rmutr_report.Controllers
|
||||
row++;
|
||||
}
|
||||
|
||||
foreach (var equipments1 in equipments.data)
|
||||
{
|
||||
if (equipments1.color == 3)
|
||||
|
||||
foreach (var equipments2 in equipments1.data)
|
||||
{
|
||||
if (equipments2.color == 4)
|
||||
{
|
||||
ws.Cell(row, 1).Value = null;
|
||||
ws.Cell(row, 2).Value = equipments1.faculty_name;
|
||||
ws.Cell(row, 2).Value = equipments2.list;
|
||||
ws.Cell(row, 3).Value = null;
|
||||
ws.Cell(row, 4).Value = null;
|
||||
ws.Cell(row, 5).Value = null;
|
||||
ws.Cell(row, 6).Value = null;
|
||||
ws.Cell(row, 7).Value = null;
|
||||
ws.Cell(row, 8).Value = equipments1.unit_price;
|
||||
ws.Cell(row, 9).Value = equipments1.price_1;
|
||||
ws.Cell(row, 10).Value = equipments1.price_2;
|
||||
ws.Cell(row, 11).Value = equipments1.price_3;
|
||||
ws.Cell(row, 12).Value = equipments1.price_4;
|
||||
ws.Cell(row, 13).Value = equipments1.price_5;
|
||||
ws.Cell(row, 8).Value = equipments2.unit_price;
|
||||
ws.Cell(row, 9).Value = equipments2.price_1;
|
||||
ws.Cell(row, 10).Value = equipments2.price_2;
|
||||
ws.Cell(row, 11).Value = equipments2.price_3;
|
||||
ws.Cell(row, 12).Value = equipments2.price_4;
|
||||
ws.Cell(row, 13).Value = equipments2.price_5;
|
||||
ws.Cell(row, 14).Value = null;
|
||||
ws.Cell(row, 15).Value = null;
|
||||
ws.Cell(row, 16).Value = null;
|
||||
@@ -650,7 +718,7 @@ namespace rmutr_report.Controllers
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Fill.BackgroundColor =
|
||||
XLColor.LavenderPurple;
|
||||
XLColor.GrannySmithApple;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 3).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
@@ -672,74 +740,8 @@ namespace rmutr_report.Controllers
|
||||
}
|
||||
|
||||
|
||||
foreach (var equipments2 in equipments1.data)
|
||||
{
|
||||
if (equipments2.color == 4)
|
||||
{
|
||||
ws.Cell(row, 1).Value = null;
|
||||
ws.Cell(row, 2).Value = equipments2.list;
|
||||
ws.Cell(row, 3).Value = null;
|
||||
ws.Cell(row, 4).Value = null;
|
||||
ws.Cell(row, 5).Value = null;
|
||||
ws.Cell(row, 6).Value = null;
|
||||
ws.Cell(row, 7).Value = null;
|
||||
ws.Cell(row, 8).Value = equipments2.unit_price;
|
||||
ws.Cell(row, 9).Value = equipments2.price_1;
|
||||
ws.Cell(row, 10).Value = equipments2.price_2;
|
||||
ws.Cell(row, 11).Value = equipments2.price_3;
|
||||
ws.Cell(row, 12).Value = equipments2.price_4;
|
||||
ws.Cell(row, 13).Value = equipments2.price_5;
|
||||
ws.Cell(row, 14).Value = null;
|
||||
ws.Cell(row, 15).Value = null;
|
||||
ws.Cell(row, 16).Value = null;
|
||||
ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 3).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 4).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 5).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 6).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 7).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 8).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 9).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 10).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 11).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 12).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 13).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 14).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 15).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 16).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Font.FontName =
|
||||
"TH Sarabun New";
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Font.FontSize = 12;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Alignment.WrapText = true;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 16)).Style.Fill.BackgroundColor =
|
||||
XLColor.GrannySmithApple;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 3).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 4).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 5).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 6).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 7).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 8).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 9).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 10).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 11).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 12).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 13).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 14).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 15).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 16).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 8), ws.Cell(row, 14)).Style.NumberFormat.SetFormat("#,#");
|
||||
row++;
|
||||
}
|
||||
|
||||
|
||||
foreach (var equipment3 in equipments2.data)
|
||||
{
|
||||
|
||||
ws.Cell(row, 1).Value = no;
|
||||
no++;
|
||||
ws.Cell(row, 2).Value = equipment3.list;
|
||||
@@ -906,7 +908,7 @@ namespace rmutr_report.Controllers
|
||||
}
|
||||
}
|
||||
|
||||
var _statement_of_equipment = new List<statement_of_equipment>() {equipments};
|
||||
var _statement_of_equipment = new List<statement_of_equipment>() { equipments };
|
||||
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "statement_of_equipment.frx");
|
||||
@@ -1267,10 +1269,84 @@ namespace rmutr_report.Controllers
|
||||
ws.Range(ws.Cell(row, 11), ws.Cell(row, 16)).Style.NumberFormat.SetFormat("#,#");
|
||||
row++;
|
||||
}
|
||||
if (buildings.color == 2)
|
||||
|
||||
if (buildings.color == 2)
|
||||
{
|
||||
ws.Cell(row, 1).Value = null;
|
||||
ws.Cell(row, 2).Value = buildings.list;
|
||||
ws.Cell(row, 3).Value = null;
|
||||
ws.Cell(row, 4).Value = null;
|
||||
ws.Cell(row, 5).Value = null;
|
||||
ws.Cell(row, 6).Value = null;
|
||||
ws.Cell(row, 7).Value = null;
|
||||
ws.Cell(row, 8).Value = null;
|
||||
ws.Cell(row, 9).Value = null;
|
||||
ws.Cell(row, 10).Value = null;
|
||||
ws.Cell(row, 11).Value = buildings.budget;
|
||||
ws.Cell(row, 12).Value = buildings.price_1;
|
||||
ws.Cell(row, 13).Value = buildings.price_2;
|
||||
ws.Cell(row, 14).Value = buildings.price_3;
|
||||
ws.Cell(row, 15).Value = buildings.price_4;
|
||||
ws.Cell(row, 16).Value = buildings.price_5;
|
||||
ws.Cell(row, 17).Value = null;
|
||||
ws.Cell(row, 18).Value = null;
|
||||
ws.Cell(row, 19).Value = null;
|
||||
ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 3).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 4).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 5).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 6).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 7).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 8).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 9).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 10).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 11).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 12).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 13).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 14).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 15).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 16).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 17).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 18).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 19).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName =
|
||||
"TH Sarabun New";
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontSize = 11;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Alignment.WrapText = true;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Fill.BackgroundColor =
|
||||
XLColor.BabyBlue;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 3).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 4).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 5).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 6).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 7).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 8).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 9).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 10).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 11).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 12).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 13).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 14).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 15).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 16).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 17).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 18).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 19).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 11), ws.Cell(row, 16)).Style.NumberFormat.SetFormat("#,#");
|
||||
row++;
|
||||
}
|
||||
|
||||
foreach (var buildings1 in buildings.data)
|
||||
{
|
||||
if (buildings1.color == 3)
|
||||
{
|
||||
ws.Cell(row, 1).Value = null;
|
||||
ws.Cell(row, 2).Value = buildings.list;
|
||||
ws.Cell(row, 2).Value = buildings1.faculty_name;
|
||||
ws.Cell(row, 3).Value = null;
|
||||
ws.Cell(row, 4).Value = null;
|
||||
ws.Cell(row, 5).Value = null;
|
||||
@@ -1279,12 +1355,12 @@ namespace rmutr_report.Controllers
|
||||
ws.Cell(row, 8).Value = null;
|
||||
ws.Cell(row, 9).Value = null;
|
||||
ws.Cell(row, 10).Value = null;
|
||||
ws.Cell(row, 11).Value = buildings.budget;
|
||||
ws.Cell(row, 12).Value = buildings.price_1;
|
||||
ws.Cell(row, 13).Value = buildings.price_2;
|
||||
ws.Cell(row, 14).Value = buildings.price_3;
|
||||
ws.Cell(row, 15).Value = buildings.price_4;
|
||||
ws.Cell(row, 16).Value = buildings.price_5;
|
||||
ws.Cell(row, 11).Value = buildings1.budget;
|
||||
ws.Cell(row, 12).Value = buildings1.price_1;
|
||||
ws.Cell(row, 13).Value = buildings1.price_2;
|
||||
ws.Cell(row, 14).Value = buildings1.price_3;
|
||||
ws.Cell(row, 15).Value = buildings1.price_4;
|
||||
ws.Cell(row, 16).Value = buildings1.price_5;
|
||||
ws.Cell(row, 17).Value = null;
|
||||
ws.Cell(row, 18).Value = null;
|
||||
ws.Cell(row, 19).Value = null;
|
||||
@@ -1314,7 +1390,7 @@ namespace rmutr_report.Controllers
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Fill.BackgroundColor =
|
||||
XLColor.BabyBlue;
|
||||
XLColor.LavenderPurple;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 3).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
@@ -1324,26 +1400,30 @@ namespace rmutr_report.Controllers
|
||||
ws.Cell(row, 7).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 8).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 9).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 10).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 10).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 11).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 12).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 13).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 14).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 15).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 16).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 17).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 18).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 17).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 18).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 19).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 11), ws.Cell(row, 16)).Style.NumberFormat.SetFormat("#,#");
|
||||
ws.Range(ws.Cell(row, 11), ws.Cell(row, 16)).Style.NumberFormat
|
||||
.SetFormat("#,#");
|
||||
row++;
|
||||
}
|
||||
|
||||
foreach (var buildings1 in buildings.data)
|
||||
{
|
||||
if (buildings1.color == 3)
|
||||
foreach (var buildings2 in buildings1.data)
|
||||
{
|
||||
if (buildings2.color == 4)
|
||||
{
|
||||
ws.Cell(row, 1).Value = null;
|
||||
ws.Cell(row, 2).Value = buildings1.faculty_name;
|
||||
ws.Cell(row, 2).Value = buildings2.list;
|
||||
ws.Cell(row, 3).Value = null;
|
||||
ws.Cell(row, 4).Value = null;
|
||||
ws.Cell(row, 5).Value = null;
|
||||
@@ -1352,12 +1432,12 @@ namespace rmutr_report.Controllers
|
||||
ws.Cell(row, 8).Value = null;
|
||||
ws.Cell(row, 9).Value = null;
|
||||
ws.Cell(row, 10).Value = null;
|
||||
ws.Cell(row, 11).Value = buildings1.budget;
|
||||
ws.Cell(row, 12).Value = buildings1.price_1;
|
||||
ws.Cell(row, 13).Value = buildings1.price_2;
|
||||
ws.Cell(row, 14).Value = buildings1.price_3;
|
||||
ws.Cell(row, 15).Value = buildings1.price_4;
|
||||
ws.Cell(row, 16).Value = buildings1.price_5;
|
||||
ws.Cell(row, 11).Value = buildings2.budget;
|
||||
ws.Cell(row, 12).Value = buildings2.price_1;
|
||||
ws.Cell(row, 13).Value = buildings2.price_2;
|
||||
ws.Cell(row, 14).Value = buildings2.price_3;
|
||||
ws.Cell(row, 15).Value = buildings2.price_4;
|
||||
ws.Cell(row, 16).Value = buildings2.price_5;
|
||||
ws.Cell(row, 17).Value = null;
|
||||
ws.Cell(row, 18).Value = null;
|
||||
ws.Cell(row, 19).Value = null;
|
||||
@@ -1387,7 +1467,7 @@ namespace rmutr_report.Controllers
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Fill.BackgroundColor =
|
||||
XLColor.LavenderPurple;
|
||||
XLColor.GrannySmithApple;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 3).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
@@ -1415,88 +1495,9 @@ namespace rmutr_report.Controllers
|
||||
row++;
|
||||
}
|
||||
|
||||
foreach (var buildings2 in buildings1.data)
|
||||
{
|
||||
if (buildings2.color == 4)
|
||||
{
|
||||
ws.Cell(row, 1).Value = null;
|
||||
ws.Cell(row, 2).Value = buildings2.list;
|
||||
ws.Cell(row, 3).Value = null;
|
||||
ws.Cell(row, 4).Value = null;
|
||||
ws.Cell(row, 5).Value = null;
|
||||
ws.Cell(row, 6).Value = null;
|
||||
ws.Cell(row, 7).Value = null;
|
||||
ws.Cell(row, 8).Value = null;
|
||||
ws.Cell(row, 9).Value = null;
|
||||
ws.Cell(row, 10).Value = null;
|
||||
ws.Cell(row, 11).Value = buildings2.budget;
|
||||
ws.Cell(row, 12).Value = buildings2.price_1;
|
||||
ws.Cell(row, 13).Value = buildings2.price_2;
|
||||
ws.Cell(row, 14).Value = buildings2.price_3;
|
||||
ws.Cell(row, 15).Value = buildings2.price_4;
|
||||
ws.Cell(row, 16).Value = buildings2.price_5;
|
||||
ws.Cell(row, 17).Value = null;
|
||||
ws.Cell(row, 18).Value = null;
|
||||
ws.Cell(row, 19).Value = null;
|
||||
ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 3).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 4).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 5).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 6).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 7).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 8).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 9).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 10).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 11).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 12).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 13).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 14).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 15).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 16).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 17).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 18).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 19).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName =
|
||||
"TH Sarabun New";
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontSize = 11;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Alignment.WrapText = true;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Fill.BackgroundColor =
|
||||
XLColor.GrannySmithApple;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 3).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 4).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 5).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 6).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 7).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell(row, 8).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 9).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 10).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 11).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 12).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 13).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 14).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 15).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 16).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row, 17).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 18).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row, 19).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 11), ws.Cell(row, 16)).Style.NumberFormat
|
||||
.SetFormat("#,#");
|
||||
row++;
|
||||
}
|
||||
|
||||
|
||||
foreach (var building3 in buildings2.data)
|
||||
{
|
||||
|
||||
|
||||
ws.Cell(row, 1).Value = no;
|
||||
no++;
|
||||
ws.Cell(row, 2).Value = building3.list;
|
||||
@@ -1585,6 +1586,7 @@ namespace rmutr_report.Controllers
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[SwaggerOperation("สรุปงบลงทุน")]
|
||||
[HttpPost, Route("reports/investment_budget_summary/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
@@ -1593,16 +1595,18 @@ namespace rmutr_report.Controllers
|
||||
{
|
||||
foreach (var detail in investmentBudget.data)
|
||||
{
|
||||
if (detail.topic_type==1)
|
||||
if (detail.topic_type == 1)
|
||||
{
|
||||
detail.row_no = null;
|
||||
}
|
||||
if (detail.topic_type==3)
|
||||
}
|
||||
|
||||
if (detail.topic_type == 3)
|
||||
{
|
||||
detail.row_no = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
var investmentBudgetSummaries = new List<investment_budget_summary>() { investmentBudget };
|
||||
|
||||
var investmentBudgetSummaries = new List<investment_budget_summary>() { investmentBudget };
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "investment_budget_summary.frx");
|
||||
report.RegisterData(investmentBudgetSummaries, "investment_budget_summary");
|
||||
@@ -1630,6 +1634,7 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("สรุป MTEF")]
|
||||
[HttpPost, Route("reports/summary_mtef/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
@@ -1682,13 +1687,13 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("MTEF แผนงาน ผลผลิต")]
|
||||
[HttpPost, Route("reports/mtef_plan/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetMtefPlanReport([FromRoute] string type,
|
||||
[FromBody] mtef_plan mtef)
|
||||
{
|
||||
|
||||
var mtefs = new List<mtef_plan>() { mtef };
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "mtef_plan.frx");
|
||||
@@ -1717,5 +1722,198 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("ตารางสรุปกรอบความต้องการและสถานภาพความพร้อมรายการครุภัณฑ์ (รายการปีเดียว)")]
|
||||
[HttpPost, Route("reports/summary_demand_status_equipment/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSumDemandReport([FromRoute] string type,
|
||||
[FromBody] summary_demand_status_equipment summaryDemandStatus)
|
||||
{
|
||||
summaryDemandStatus.request_assets_year_1 = summaryDemandStatus.request_assets_year_1.Substring(2, 2);
|
||||
summaryDemandStatus.request_assets_year_2 = summaryDemandStatus.request_assets_year_2.Substring(2, 2);
|
||||
summaryDemandStatus.request_assets_year_3 = summaryDemandStatus.request_assets_year_3.Substring(2, 2);
|
||||
foreach (var detail in summaryDemandStatus.data)
|
||||
{
|
||||
if (detail.topic_type != 5)
|
||||
{
|
||||
detail.row_no = null;
|
||||
detail.conform1 = null;
|
||||
detail.conform2 = null;
|
||||
detail.conform3 = null;
|
||||
detail.standard_price1 = null;
|
||||
detail.standard_price2 = null;
|
||||
detail.standard_price3 = null;
|
||||
detail.unique_feature1 = null;
|
||||
detail.unique_feature2 = null;
|
||||
detail.unique_feature3 = null;
|
||||
}
|
||||
if (detail.topic_type == 2)
|
||||
{
|
||||
detail.topic = "- " + detail.topic;
|
||||
}
|
||||
if (detail.topic_type == 5)
|
||||
{
|
||||
|
||||
if (detail.conform_1 == true)
|
||||
{
|
||||
detail.conform1 = "P";
|
||||
}
|
||||
|
||||
if (detail.conform_2 == true)
|
||||
{
|
||||
detail.conform2 = "P";
|
||||
}
|
||||
|
||||
if (detail.conform_3 == true)
|
||||
{
|
||||
detail.conform3 = "P";
|
||||
}
|
||||
|
||||
if (detail.standard_price_1 == true)
|
||||
{
|
||||
detail.standard_price1 = "P";
|
||||
}
|
||||
|
||||
if (detail.standard_price_2 == true)
|
||||
{
|
||||
detail.standard_price2 = "P";
|
||||
}
|
||||
|
||||
if (detail.standard_price_3 == true)
|
||||
{
|
||||
detail.standard_price3 = "P";
|
||||
}
|
||||
|
||||
if (detail.unique_feature_1 == true)
|
||||
{
|
||||
detail.unique_feature1 = "P";
|
||||
}
|
||||
|
||||
if (detail.unique_feature_2 == true)
|
||||
{
|
||||
detail.unique_feature2 = "P";
|
||||
}
|
||||
|
||||
if (detail.unique_feature_3 == true)
|
||||
{
|
||||
detail.unique_feature3 = "P";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var statusEquipments = new List<summary_demand_status_equipment>() { summaryDemandStatus };
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "summary_demand_status_equipment.frx");
|
||||
report.RegisterData(statusEquipments, "summary_demand_status_equipment");
|
||||
report.Prepare();
|
||||
|
||||
MemoryStream stream = new MemoryStream();
|
||||
switch (type)
|
||||
{
|
||||
case "pdf":
|
||||
PDFExport pdf = new PDFExport();
|
||||
report.Export(pdf, stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
return File(stream, "application/pdf");
|
||||
|
||||
case "xls":
|
||||
case "xlsx":
|
||||
Excel2007Export excel = new Excel2007Export();
|
||||
report.Export(excel, stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
return File(
|
||||
stream,
|
||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
"summary_demand_status_equipment" + ".xlsx");
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
[SwaggerOperation("สรุปภาพรวมการเสนอแผนการปรับปรุงอาคารสถานที่/แผนการจัดหาที่ดินและสิ่งก่อสร้าง")]
|
||||
[HttpPost, Route("reports/summary_overview_building/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSumDemandReport([FromRoute] string type,
|
||||
[FromBody] summary_overview_building summaryOverviewBuilding)
|
||||
{
|
||||
|
||||
foreach (var detail in summaryOverviewBuilding.data)
|
||||
{
|
||||
if (detail.topic_type != 5)
|
||||
{
|
||||
detail.row_no = null;
|
||||
}
|
||||
if (detail.topic_type == 2)
|
||||
{
|
||||
detail.topic = "- " + detail.topic;
|
||||
}
|
||||
if (detail.topic_type == 5)
|
||||
{
|
||||
|
||||
if (detail.readiness_action_1 == true)
|
||||
{
|
||||
detail.readiness_action1 = "P";
|
||||
}
|
||||
|
||||
if (detail.readiness_action_2 == true)
|
||||
{
|
||||
detail.readiness_action2 = "P";
|
||||
}
|
||||
|
||||
if (detail.readiness_action_3 == true)
|
||||
{
|
||||
detail.readiness_action3 = "P";
|
||||
}
|
||||
|
||||
if (detail.readiness_action_4 == true)
|
||||
{
|
||||
detail.readiness_action4 = "P";
|
||||
}
|
||||
|
||||
|
||||
if (detail.appearance_equipment_1 == true)
|
||||
{
|
||||
detail.appearance_equipment1 = "P";
|
||||
}
|
||||
|
||||
if (detail.appearance_equipment_2 == true)
|
||||
{
|
||||
detail.appearance_equipment2 = "P";
|
||||
}
|
||||
|
||||
if (detail.appearance_equipment_3 == true)
|
||||
{
|
||||
detail.appearance_equipment3 = "P";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var summaryOverview = new List<summary_overview_building>() { summaryOverviewBuilding };
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "summary_overview_building.frx");
|
||||
report.RegisterData(summaryOverview, "summary_overview_building");
|
||||
report.Prepare();
|
||||
|
||||
MemoryStream stream = new MemoryStream();
|
||||
switch (type)
|
||||
{
|
||||
case "pdf":
|
||||
PDFExport pdf = new PDFExport();
|
||||
report.Export(pdf, stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
return File(stream, "application/pdf");
|
||||
|
||||
case "xls":
|
||||
case "xlsx":
|
||||
Excel2007Export excel = new Excel2007Export();
|
||||
report.Export(excel, stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
return File(
|
||||
stream,
|
||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
"summary_overview_building" + ".xlsx");
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Fonts/WINGDNG2.TTF
Normal file
BIN
Fonts/WINGDNG2.TTF
Normal file
Binary file not shown.
67
Models/budget/summary_demand_status_equipment.cs
Normal file
67
Models/budget/summary_demand_status_equipment.cs
Normal file
@@ -0,0 +1,67 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class summary_demand_status_equipment
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string request_assets_year_1 { get; set; }
|
||||
public string request_assets_year_2 { get; set; }
|
||||
public string request_assets_year_3 { get; set; }
|
||||
public List<summary_demand_status_equipment_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class summary_demand_status_equipment_detail
|
||||
{
|
||||
public string row_order { get; set; }
|
||||
public string row_no { get; set; }
|
||||
public int? topic_type { get; set; }
|
||||
public string topic { get; set; }
|
||||
public decimal? request_assets_year_1 { get; set; }
|
||||
public decimal? request_assets_year_2 { get; set; }
|
||||
public decimal? request_assets_year_3 { get; set; }
|
||||
public decimal? asset_available_amount { get; set; }
|
||||
public decimal? asset_broken_amount { get; set; }
|
||||
public decimal? not_available { get; set; }
|
||||
public decimal? average_service_life { get; set; }
|
||||
public string unit { get; set; }
|
||||
public decimal? unit_price { get; set; }
|
||||
public decimal? replacement_original { get; set; }
|
||||
public decimal? increase_efficiency { get; set; }
|
||||
public decimal? building { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public decimal? request_amount { get; set; }
|
||||
public decimal? offer_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
public bool? conform_1 { get; set; }
|
||||
public bool? conform_2 { get; set; }
|
||||
public bool? conform_3 { get; set; }
|
||||
|
||||
public bool? standard_price_1 { get; set; }
|
||||
public bool? standard_price_2 { get; set; }
|
||||
public bool? standard_price_3 { get; set; }
|
||||
|
||||
[Column(TypeName = "decimal(18,4)")] public decimal? limit_price_1 { get; set; }
|
||||
[Column(TypeName = "decimal(18,4)")] public decimal? limit_price_2 { get; set; }
|
||||
[Column(TypeName = "decimal(18,4)")] public decimal? limit_price_3 { get; set; }
|
||||
public bool? unique_feature_1 { get; set; }
|
||||
public bool? unique_feature_2 { get; set; }
|
||||
public bool? unique_feature_3 { get; set; }
|
||||
|
||||
public string budget_location_name_th { get; set; }
|
||||
|
||||
public string faculty_name_th { get; set; }
|
||||
|
||||
//
|
||||
public string conform1 { get; set; }
|
||||
public string conform2 { get; set; }
|
||||
public string conform3 { get; set; }
|
||||
public string standard_price1 { get; set; }
|
||||
public string standard_price2 { get; set; }
|
||||
public string standard_price3 { get; set; }
|
||||
public string unique_feature1 { get; set; }
|
||||
public string unique_feature2 { get; set; }
|
||||
public string unique_feature3 { get; set; }
|
||||
}
|
||||
}
|
||||
47
Models/budget/summary_overview_building.cs
Normal file
47
Models/budget/summary_overview_building.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class summary_overview_building
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public List<summary_overview_building_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class summary_overview_building_detail
|
||||
{
|
||||
public string row_order { get; set; }
|
||||
public string row_no { get; set; }
|
||||
public int? topic_type { get; set; }
|
||||
public string topic { get; set; }
|
||||
public string province { get; set; }
|
||||
public decimal? quantity { get; set; }
|
||||
public string unit { get; set; }
|
||||
public decimal? unit_price { get; set; }
|
||||
public decimal? request_amount { get; set; }
|
||||
public decimal? offer_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
public string assembly_details { get; set; }
|
||||
public decimal? usable_area { get; set; }
|
||||
public decimal? construction_period { get; set; }
|
||||
public decimal? quantity_period_work { get; set; }
|
||||
public bool? readiness_action_1 { get; set; }
|
||||
public bool? readiness_action_2 { get; set; }
|
||||
public bool? readiness_action_3 { get; set; }
|
||||
public bool? readiness_action_4 { get; set; }
|
||||
public bool? appearance_equipment_1 { get; set; }
|
||||
public bool? appearance_equipment_2 { get; set; }
|
||||
public bool? appearance_equipment_3 { get; set; }
|
||||
public string education_type { get; set; }
|
||||
public string budget_location_name_th { get; set; }
|
||||
public string faculty_name_th { get; set; }
|
||||
//
|
||||
public string readiness_action1 { get; set; }
|
||||
public string readiness_action2 { get; set; }
|
||||
public string readiness_action3 { get; set; }
|
||||
public string readiness_action4 { get; set; }
|
||||
public string appearance_equipment1 { get; set; }
|
||||
public string appearance_equipment2 { get; set; }
|
||||
public string appearance_equipment3 { get; set; }
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
6782220b5753377ab086a66662743b009c9fc879
|
||||
d4f69e2c0b0b612e84d5079dbaec8a33abddb288
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
497911b108703c18cc136c48e11db02dfbbd4c5b
|
||||
15c434a94e38d0b88f3ec6c7fee5cdb9307882c2
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
16921693241770036
|
||||
16921836306235276
|
||||
542
wwwroot/reports/summary_demand_status_equipment.frx
Normal file
542
wwwroot/reports/summary_demand_status_equipment.frx
Normal file
@@ -0,0 +1,542 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/16/2023 17:59:31" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="summary_demand_status_equipment" ReferenceName="summary_demand_status_equipment" DataType="null" Enabled="true">
|
||||
<Column Name="budget_year" DataType="System.String"/>
|
||||
<Column Name="request_assets_year_1" DataType="System.String"/>
|
||||
<Column Name="request_assets_year_2" DataType="System.String"/>
|
||||
<Column Name="request_assets_year_3" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
|
||||
<Column Name="topic_type" DataType="System.Int32"/>
|
||||
<Column Name="row_order" DataType="System.String"/>
|
||||
<Column Name="row_no" DataType="System.String"/>
|
||||
<Column Name="topic" DataType="System.String"/>
|
||||
<Column Name="request_assets_year_1" DataType="System.Decimal"/>
|
||||
<Column Name="request_assets_year_2" DataType="System.Decimal"/>
|
||||
<Column Name="request_assets_year_3" DataType="System.Decimal"/>
|
||||
<Column Name="asset_available_amount" DataType="System.Decimal"/>
|
||||
<Column Name="asset_broken_amount" DataType="System.Decimal"/>
|
||||
<Column Name="not_available" DataType="System.Decimal"/>
|
||||
<Column Name="average_service_life" DataType="System.Decimal"/>
|
||||
<Column Name="unit" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="replacement_original" DataType="System.Decimal"/>
|
||||
<Column Name="increase_efficiency" DataType="System.Decimal"/>
|
||||
<Column Name="building" DataType="System.Decimal"/>
|
||||
<Column Name="total_amount" DataType="System.Decimal"/>
|
||||
<Column Name="request_amount" DataType="System.Decimal"/>
|
||||
<Column Name="offer_amount" DataType="System.Decimal"/>
|
||||
<Column Name="remark" DataType="System.String"/>
|
||||
<Column Name="limit_price_1" DataType="System.Decimal"/>
|
||||
<Column Name="limit_price_2" DataType="System.Decimal"/>
|
||||
<Column Name="limit_price_3" DataType="System.Decimal"/>
|
||||
<Column Name="budget_location_name_th" DataType="System.String"/>
|
||||
<Column Name="faculty_name_th" DataType="System.String"/>
|
||||
<Column Name="conform1" DataType="System.String"/>
|
||||
<Column Name="conform2" DataType="System.String"/>
|
||||
<Column Name="conform3" DataType="System.String"/>
|
||||
<Column Name="standard_price1" DataType="System.String"/>
|
||||
<Column Name="standard_price2" DataType="System.String"/>
|
||||
<Column Name="standard_price3" DataType="System.String"/>
|
||||
<Column Name="unique_feature1" DataType="System.String"/>
|
||||
<Column Name="unique_feature2" DataType="System.String"/>
|
||||
<Column Name="unique_feature3" DataType="System.String"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="980" PaperHeight="250" Watermark.Font="Arial, 60pt">
|
||||
<PageHeaderBand Name="PageHeader5" Width="3628.8" Height="207.9">
|
||||
<TableObject Name="Table10" Top="94.5" Width="3600.45" Height="113.4">
|
||||
<TableColumn Name="Column83" Width="56.7"/>
|
||||
<TableColumn Name="Column84" Width="3543.75"/>
|
||||
<TableRow Name="Row10" Height="113.4">
|
||||
<TableCell Name="Cell76" Border.Lines="All" Text="ลำดับ ความ สำคัญ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TableCell Name="Cell77" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold">
|
||||
<TextObject Name="Text143" Left="340.2" Top="66.15" Width="94.5" Height="47.25" Border.Lines="Left, Bottom" Text="ปี [summary_demand_status_equipment.request_assets_year_1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text145" Left="434.7" Top="66.15" Width="94.5" Height="47.25" Border.Lines="Left, Right, Bottom" Text="ปี [summary_demand_status_equipment.request_assets_year_2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text176" Width="56.7" Height="113.4" Border.Lines="All" Text="ลำดับที่" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text144" Left="529.2" Top="66.15" Width="94.5" Height="47.25" Border.Lines="Left, Right, Bottom" Text="ปี [summary_demand_status_equipment.request_assets_year_3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text201" Left="56.7" Width="283.5" Height="113.4" Border.Lines="All" Text="ผลผลิต/ประเภทรายการ/รายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text172" Left="340.2" Width="283.5" Height="66.15" Border.Lines="All" Text="กรอบความต้องการครุภัณฑ์ (จำนวน)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text202" Left="623.7" Width="406.35" Height="37.8" Border.Lines="All" Text="ครุภัณฑ์ที่มีอยู่ปัจจุบัน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text203" Left="623.7" Top="66.15" Width="94.5" Height="47.25" Border.Lines="Left, Bottom" Text="สภาพปกติ ใช้งานได้" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text204" Left="623.7" Top="37.8" Width="283.5" Height="28.35" Border.Lines="Left, Bottom" Text="จำนวน (หน่วย)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text205" Left="718.2" Top="66.15" Width="94.5" Height="47.25" Border.Lines="Left, Bottom" Text="สภาพชำรุด แต่ยังใช้งานได้" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text206" Left="812.7" Top="66.15" Width="94.5" Height="47.25" Border.Lines="Left, Bottom" Text="ไม่สามารถ ใช้งานได้" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text207" Left="907.2" Top="37.8" Width="122.85" Height="75.6" Border.Lines="Left, Right, Bottom" Text="อายุ การใช้งานเฉลี่ยต่อเครื่อง (ปี)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text208" Left="1030.05" Width="94.5" Height="113.4" Border.Lines="Left, Right, Bottom" Text="หน่วยนับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text209" Left="1124.55" Width="94.5" Height="113.4" Border.Lines="Left, Right, Bottom" Text="ราคา ต่อหน่วย (ล้านบาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text210" Left="1219.05" Width="378" Height="47.25" Border.Lines="All" Text="จำนวนที่เสนอตั้ง งปม. [summary_demand_status_equipment.budget_year] (หน่วย)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text211" Left="1219.05" Top="47.25" Width="94.5" Height="66.15" Border.Lines="Left, Bottom" Text="ทดแทน ของเดิม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text212" Left="1313.55" Top="47.25" Width="94.5" Height="66.15" Border.Lines="Left, Right, Bottom" Text="เพื่อเพิ่ม ประสิทธิภาพ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text213" Left="1408.05" Top="47.25" Width="94.5" Height="66.15" Border.Lines="Left, Right, Bottom" Text="ประจำ อาคาร" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text214" Left="1502.55" Top="47.25" Width="94.5" Height="66.15" Border.Lines="Left, Right, Bottom" Text="รวมจำนวน ทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text215" Left="1597.05" Width="94.5" Height="113.4" Border.Lines="Left, Right, Bottom" Text="คำขอ (ล้านบาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text216" Left="1691.55" Width="94.5" Height="113.4" Border.Lines="Left, Right, Bottom" Text="วงเงินเสนอตั้ง (ล้านบาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text217" Left="1786.05" Width="283.5" Height="113.4" Border.Lines="Left, Right, Bottom" Text="เหตุผลความจำเป็น (ลักษณะการใช้งาน ผู้ใช้ประโยชน์ จำนวนคน จำนวนคณะ ปัจจุบันใช้งานอย่างไร)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text218" Left="2069.55" Width="283.5" Height="47.25" Border.Lines="Right, Bottom" Text="ความสอดคล้อง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text219" Left="2268" Width="37.8" Height="47.25" Text="P" VertAlign="Center" Font="Wingdings 2, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text220" Left="2249.1" Width="18.9" Height="47.25" Text="(" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text221" Left="2286.9" Width="18.9" Height="47.25" Text=")" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text222" Left="2069.55" Top="47.25" Width="94.5" Height="66.15" Border.Lines="Left, Bottom" Text="ภารกิจ หน่วยงาน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text223" Left="2164.05" Top="47.25" Width="94.5" Height="66.15" Border.Lines="Left, Right, Bottom" Text="ความต้องการ ในพื้นที่ /แผนพัฒนาพื้นที่" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text224" Left="2258.55" Top="47.25" Width="94.5" Height="66.15" Border.Lines="Left, Right, Bottom" Text="ความ ต้องการ ของประชาชน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text225" Left="2353.05" Top="47.25" Width="283.5" Height="28.35" Border.Lines="Right, Bottom" Text="ราคามาตรฐาน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text226" Left="2353.05" Top="75.6" Width="94.5" Height="37.8" Border.Lines="Left, Bottom" Text="บัญชี ราคามาตรฐาน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text227" Left="2447.55" Top="75.6" Width="94.5" Height="37.8" Border.Lines="Left, Right, Bottom" Text="บัญชี นวัตกรรมไทย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text228" Left="2542.05" Top="75.6" Width="94.5" Height="37.8" Border.Lines="Left, Right, Bottom" Text="ราคา กลาง(DE)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text229" Left="2353.05" Width="850.5" Height="47.25" Border.Lines="Right, Bottom" Text="ความพร้อมดำเนินการ (เอกสาร)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text230" Left="2551.5" Top="47.25" Width="37.8" Height="28.35" Text="P" VertAlign="Center" Font="Wingdings 2, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text231" Left="2532.6" Top="47.25" Width="18.9" Height="28.35" Text="(" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text232" Left="2570.4" Top="47.25" Width="18.9" Height="28.35" Text=")" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text233" Left="2636.55" Top="47.25" Width="283.5" Height="28.35" Border.Lines="Right, Bottom" Text="ใบเสนอราคา (ล้านบาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text234" Left="2636.55" Top="75.6" Width="94.5" Height="37.8" Border.Lines="Left, Bottom" Text="บริษัทที่ 1" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text235" Left="2731.05" Top="75.6" Width="94.5" Height="37.8" Border.Lines="Left, Right, Bottom" Text="บริษัทที่ 2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text236" Left="2825.55" Top="75.6" Width="94.5" Height="37.8" Border.Lines="Left, Right, Bottom" Text="บริษัทที่ 3" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text237" Left="2920.05" Top="47.25" Width="283.5" Height="28.35" Border.Lines="Right, Bottom" Text="คุณลักษณะเฉพาะ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text238" Left="3118.5" Top="47.25" Width="37.8" Height="28.35" Text="P" VertAlign="Center" Font="Wingdings 2, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text239" Left="3099.6" Top="47.25" Width="18.9" Height="28.35" Text="(" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text240" Left="3137.4" Top="47.25" Width="18.9" Height="28.35" Text=")" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text241" Left="2920.05" Top="75.6" Width="94.5" Height="37.8" Border.Lines="Left, Bottom" Text="ด้าน วิจัย/พัฒนา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text242" Left="3014.55" Top="75.6" Width="94.5" Height="37.8" Border.Lines="Left, Right, Bottom" Text="ด้าน การเรียนการสอน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text243" Left="3109.05" Top="75.6" Width="94.5" Height="37.8" Border.Lines="Left, Right, Bottom" Text="ด้าน บริการวิชาการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text244" Left="3203.55" Width="170.1" Height="113.4" Border.Lines="Left, Right, Bottom" Text="พื้นที่/วิทยาเขต" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text245" Left="3373.65" Width="170.1" Height="113.4" Border.Lines="Left, Right, Bottom" Text="คณะ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text174" Width="3600.45" Height="28.35" Text="ตารางสรุปกรอบความต้องการและสถานภาพความพร้อมรายการครุภัณฑ์ (รายการปีเดียว)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text199" Top="28.35" Width="3600.45" Height="28.35" Text="กระทรวงการอุดมศึกษา วิทยาศาสตร์วิจัยและนวัตกรรม" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text200" Top="56.7" Width="3600.45" Height="28.35" Text="หน่วยงาน มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data9" Top="213.61" Width="3628.8">
|
||||
<DataBand Name="Data10" Top="219.33" Width="3628.8" Height="47.25" DataSource="data">
|
||||
<TableObject Name="Table11" Width="3600.45" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column170" Width="56.7"/>
|
||||
<TableColumn Name="Column171" Width="56.7"/>
|
||||
<TableColumn Name="Column172" Width="283.5"/>
|
||||
<TableColumn Name="Column173" Width="94.5"/>
|
||||
<TableColumn Name="Column174" Width="94.5"/>
|
||||
<TableColumn Name="Column175" Width="94.5"/>
|
||||
<TableColumn Name="Column176" Width="94.5"/>
|
||||
<TableColumn Name="Column177" Width="94.5"/>
|
||||
<TableColumn Name="Column184" Width="94.5"/>
|
||||
<TableColumn Name="Column185" Width="122.85"/>
|
||||
<TableColumn Name="Column186" Width="94.5"/>
|
||||
<TableColumn Name="Column187" Width="94.5"/>
|
||||
<TableColumn Name="Column188" Width="94.5"/>
|
||||
<TableColumn Name="Column206" Width="94.5"/>
|
||||
<TableColumn Name="Column207" Width="94.5"/>
|
||||
<TableColumn Name="Column208" Width="94.5"/>
|
||||
<TableColumn Name="Column209" Width="94.5"/>
|
||||
<TableColumn Name="Column210" Width="94.5"/>
|
||||
<TableColumn Name="Column211" Width="283.5"/>
|
||||
<TableColumn Name="Column212" Width="94.5"/>
|
||||
<TableColumn Name="Column213" Width="94.5"/>
|
||||
<TableColumn Name="Column214" Width="94.5"/>
|
||||
<TableColumn Name="Column215" Width="94.5"/>
|
||||
<TableColumn Name="Column216" Width="94.5"/>
|
||||
<TableColumn Name="Column217" Width="94.5"/>
|
||||
<TableColumn Name="Column218" Width="94.5"/>
|
||||
<TableColumn Name="Column219" Width="94.5"/>
|
||||
<TableColumn Name="Column220" Width="94.5"/>
|
||||
<TableColumn Name="Column221" Width="94.5"/>
|
||||
<TableColumn Name="Column222" Width="94.5"/>
|
||||
<TableColumn Name="Column223" Width="94.5"/>
|
||||
<TableColumn Name="Column224" Width="170.1"/>
|
||||
<TableColumn Name="Column225" Width="170.1"/>
|
||||
<TableRow Name="Row11" Height="47.25">
|
||||
<TableCell Name="Cell89" Border.Lines="All" Text="[summary_demand_status_equipment.data.row_order]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell90" Border.Lines="All" Text="[summary_demand_status_equipment.data.row_no]" AutoShrink="FontSize" AutoShrinkMinSize="10.5" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell91" Border.Lines="All" Text="[summary_demand_status_equipment.data.topic]" AutoShrink="FontSize" AutoShrinkMinSize="9" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell92" Border.Lines="All" Text="[summary_demand_status_equipment.data.request_assets_year_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell93" Border.Lines="All" Text="[summary_demand_status_equipment.data.request_assets_year_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell94" Border.Lines="All" Text="[summary_demand_status_equipment.data.request_assets_year_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell95" Border.Lines="All" Text="[summary_demand_status_equipment.data.asset_available_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell96" Border.Lines="All" Text="[summary_demand_status_equipment.data.asset_broken_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell103" Border.Lines="All" Text="[summary_demand_status_equipment.data.not_available]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell104" Border.Lines="All" Text="[summary_demand_status_equipment.data.average_service_life]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell105" Border.Lines="All" Text="[summary_demand_status_equipment.data.unit]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell106" Border.Lines="All" Text="[summary_demand_status_equipment.data.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell107" Border.Lines="All" Text="[summary_demand_status_equipment.data.replacement_original]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell206" Border.Lines="All" Text="[summary_demand_status_equipment.data.increase_efficiency]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell207" Border.Lines="All" Text="[summary_demand_status_equipment.data.building]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell208" Border.Lines="All" Text="[summary_demand_status_equipment.data.total_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell209" Border.Lines="All" Text="[summary_demand_status_equipment.data.request_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell210" Border.Lines="All" Text="[summary_demand_status_equipment.data.offer_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell211" Border.Lines="All" Text="[summary_demand_status_equipment.data.remark]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell212" Border.Lines="All" Text="[summary_demand_status_equipment.data.conform1]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell213" Border.Lines="All" Text="[summary_demand_status_equipment.data.conform2]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell214" Border.Lines="All" Text="[summary_demand_status_equipment.data.conform3]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell215" Border.Lines="All" Text="[summary_demand_status_equipment.data.standard_price1]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell216" Border.Lines="All" Text="[summary_demand_status_equipment.data.standard_price2]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell217" Border.Lines="All" Text="[summary_demand_status_equipment.data.standard_price3]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell218" Border.Lines="All" Text="[summary_demand_status_equipment.data.limit_price_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell219" Border.Lines="All" Text="[summary_demand_status_equipment.data.limit_price_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell220" Border.Lines="All" Text="[summary_demand_status_equipment.data.limit_price_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell221" Border.Lines="All" Text="[summary_demand_status_equipment.data.unique_feature1]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell222" Border.Lines="All" Text="[summary_demand_status_equipment.data.unique_feature2]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell223" Border.Lines="All" Text="[summary_demand_status_equipment.data.unique_feature3]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell224" Border.Lines="All" Text="[summary_demand_status_equipment.data.budget_location_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell225" Border.Lines="All" Text="[summary_demand_status_equipment.data.faculty_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 1" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 2" Fill.Color="180, 198, 231" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 6" Fill.Color="255, 230, 153" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_demand_status_equipment.data.topic_type]== 7" Fill.Color="248, 203, 173" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<ReportSummaryBand Name="ReportSummary1" Top="272.29" Width="3628.8" Height="94.5">
|
||||
<TextObject Name="Text196" Top="9.45" Width="1880.55" Height="28.35" Text="หมายเหตุ" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
|
||||
<TextObject Name="Text197" Left="9.45" Top="37.8" Width="1880.55" Height="28.35" Text="- สามารถเพิ่มประเภทรายการครุภัณฑ์ได้ตามความจำเป็นและเหมาะสม " VertAlign="Center" Font="TH Sarabun New, 15pt"/>
|
||||
<TextObject Name="Text198" Left="9.45" Top="66.15" Width="1880.55" Height="28.35" Text="- กรณีเป็นระบบคอมพิวเตอร์ให้ระบุหมายเหตุว่าอยู่ในขั้นตอนใด" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
|
||||
</ReportSummaryBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
358
wwwroot/reports/summary_overview_building.frx
Normal file
358
wwwroot/reports/summary_overview_building.frx
Normal file
@@ -0,0 +1,358 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/16/2023 17:57:08" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="summary_overview_building" ReferenceName="summary_overview_building" DataType="null" Enabled="true">
|
||||
<Column Name="budget_year" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
|
||||
<Column Name="topic_type" DataType="System.Int32"/>
|
||||
<Column Name="row_order" DataType="System.String"/>
|
||||
<Column Name="row_no" DataType="System.String"/>
|
||||
<Column Name="topic" DataType="System.String"/>
|
||||
<Column Name="province" DataType="System.String"/>
|
||||
<Column Name="quantity" DataType="System.Decimal"/>
|
||||
<Column Name="unit" DataType="System.String"/>
|
||||
<Column Name="unit_price" DataType="System.Decimal"/>
|
||||
<Column Name="request_amount" DataType="System.Decimal"/>
|
||||
<Column Name="offer_amount" DataType="System.Decimal"/>
|
||||
<Column Name="remark" DataType="System.String"/>
|
||||
<Column Name="assembly_details" DataType="System.String"/>
|
||||
<Column Name="usable_area" DataType="System.Decimal"/>
|
||||
<Column Name="construction_period" DataType="System.Decimal"/>
|
||||
<Column Name="quantity_period_work" DataType="System.Decimal"/>
|
||||
<Column Name="education_type" DataType="System.String"/>
|
||||
<Column Name="budget_location_name_th" DataType="System.String"/>
|
||||
<Column Name="faculty_name_th" DataType="System.String"/>
|
||||
<Column Name="readiness_action1" DataType="System.String"/>
|
||||
<Column Name="readiness_action2" DataType="System.String"/>
|
||||
<Column Name="readiness_action3" DataType="System.String"/>
|
||||
<Column Name="readiness_action4" DataType="System.String"/>
|
||||
<Column Name="appearance_equipment1" DataType="System.String"/>
|
||||
<Column Name="appearance_equipment2" DataType="System.String"/>
|
||||
<Column Name="appearance_equipment3" DataType="System.String"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="870" PaperHeight="250" Watermark.Font="Arial, 60pt">
|
||||
<PageHeaderBand Name="PageHeader5" Width="3213" Height="236.25">
|
||||
<TableObject Name="Table10" Top="122.85" Width="3184.65" Height="113.4">
|
||||
<TableColumn Name="Column83" Width="56.7"/>
|
||||
<TableColumn Name="Column84" Width="3127.95"/>
|
||||
<TableRow Name="Row10" Height="113.4">
|
||||
<TableCell Name="Cell76" Border.Lines="All" Text="ลำดับ ความ สำคัญ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TableCell Name="Cell77" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold">
|
||||
<TextObject Name="Text143" Left="340.2" Width="94.5" Height="113.4" Border.Lines="Left, Bottom" Text="จังหวัด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text145" Left="434.7" Width="94.5" Height="113.4" Border.Lines="Left, Right, Bottom" Text="จำนวน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text176" Width="56.7" Height="113.4" Border.Lines="All" Text="ลำดับที่" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text144" Left="529.2" Width="94.5" Height="113.4" Border.Lines="Left, Right, Bottom" Text="หน่วยนับ (งาน/หลัง)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text201" Left="56.7" Width="283.5" Height="113.4" Border.Lines="All" Text="ผลผลิต/ประเภทรายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text203" Left="623.7" Width="94.5" Height="113.4" Border.Lines="Left, Right, Bottom" Text="ราคาต่อหน่วย (ล้านบาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text210" Left="907.2" Width="623.7" Height="37.8" Border.Lines="All" Text="วัตถุประสงค์ของรายการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text211" Left="907.2" Top="37.8" Width="311.85" Height="75.6" Border.Lines="Left, Bottom" Text="เหตุผลความจำเป็น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text218" Left="1871.1" Width="378" Height="37.8" Border.Lines="Left, Right, Bottom" Text="ความพร้อมดำเนินการ (เอกสาร)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text222" Left="1871.1" Top="37.8" Width="94.5" Height="75.6" Border.Lines="Left, Bottom" Text="แบบรูปรายการ " HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text223" Left="1965.6" Top="37.8" Width="94.5" Height="75.6" Border.Lines="Left, Right, Bottom" Text="ราคาประมาณการ (BOQ)" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text224" Left="2060.1" Top="37.8" Width="94.5" Height="75.6" Border.Lines="Left, Right, Bottom" Text="ประเมินโครงสร้าง ของวิศวกร" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text247" Left="718.2" Width="94.5" Height="113.4" Border.Lines="Left, Right, Bottom" Text="คำขอ (ล้านบาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text248" Left="812.7" Width="94.5" Height="113.4" Border.Lines="Left, Right, Bottom" Text="เสนอตั้ง (ล้านบาท)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text249" Left="1219.05" Top="37.8" Width="311.85" Height="75.6" Border.Lines="Left, Right, Bottom" Text="ลักษณะอาคาร/รายละเอียดประกอบ (จำนวนชั้น จำนวนห้อง ผู้ใช้ประโยชน์ จำนวนคน จำนวนคณะ)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text250" Left="1530.9" Top="37.8" Width="113.4" Height="75.6" Border.Lines="All" Text="จำนวน พื้นที่ใช้สอย (ตร.ม.)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text251" Left="1644.3" Top="37.8" Width="113.4" Height="75.6" Border.Lines="All" Text="ระยะเวลาในการ ก่อสร้าง (วัน)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text252" Left="1757.7" Top="37.8" Width="113.4" Height="75.6" Border.Lines="All" Text="จำนวน งวดงาน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text253" Left="2154.6" Top="37.8" Width="94.5" Height="75.6" Border.Lines="Left, Right, Bottom" Text="ประเมินความเสี่ยง การทุจริต" HorzAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text254" Left="1908.9" Top="85.05" Width="37.8" Height="28.35" Text="P" VertAlign="Center" Font="Wingdings 2, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text255" Left="1890" Top="85.05" Width="18.9" Height="28.35" Text="(" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text256" Left="1927.8" Top="85.05" Width="18.9" Height="28.35" Text=")" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text266" Left="2249.1" Width="340.2" Height="37.8" Border.Lines="Left, Right, Bottom" Text="ลักษณครุภัณฑ์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text267" Left="2249.1" Top="37.8" Width="113.4" Height="75.6" Border.Lines="Left, Right, Bottom" Text="ทดแทน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text268" Left="2362.5" Top="37.8" Width="113.4" Height="75.6" Border.Lines="Left, Right, Bottom" Text="เพิ่มประสิทธิภาพ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text269" Left="2475.9" Top="37.8" Width="113.4" Height="75.6" Border.Lines="Left, Right, Bottom" Text="ประจำอาคาร" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text270" Left="2589.3" Width="179.55" Height="113.4" Border.Lines="Left, Right, Bottom" Text="ประเภท (การศึกษา / สำนักงาน)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text272" Left="2768.85" Width="179.55" Height="113.4" Border.Lines="Left, Right, Bottom" Text="คณะ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text271" Left="2948.4" Width="179.55" Height="113.4" Border.Lines="Left, Right, Bottom" Text="วิทยาเขต" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text273" Left="2003.4" Top="85.05" Width="37.8" Height="28.35" Text="P" VertAlign="Center" Font="Wingdings 2, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text274" Left="1984.5" Top="85.05" Width="18.9" Height="28.35" Text="(" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text275" Left="2022.3" Top="85.05" Width="18.9" Height="28.35" Text=")" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text276" Left="2097.9" Top="85.05" Width="37.8" Height="28.35" Text="P" VertAlign="Center" Font="Wingdings 2, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text277" Left="2079" Top="85.05" Width="18.9" Height="28.35" Text="(" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text278" Left="2116.8" Top="85.05" Width="18.9" Height="28.35" Text=")" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text279" Left="2192.4" Top="85.05" Width="37.8" Height="28.35" Text="P" VertAlign="Center" Font="Wingdings 2, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text280" Left="2173.5" Top="85.05" Width="18.9" Height="28.35" Text="(" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text281" Left="2211.3" Top="85.05" Width="18.9" Height="28.35" Text=")" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text174" Width="3184.65" Height="28.35" Text="สรุปภาพรวมการเสนอแผนการปรับปรุงอาคารสถานที่/แผนการจัดหาที่ดินและสิ่งก่อสร้าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text199" Top="28.35" Width="3184.65" Height="28.35" Text="ประจำปีงบประมาณ พ.ศ. [summary_overview_building.budget_year]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text200" Top="56.7" Width="3184.65" Height="28.35" Text="กระทรวงการอุดมศึกษา วิทยาศาสตร์ วิจัยและนวัตกรรม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text246" Top="85.05" Width="3184.65" Height="28.35" Text="หน่วยงาน มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data9" Top="241.96" Width="3213">
|
||||
<DataBand Name="Data10" Top="247.68" Width="3213" Height="47.25" DataSource="data">
|
||||
<TableObject Name="Table11" Width="3184.65" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column170" Width="56.7"/>
|
||||
<TableColumn Name="Column171" Width="56.7"/>
|
||||
<TableColumn Name="Column172" Width="283.5"/>
|
||||
<TableColumn Name="Column173" Width="94.5"/>
|
||||
<TableColumn Name="Column174" Width="94.5"/>
|
||||
<TableColumn Name="Column175" Width="94.5"/>
|
||||
<TableColumn Name="Column176" Width="94.5"/>
|
||||
<TableColumn Name="Column177" Width="94.5"/>
|
||||
<TableColumn Name="Column184" Width="94.5"/>
|
||||
<TableColumn Name="Column185" Width="311.85"/>
|
||||
<TableColumn Name="Column186" Width="311.85"/>
|
||||
<TableColumn Name="Column187" Width="113.4"/>
|
||||
<TableColumn Name="Column188" Width="113.4"/>
|
||||
<TableColumn Name="Column206" Width="113.4"/>
|
||||
<TableColumn Name="Column207" Width="94.5"/>
|
||||
<TableColumn Name="Column208" Width="94.5"/>
|
||||
<TableColumn Name="Column209" Width="94.5"/>
|
||||
<TableColumn Name="Column210" Width="94.5"/>
|
||||
<TableColumn Name="Column211" Width="113.4"/>
|
||||
<TableColumn Name="Column212" Width="113.4"/>
|
||||
<TableColumn Name="Column213" Width="113.4"/>
|
||||
<TableColumn Name="Column214" Width="179.55"/>
|
||||
<TableColumn Name="Column215" Width="179.55"/>
|
||||
<TableColumn Name="Column216" Width="179.55"/>
|
||||
<TableRow Name="Row11" Height="47.25">
|
||||
<TableCell Name="Cell89" Border.Lines="All" Text="[summary_overview_building.data.row_order]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell90" Border.Lines="All" Text="[summary_overview_building.data.row_no]" AutoShrink="FontSize" AutoShrinkMinSize="10.5" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell91" Border.Lines="All" Text="[summary_overview_building.data.topic]" AutoShrink="FontSize" AutoShrinkMinSize="9" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell92" Border.Lines="All" Text="[summary_overview_building.data.province]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell93" Border.Lines="All" Text="[summary_overview_building.data.quantity]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell94" Border.Lines="All" Text="[summary_overview_building.data.unit]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell95" Border.Lines="All" Text="[summary_overview_building.data.unit_price]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell96" Border.Lines="All" Text="[summary_overview_building.data.request_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell103" Border.Lines="All" Text="[summary_overview_building.data.offer_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell104" Border.Lines="All" Text="[summary_overview_building.data.remark]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell105" Border.Lines="All" Text="[summary_overview_building.data.assembly_details]" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Formats>
|
||||
<NumberFormat DecimalDigits="0"/>
|
||||
<GeneralFormat/>
|
||||
<GeneralFormat/>
|
||||
</Formats>
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell106" Border.Lines="All" Text="[summary_overview_building.data.usable_area]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell107" Border.Lines="All" Text="[summary_overview_building.data.construction_period]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell206" Border.Lines="All" Text="[summary_overview_building.data.quantity_period_work]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell207" Border.Lines="All" Text="[summary_overview_building.data.readiness_action1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell208" Border.Lines="All" Text="[summary_overview_building.data.readiness_action2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell209" Border.Lines="All" Text="[summary_overview_building.data.readiness_action3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell210" Border.Lines="All" Text="[summary_overview_building.data.readiness_action4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell211" Border.Lines="All" Text="[summary_overview_building.data.appearance_equipment1]" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell212" Border.Lines="All" Text="[summary_overview_building.data.appearance_equipment2]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell213" Border.Lines="All" Text="[summary_overview_building.data.appearance_equipment3]" HorzAlign="Center" VertAlign="Center" Font="Wingdings 2, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell214" Border.Lines="All" Text="[summary_overview_building.data.education_type]" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell215" Border.Lines="All" Text="[summary_overview_building.data.budget_location_name_th]" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell216" Border.Lines="All" Text="[summary_overview_building.data.faculty_name_th]" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 1" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 2" Fill.Color="221, 235, 247" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 3" Fill.Color="198, 224, 180" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 4" Fill.Color="208, 206, 206" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_overview_building.data.topic_type]== 5" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
Reference in New Issue
Block a user