add ro 6
This commit is contained in:
@@ -2588,14 +2588,17 @@ namespace rmutr_report.Controllers
|
||||
{
|
||||
notation.row_no = "หมายเหตุ : " + "1";
|
||||
}
|
||||
|
||||
if (notation.amount != null)
|
||||
{
|
||||
notation.amounts = bath;
|
||||
notation.amounts = bath;
|
||||
}
|
||||
|
||||
if (notation.amount == null)
|
||||
{
|
||||
notation.amounts = null;
|
||||
notation.amounts = null;
|
||||
}
|
||||
|
||||
foreach (var notation2 in notation.notations_detail)
|
||||
{
|
||||
if (notation2.list != null && notation2.amount != null)
|
||||
@@ -2663,7 +2666,7 @@ namespace rmutr_report.Controllers
|
||||
{
|
||||
int row = 1;
|
||||
foreach (var dataDetail in detail.detail)
|
||||
{
|
||||
{
|
||||
if (dataDetail.topic_type == 5)
|
||||
{
|
||||
dataDetail.row_no = row.ToString();
|
||||
@@ -2707,6 +2710,7 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[HttpPost, Route("reports/total_budget/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetBudgetTotalReport([FromRoute] string type,
|
||||
@@ -2715,23 +2719,23 @@ namespace rmutr_report.Controllers
|
||||
int row = 1;
|
||||
foreach (var detail2 in budget.data)
|
||||
{
|
||||
var a = "- ";
|
||||
if (detail2.topic_type == 2)
|
||||
{
|
||||
detail2.list = a + detail2.list;
|
||||
}
|
||||
var a = "- ";
|
||||
if (detail2.topic_type == 2)
|
||||
{
|
||||
detail2.list = a + detail2.list;
|
||||
}
|
||||
|
||||
if (detail2.topic_type == 5)
|
||||
{
|
||||
detail2.row_no = row.ToString();
|
||||
row++;
|
||||
}
|
||||
else
|
||||
{
|
||||
detail2.row_no = null;
|
||||
}
|
||||
|
||||
if (detail2.topic_type == 5)
|
||||
{
|
||||
detail2.row_no = row.ToString();
|
||||
row++;
|
||||
}
|
||||
else
|
||||
{
|
||||
detail2.row_no = null;
|
||||
}
|
||||
}
|
||||
|
||||
var summaryBudget = new List<total_budget>() { budget };
|
||||
|
||||
Report report = new Report();
|
||||
@@ -2763,5 +2767,54 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[HttpPost, Route("reports/summary_subsidy_projects/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetBudgetSubsidySummaryReport([FromRoute] string type,
|
||||
[FromBody] summary_subsidy_projects budget)
|
||||
{
|
||||
int row = 1;
|
||||
foreach (var detail in budget.data)
|
||||
{
|
||||
if (detail.topic_type == 3)
|
||||
{
|
||||
detail.row_no = row;
|
||||
row++;
|
||||
}
|
||||
else
|
||||
{
|
||||
detail.row_no = null;
|
||||
}
|
||||
}
|
||||
|
||||
var summaryBudget = new List<summary_subsidy_projects>() { budget };
|
||||
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "summary_subsidy_projects.frx");
|
||||
report.RegisterData(summaryBudget, "summary_subsidy_projects");
|
||||
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",
|
||||
"project_summary_subsidy" + ".xlsx");
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
}
|
||||
}
|
||||
38
Models/budget/summary_subsidy_projects.cs
Normal file
38
Models/budget/summary_subsidy_projects.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class summary_subsidy_projects
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string date_range { get; set; }
|
||||
public string budget_project_name_th { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
public string education_level_and_year { get; set; }
|
||||
public string branch_name_th { get; set; }
|
||||
public List<summary_subsidy_projects_data> data { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class summary_subsidy_projects_data
|
||||
{
|
||||
public int? topic_type { get; set; }
|
||||
public int? row_no { get; set; }
|
||||
public string project_name_th { get; set; }
|
||||
public decimal? project_amount { get; set; }
|
||||
public decimal? participants_amount { get; set; }
|
||||
public decimal? organize_amount { get; set; }
|
||||
public decimal? participants_eachtime_amount { get; set; }
|
||||
public decimal? increased_cognition_amount { get; set; }
|
||||
public decimal? customer_satisfaction { get; set; }
|
||||
public decimal? project_achieve_objectives { get; set; }
|
||||
public decimal? project_complete { get; set; }
|
||||
public string start_date { get; set; }
|
||||
public string end_date { get; set; }
|
||||
public decimal? compensation { get; set; }
|
||||
public decimal? cost { get; set; }
|
||||
public decimal? material_cost { get; set; }
|
||||
public decimal? total_budget { get; set; }
|
||||
public string responsible_person { get; set; }
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,29 +1,27 @@
|
||||
image: atlassian/default-image:2
|
||||
pipelines:
|
||||
default:
|
||||
- step:
|
||||
runs-on:
|
||||
- self.hosted
|
||||
- linux
|
||||
size: 2x
|
||||
services:
|
||||
- docker
|
||||
caches:
|
||||
- dotnetcore
|
||||
script:
|
||||
- docker login --username $DOCKER_USERNAME --password $DOCKER_PASSWORD
|
||||
- docker build -f Dockerfile.dev -t registry.71dev.com/rmutr_report:latest .
|
||||
- docker push registry.71dev.com/rmutr_report:latest
|
||||
- step:
|
||||
runs-on:
|
||||
- self.hosted
|
||||
- linux
|
||||
name: Deploy
|
||||
image: atlassian/pipelines-kubectl
|
||||
script:
|
||||
- echo $KUBE_CONFIG | base64 -d > kubeconfig
|
||||
- kubectl --insecure-skip-tls-verify --kubeconfig=kubeconfig rollout restart deployment/rmutr-report -n rmutr
|
||||
branches:
|
||||
master:
|
||||
- step:
|
||||
runs-on:
|
||||
- self.hosted
|
||||
- linux
|
||||
- 8x
|
||||
size: 8x
|
||||
services:
|
||||
- docker
|
||||
caches:
|
||||
- docker
|
||||
script: # Modify the commands below to build your repository.
|
||||
- docker login --username $DOCKER_USERNAME --password $DOCKER_PASSWORD
|
||||
- docker build -f Dockerfile.dev -t registry.71dev.com/rmutr_report:latest .
|
||||
- docker push registry.71dev.com/rmutr_report:latest
|
||||
- step:
|
||||
name: Deploy to kubernates
|
||||
image: atlassian/pipelines-kubectl
|
||||
script:
|
||||
- echo $KUBE_CONFIG_DELL | base64 -d > kubeconfig
|
||||
- kubectl --insecure-skip-tls-verify --kubeconfig=kubeconfig rollout restart deployment/rmutr-report -n rmutr
|
||||
definitions:
|
||||
services:
|
||||
docker:
|
||||
memory: 7128
|
||||
memory: 14336
|
||||
Binary file not shown.
Binary file not shown.
251
wwwroot/reports/summary_subsidy_projects.frx
Normal file
251
wwwroot/reports/summary_subsidy_projects.frx
Normal file
@@ -0,0 +1,251 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="08/03/2023 14:41:28" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Windows.Forms;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using FastReport;
|
||||
using FastReport.Data;
|
||||
using FastReport.Dialog;
|
||||
using FastReport.Barcode;
|
||||
using FastReport.Table;
|
||||
using FastReport.Utils;
|
||||
|
||||
namespace FastReport
|
||||
{
|
||||
public class ReportScript
|
||||
{
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="summary_subsidy_projects" ReferenceName="summary_subsidy_projects" DataType="null" Enabled="true">
|
||||
<Column Name="budget_year" DataType="System.String"/>
|
||||
<Column Name="date_range" DataType="System.String"/>
|
||||
<Column Name="budget_project_name_th" DataType="System.String"/>
|
||||
<Column Name="agency_name_th" DataType="System.String"/>
|
||||
<Column Name="education_level_and_year" DataType="System.String"/>
|
||||
<Column Name="branch_name_th" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
|
||||
<Column Name="topic_type" DataType="System.Int32"/>
|
||||
<Column Name="row_no" DataType="System.Int32"/>
|
||||
<Column Name="project_name_th" DataType="System.String"/>
|
||||
<Column Name="project_amount" DataType="System.Decimal"/>
|
||||
<Column Name="participants_amount" DataType="System.Decimal"/>
|
||||
<Column Name="organize_amount" DataType="System.Decimal"/>
|
||||
<Column Name="participants_eachtime_amount" DataType="System.Decimal"/>
|
||||
<Column Name="increased_cognition_amount" DataType="System.Decimal"/>
|
||||
<Column Name="customer_satisfaction" DataType="System.Decimal"/>
|
||||
<Column Name="project_achieve_objectives" DataType="System.Decimal"/>
|
||||
<Column Name="project_complete" DataType="System.Decimal"/>
|
||||
<Column Name="start_date" DataType="System.String"/>
|
||||
<Column Name="end_date" DataType="System.String"/>
|
||||
<Column Name="compensation" DataType="System.Decimal"/>
|
||||
<Column Name="cost" DataType="System.Decimal"/>
|
||||
<Column Name="material_cost" DataType="System.Decimal"/>
|
||||
<Column Name="total_budget" DataType="System.Decimal"/>
|
||||
<Column Name="responsible_person" DataType="System.String"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="500" PaperHeight="210" Watermark.Font="Arial, 60pt">
|
||||
<PageHeaderBand Name="PageHeader5" Width="1814.4" Height="292.95">
|
||||
<TableObject Name="Table10" Top="151.2" Width="1814.4" Height="141.75">
|
||||
<TableColumn Name="Column83" Width="47.25"/>
|
||||
<TableColumn Name="Column84" Width="425.25"/>
|
||||
<TableColumn Name="Column85" Width="1341.9"/>
|
||||
<TableRow Name="Row10" Height="141.75">
|
||||
<TableCell Name="Cell76" Border.Lines="All" Fill.Color="252, 228, 214" Text="ลำดับ ที่" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TableCell Name="Cell77" Border.Lines="All" Fill.Color="252, 228, 214" Text="ผลผลิต / ชื่อโครงการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TableCell Name="Cell78" Border.Lines="All" Fill.Color="252, 228, 214" HorzAlign="Center" Font="TH Sarabun New, 15pt, style=Bold">
|
||||
<TextObject Name="Text145" Left="170.1" Top="37.8" Width="85.05" Height="75.6" Border.Lines="Left, Right, Bottom" Fill.Color="252, 228, 214" Text="จำนวนครั้งที่ จัดโครงการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text143" Top="37.8" Width="85.05" Height="75.6" Border.Lines="Left, Bottom" Fill.Color="252, 228, 214" Text="จำนวนโครงการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text144" Left="85.05" Top="37.8" Width="85.05" Height="75.6" Border.Lines="Left, Right, Bottom" Fill.Color="252, 228, 214" Text="จำนวนผู้เข้าร่วม โครงการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text135" Width="340.2" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="ตัวชี้วัดเชิงปริมาณ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text164" Left="340.2" Width="255.15" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="ตัวชี้วัดเชิงคุณภาพ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text168" Left="595.35" Width="255.15" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="ตัวชี้วัดเชิงเวลา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text169" Left="255.15" Top="37.8" Width="85.05" Height="75.6" Border.Lines="All" Fill.Color="252, 228, 214" Text="จำนวนผู้เข้าร่วม โครงการ ในแต่ละครั้ง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text170" Left="510.3" Top="37.8" Width="85.05" Height="75.6" Border.Lines="All" Fill.Color="252, 228, 214" Text="โครงการที่บรรลุ ผลตาม วัตถุประสงค์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text171" Left="340.2" Top="37.8" Width="85.05" Height="75.6" Border.Lines="Left, Top, Bottom" Fill.Color="252, 228, 214" Text="ผู้เข้าร่วมโครงการ มีความรู้ ความเข้าใจเพิ่มขึ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10.5pt, style=Bold"/>
|
||||
<TextObject Name="Text172" Left="425.25" Top="37.8" Width="85.05" Height="75.6" Border.Lines="All" Fill.Color="252, 228, 214" Text="ความพึงพอใจ ของผู้เข้ารับบริการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text173" Left="595.35" Top="37.8" Width="85.05" Height="75.6" Border.Lines="All" Fill.Color="252, 228, 214" Text="โครงการ แล้วเสร็จ ตามเวลาที่กำหนด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text174" Left="680.4" Top="37.8" Width="170.1" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="กำหนดวันดำเนินโครงการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text175" Left="680.4" Top="75.6" Width="85.05" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="วันเริ่มต้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text176" Left="765.45" Top="75.6" Width="85.05" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="วันแล้วเสร็จ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text177" Left="850.5" Width="340.2" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="ตัวชี้วัดเชิงค่าใช้จ่าย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text178" Left="850.5" Top="37.8" Width="255.15" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="งบประมาณที่เสนอขอ ปี [summary_subsidy_projects.budget_year]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text179" Left="1105.65" Top="37.8" Width="85.05" Height="75.6" Border.Lines="All" Fill.Color="252, 228, 214" Text="รวมงบประมาณปี [summary_subsidy_projects.budget_year]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text180" Left="850.5" Top="75.6" Width="85.05" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="ค่าตอบแทน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text181" Left="935.55" Top="75.6" Width="85.05" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="ค่าใช้สอย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text182" Left="1020.6" Top="75.6" Width="85.05" Height="37.8" Border.Lines="All" Fill.Color="252, 228, 214" Text="ค่าวัสดุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||
<TextObject Name="Text183" Left="1190.7" Width="151.2" Height="113.4" Border.Lines="All" Fill.Color="252, 228, 214" Text="ผู้รับผิดชอบโครงการ /เบอร์ติดต่อ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
|
||||
<TextObject Name="Text189" Top="113.4" Width="85.05" Height="28.35" Border.Lines="All" Fill.Color="252, 228, 214" Text="( โครงการ )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text190" Left="170.1" Top="113.4" Width="85.05" Height="28.35" Border.Lines="All" Fill.Color="252, 228, 214" Text="( ครั้ง )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text191" Left="255.15" Top="113.4" Width="85.05" Height="28.35" Border.Lines="All" Fill.Color="252, 228, 214" Text="( คน )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text192" Left="340.2" Top="113.4" Width="340.2" Height="28.35" Border.Lines="All" Fill.Color="252, 228, 214" Text="( ร้อยละ )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text193" Left="680.4" Top="113.4" Width="170.1" Height="28.35" Border.Lines="All" Fill.Color="252, 228, 214" Text="วัน/เดือน/ปี" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text194" Left="850.5" Top="113.4" Width="340.2" Height="28.35" Border.Lines="All" Fill.Color="252, 228, 214" Text="( บาท )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
<TextObject Name="Text195" Left="85.05" Top="113.4" Width="85.05" Height="28.35" Border.Lines="All" Fill.Color="252, 228, 214" Text="( คน )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text132" Width="1814.4" Height="28.35" Text="งบประมาณรายจ่ายจากเงินรายได้ ประจำปีงบประมาณ พ.ศ. [summary_subsidy_projects.budget_year]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text133" Top="28.35" Width="1814.4" Height="28.35" Text="( [summary_subsidy_projects.date_range] )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text184" Top="56.7" Width="1814.4" Height="28.35" Text="งบเงินอุดหนุน : [summary_subsidy_projects.budget_project_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text185" Left="529.2" Top="85.05" Width="444.15" Height="28.35" Text="หน่วยงาน : [summary_subsidy_projects.agency_name_th]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text186" Left="973.35" Top="85.05" Width="510.3" Height="28.35" Text="ภาค : [summary_subsidy_projects.education_level_and_year]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text187" Left="529.2" Top="113.4" Width="444.15" Height="28.35" Text="[summary_subsidy_projects.budget_project_name_th]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text188" Left="973.35" Top="113.4" Width="510.3" Height="28.35" Text="พื้นที่ : [summary_subsidy_projects.branch_name_th]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data9" Top="299.73" Width="1814.4">
|
||||
<DataBand Name="Data10" Top="306.51" Width="1814.4" Height="37.8" BeforeLayoutEvent="Data10_BeforeLayout" DataSource="data">
|
||||
<TableObject Name="Table11" Width="1814.4" Height="37.8">
|
||||
<TableColumn Name="Column170" Width="47.25"/>
|
||||
<TableColumn Name="Column171" Width="425.25"/>
|
||||
<TableColumn Name="Column172" Width="85.05"/>
|
||||
<TableColumn Name="Column173" Width="85.05"/>
|
||||
<TableColumn Name="Column174" Width="85.05"/>
|
||||
<TableColumn Name="Column175" Width="85.05"/>
|
||||
<TableColumn Name="Column176" Width="85.05"/>
|
||||
<TableColumn Name="Column177" Width="85.05"/>
|
||||
<TableColumn Name="Column184" Width="85.05"/>
|
||||
<TableColumn Name="Column185" Width="85.05"/>
|
||||
<TableColumn Name="Column186" Width="85.05"/>
|
||||
<TableColumn Name="Column187" Width="85.05"/>
|
||||
<TableColumn Name="Column188" Width="85.05"/>
|
||||
<TableColumn Name="Column206" Width="85.05"/>
|
||||
<TableColumn Name="Column207" Width="85.05"/>
|
||||
<TableColumn Name="Column208" Width="85.05"/>
|
||||
<TableColumn Name="Column209" Width="151.2"/>
|
||||
<TableRow Name="Row11" Height="37.8">
|
||||
<TableCell Name="Cell89" Border.Lines="All" Text="[summary_subsidy_projects.data.row_no]" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell90" Border.Lines="All" Text="[summary_subsidy_projects.data.project_name_th]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell91" Border.Lines="All" Text="[summary_subsidy_projects.data.project_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell92" Border.Lines="All" Text="[summary_subsidy_projects.data.participants_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell93" Border.Lines="All" Text="[summary_subsidy_projects.data.organize_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell94" Border.Lines="All" Text="[summary_subsidy_projects.data.participants_eachtime_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell95" Border.Lines="All" Text="[summary_subsidy_projects.data.increased_cognition_amount]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell96" Border.Lines="All" Text="[summary_subsidy_projects.data.customer_satisfaction]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell103" Border.Lines="All" Text="[summary_subsidy_projects.data.project_achieve_objectives]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell104" Border.Lines="All" Text="[summary_subsidy_projects.data.project_complete]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell105" Border.Lines="All" Text="[summary_subsidy_projects.data.start_date]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell106" Border.Lines="All" Text="[summary_subsidy_projects.data.end_date]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell107" Border.Lines="All" Text="[summary_subsidy_projects.data.compensation]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell206" Border.Lines="All" Text="[summary_subsidy_projects.data.cost]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell207" Border.Lines="All" Text="[summary_subsidy_projects.data.material_cost]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell208" Border.Lines="All" Text="[summary_subsidy_projects.data.total_budget]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell209" Border.Lines="All" Text="[summary_subsidy_projects.data.responsible_person]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 1" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[summary_subsidy_projects.data.topic_type] == 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
Reference in New Issue
Block a user