bug fixed
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-09-28 16:53:25 +07:00
parent 86e6717cf9
commit cbddecb9d5
11 changed files with 314 additions and 43 deletions

View File

@@ -2013,6 +2013,9 @@ namespace rmutr_report.Controllers
ws.Column(1).Width = 30; ws.Column(1).Width = 30;
ws.Column(2).Width = 15;
ws.Column(3).Width = 15;
ws.Column(4).Width = 15;
ws.Column(5).Width = 15; ws.Column(5).Width = 15;
ws.Column(6).Width = 15; ws.Column(6).Width = 15;
ws.Column(7).Width = 15; ws.Column(7).Width = 15;
@@ -2032,7 +2035,6 @@ namespace rmutr_report.Controllers
ws.Row(6).Height = 30; ws.Row(6).Height = 30;
int row = 7; int row = 7;
//int no = 1;
if (revenue_estimate != null) if (revenue_estimate != null)
{ {
ws.Range("A5:A6").Merge().Value = "ผลผลิต / ภาคการศึกษา / ภาคเรียน"; ws.Range("A5:A6").Merge().Value = "ผลผลิต / ภาคการศึกษา / ภาคเรียน";
@@ -2110,37 +2112,37 @@ namespace rmutr_report.Controllers
int r1 = 1; int r1 = 1;
int r2 = 2; int r2 = 2;
// var sum1 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.revenue_estimates); var sum1 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.revenue_estimates);
// var sum2 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.less_revenue_estimates); var sum2 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.less_revenue_estimates);
// var sum3 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.balance_revenue_estimates); var sum3 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.balance_revenue_estimates);
// var sum4 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.less_accumulated_income); var sum4 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.less_accumulated_income);
// var sum5 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.balance_before_allocating_according); var sum5 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.balance_before_allocating_according);
// var sum6 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.contribution_utility_bills); var sum6 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.contribution_utility_bills);
// var sum7 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.contribution_central_budget); var sum7 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.contribution_central_budget);
// var sum8 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.contribution_central_expenditure); var sum8 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.contribution_central_expenditure);
// var sum9 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.expenditure_limit); var sum9 = revenue_estimate.revenue_estimates_details.Where(j=>j.topic_type==3).Sum(d => d.expenditure_limit);
foreach (var detail in revenue_estimate.revenue_estimates_details) foreach (var detail in revenue_estimate.revenue_estimates_details)
{ {
if (detail.topic_type == 1) if (detail.topic_type == 1)
{ {
ws.Cell(row, 1).Value = detail.topic; ws.Cell(row, 1).Value = detail.topic;
ws.Cell(row, 2).Value = detail.revenue_estimates; ws.Cell(row, 2).Value = sum1;//detail.revenue_estimates;
ws.Cell(row, 3).Value = "บาท"; ws.Cell(row, 3).Value = "บาท";
ws.Cell(row, 4).Value = detail.less_revenue_estimates; ws.Cell(row, 4).Value = sum2;//detail.less_revenue_estimates;
ws.Cell(row, 5).Value = "บาท"; ws.Cell(row, 5).Value = "บาท";
ws.Cell(row, 6).Value = detail.balance_revenue_estimates; ws.Cell(row, 6).Value = sum3;//detail.balance_revenue_estimates;
ws.Cell(row, 7).Value = "บาท"; ws.Cell(row, 7).Value = "บาท";
ws.Cell(row, 8).Value = detail.less_accumulated_income; ws.Cell(row, 8).Value = sum4;//detail.less_accumulated_income;
ws.Cell(row, 9).Value = "บาท"; ws.Cell(row, 9).Value = "บาท";
ws.Cell(row, 10).Value = detail.balance_before_allocating_according; ws.Cell(row, 10).Value = sum5;//detail.balance_before_allocating_according;
ws.Cell(row, 11).Value = "บาท"; ws.Cell(row, 11).Value = "บาท";
ws.Cell(row, 12).Value = detail.contribution_utility_bills; ws.Cell(row, 12).Value = sum6;//detail.contribution_utility_bills;
ws.Cell(row, 13).Value = "บาท"; ws.Cell(row, 13).Value = "บาท";
ws.Cell(row, 14).Value = detail.contribution_central_budget; ws.Cell(row, 14).Value = sum7;//detail.contribution_central_budget;
ws.Cell(row, 15).Value = "บาท"; ws.Cell(row, 15).Value = "บาท";
ws.Cell(row, 16).Value = detail.contribution_central_expenditure; ws.Cell(row, 16).Value = sum8;//detail.contribution_central_expenditure;
ws.Cell(row, 17).Value = "บาท"; ws.Cell(row, 17).Value = "บาท";
ws.Cell(row, 18).Value = detail.expenditure_limit; ws.Cell(row, 18).Value = sum9;//detail.expenditure_limit;
ws.Cell(row, 19).Value = "บาท"; ws.Cell(row, 19).Value = "บาท";
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName = ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName =
@@ -2193,23 +2195,23 @@ namespace rmutr_report.Controllers
if (detail.topic_type == 2) if (detail.topic_type == 2)
{ {
ws.Cell(row, 1).Value = detail.topic; ws.Cell(row, 1).Value = detail.topic;
ws.Cell(row, 2).Value = detail.revenue_estimates; ws.Cell(row, 2).Value = sum1;//detail.revenue_estimates;
ws.Cell(row, 3).Value = "บาท"; ws.Cell(row, 3).Value = "บาท";
ws.Cell(row, 4).Value = detail.less_revenue_estimates; ws.Cell(row, 4).Value = sum2;//detail.less_revenue_estimates;
ws.Cell(row, 5).Value = "บาท"; ws.Cell(row, 5).Value = "บาท";
ws.Cell(row, 6).Value = detail.balance_revenue_estimates; ws.Cell(row, 6).Value = sum3;//detail.balance_revenue_estimates;
ws.Cell(row, 7).Value = "บาท"; ws.Cell(row, 7).Value = "บาท";
ws.Cell(row, 8).Value = detail.less_accumulated_income; ws.Cell(row, 8).Value = sum4;//detail.less_accumulated_income;
ws.Cell(row, 9).Value = "บาท"; ws.Cell(row, 9).Value = "บาท";
ws.Cell(row, 10).Value = detail.balance_before_allocating_according; ws.Cell(row, 10).Value = sum5;//detail.balance_before_allocating_according;
ws.Cell(row, 11).Value = "บาท"; ws.Cell(row, 11).Value = "บาท";
ws.Cell(row, 12).Value = detail.contribution_utility_bills; ws.Cell(row, 12).Value = sum6;//detail.contribution_utility_bills;
ws.Cell(row, 13).Value = "บาท"; ws.Cell(row, 13).Value = "บาท";
ws.Cell(row, 14).Value = detail.contribution_central_budget; ws.Cell(row, 14).Value = sum7;//detail.contribution_central_budget;
ws.Cell(row, 15).Value = "บาท"; ws.Cell(row, 15).Value = "บาท";
ws.Cell(row, 16).Value = detail.contribution_central_expenditure; ws.Cell(row, 16).Value = sum8;//detail.contribution_central_expenditure;
ws.Cell(row, 17).Value = "บาท"; ws.Cell(row, 17).Value = "บาท";
ws.Cell(row, 18).Value = detail.expenditure_limit; ws.Cell(row, 18).Value = sum9;//detail.expenditure_limit;
ws.Cell(row, 19).Value = "บาท"; ws.Cell(row, 19).Value = "บาท";
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName = ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName =
@@ -2281,7 +2283,7 @@ namespace rmutr_report.Controllers
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName = ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName =
"TH SarabunPSK"; "TH SarabunPSK";
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontSize = 14; //ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontSize = 14;
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.WrapText = true;
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Alignment.Vertical = ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Alignment.Vertical =
XLAlignmentVerticalValues.Center; XLAlignmentVerticalValues.Center;
@@ -2290,7 +2292,6 @@ namespace rmutr_report.Controllers
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left; ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
ws.Range(ws.Cell(row, 2), ws.Cell(row, 19)).Style.Alignment.Horizontal = ws.Range(ws.Cell(row, 2), ws.Cell(row, 19)).Style.Alignment.Horizontal =
XLAlignmentHorizontalValues.Right; XLAlignmentHorizontalValues.Right;
//ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Fill.BackgroundColor = XLColor.FromArgb(252, 228, 214);
ws.Cell(row, 2).Style.NumberFormat.SetFormat("#,#0"); ws.Cell(row, 2).Style.NumberFormat.SetFormat("#,#0");
ws.Cell(row, 4).Style.NumberFormat.SetFormat("#,#0"); ws.Cell(row, 4).Style.NumberFormat.SetFormat("#,#0");
@@ -2320,31 +2321,48 @@ namespace rmutr_report.Controllers
ws.Cell(row, 17).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, 18).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
ws.Cell(row, 19).Style.Border.OutsideBorder = XLBorderStyleValues.Thin; ws.Cell(row, 19).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
ws.Cell(row, 1).Style.Font.FontSize = 14;
ws.Cell(row, 2).Style.Font.FontSize = 14;
ws.Cell(row, 3).Style.Font.FontSize = 14;
ws.Cell(row, 4).Style.Font.FontSize = 14;
ws.Cell(row, 5).Style.Font.FontSize = 14;
ws.Cell(row, 6).Style.Font.FontSize = 14;
ws.Cell(row, 7).Style.Font.FontSize = 14;
ws.Cell(row, 8).Style.Font.FontSize = 14;
ws.Cell(row, 9).Style.Font.FontSize = 14;
ws.Cell(row, 10).Style.Font.FontSize = 14;
ws.Cell(row, 11).Style.Font.FontSize = 14;
ws.Cell(row, 12).Style.Font.FontSize = 14;
ws.Cell(row, 13).Style.Font.FontSize = 14;
ws.Cell(row, 14).Style.Font.FontSize = 14;
ws.Cell(row, 15).Style.Font.FontSize = 14;
ws.Cell(row, 16).Style.Font.FontSize = 14;
ws.Cell(row, 17).Style.Font.FontSize = 14;
ws.Cell(row, 18).Style.Font.FontSize = 14;
ws.Cell(row, 19).Style.Font.FontSize = 14;
row++; row++;
} }
// if (detail.topic_type == 4) if (detail.topic_type == 4)
// {
if (detail.topic_type == 4)
{ {
ws.Cell(row, 1).Value = "รวม"; ws.Cell(row, 1).Value = "รวม";
ws.Cell(row, 2).Value = detail.revenue_estimates; ws.Cell(row, 2).Value = sum1;//detail.revenue_estimates;
ws.Cell(row, 3).Value = "บาท"; ws.Cell(row, 3).Value = "บาท";
ws.Cell(row, 4).Value = detail.less_revenue_estimates; ws.Cell(row, 4).Value = sum2;//detail.less_revenue_estimates;
ws.Cell(row, 5).Value = "บาท"; ws.Cell(row, 5).Value = "บาท";
ws.Cell(row, 6).Value = detail.balance_revenue_estimates; ws.Cell(row, 6).Value = sum3;//detail.balance_revenue_estimates;
ws.Cell(row, 7).Value = "บาท"; ws.Cell(row, 7).Value = "บาท";
ws.Cell(row, 8).Value = detail.less_accumulated_income; ws.Cell(row, 8).Value = sum4;//detail.less_accumulated_income;
ws.Cell(row, 9).Value = "บาท"; ws.Cell(row, 9).Value = "บาท";
ws.Cell(row, 10).Value = detail.balance_before_allocating_according; ws.Cell(row, 10).Value = sum5;//detail.balance_before_allocating_according;
ws.Cell(row, 11).Value = "บาท"; ws.Cell(row, 11).Value = "บาท";
ws.Cell(row, 12).Value = detail.contribution_utility_bills; ws.Cell(row, 12).Value = sum6;//detail.contribution_utility_bills;
ws.Cell(row, 13).Value = "บาท"; ws.Cell(row, 13).Value = "บาท";
ws.Cell(row, 14).Value = detail.contribution_central_budget; ws.Cell(row, 14).Value = sum7;//detail.contribution_central_budget;
ws.Cell(row, 15).Value = "บาท"; ws.Cell(row, 15).Value = "บาท";
ws.Cell(row, 16).Value = detail.contribution_central_expenditure; ws.Cell(row, 16).Value = sum8;//detail.contribution_central_expenditure;
ws.Cell(row, 17).Value = "บาท"; ws.Cell(row, 17).Value = "บาท";
ws.Cell(row, 18).Value = detail.expenditure_limit; ws.Cell(row, 18).Value = sum9;//detail.expenditure_limit;
ws.Cell(row, 19).Value = "บาท"; ws.Cell(row, 19).Value = "บาท";
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName = ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName =

View File

@@ -4392,6 +4392,43 @@ namespace rmutr_report.Controllers
"budget_income_qualification" + ".xlsx"); "budget_income_qualification" + ".xlsx");
} }
return Ok();
}
[SwaggerOperation("รายงานสรุปประมาณการรายรับ หลักสูตรสหกิจศึกษา")]
[HttpPost, Route("reports/summary_income_cooperative/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetCooperativeReport([FromRoute] string type,
[FromBody] summary_income_cooperative cooperative)
{
var cooperatives = new List<summary_income_cooperative>() { cooperative };
Report report = new Report();
report.Load(_setting.report_path + "summary_income_cooperative.frx");
report.RegisterData(cooperatives, "summary_income_cooperative");
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",
"Cooperative" + ".xlsx");
}
return Ok(); return Ok();
} }
} }

View File

@@ -0,0 +1,28 @@
using System.Collections.Generic;
namespace rmutr_report.Models.RoThree
{
public class summary_income_cooperative
{
public string budget_year { get; set; }
public string date_range { get; set; }
public string faculty_college { get; set; }
public string area { get; set; }
public List<summary_income_cooperative_detail> data { get; set; }
public string maker { get; set; }
public string position_maker { get; set; }
public string maker_date { get; set; }
}
public class summary_income_cooperative_detail
{
public int? topic_type { get; set; }
public string topic { get; set; }
public decimal? revenue_estimates { get; set; }
public decimal? deduct_expenses_percent60 { get; set; }
public decimal? deduct_expenses_percent10 { get; set; }
public decimal? balance { get; set; }
public decimal? deduct_tuition_fees { get; set; }
public decimal? balance_university { get; set; }
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
34f6847c55c258dd2ba577a21dc408fdad799519 6f98eaa7cd9622032caa74a0439d02842244e219

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,188 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="09/28/2023 15:57:58" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="summary_income_cooperative" ReferenceName="summary_income_cooperative" DataType="null" Enabled="true">
<Column Name="budget_year" DataType="System.String"/>
<Column Name="date_range" DataType="System.String"/>
<Column Name="faculty_college" DataType="System.String"/>
<Column Name="area" DataType="System.String"/>
<Column Name="maker" DataType="System.String"/>
<Column Name="position_maker" DataType="System.String"/>
<Column Name="maker_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="System.Int32" Enabled="true">
<Column Name="topic_type" DataType="System.Int32"/>
<Column Name="topic" DataType="System.String"/>
<Column Name="revenue_estimates" DataType="System.Decimal"/>
<Column Name="deduct_expenses_percent60" DataType="System.Decimal"/>
<Column Name="deduct_expenses_percent10" DataType="System.Decimal"/>
<Column Name="balance" DataType="System.Decimal"/>
<Column Name="deduct_tuition_fees" DataType="System.Decimal"/>
<Column Name="balance_university" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="400" PaperHeight="500" Watermark.Font="Arial, 60pt">
<PageHeaderBand Name="PageHeader1" Width="1436.4" Height="255.15">
<TextObject Name="Text40" Width="1436.4" Height="37.8" Text="งบประมาณรายจ่ายจากเงินรายได้ ประจำปีงบประมาณ พ.ศ. [summary_income_cooperative.budget_year] ( [summary_income_cooperative.date_range] )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
<TextObject Name="Text41" Top="37.8" Width="1436.4" Height="37.8" Text="สรุปประมาณการรายรับ หลักสูตรสหกิจศึกษา และการจัดสรรตามเกณฑ์รายจ่าย การจัดการศึกษาระดับปริญญาตรี - ปริญญาโท" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
<TableObject Name="Table18" Top="113.4" Width="1436.4" Height="141.75" Border.Lines="All">
<TableColumn Name="Column145" Width="321.3"/>
<TableColumn Name="Column146" Width="236.25"/>
<TableColumn Name="Column147" Width="179.55"/>
<TableColumn Name="Column148" Width="189"/>
<TableColumn Name="Column149" Width="189"/>
<TableColumn Name="Column150" Width="160.65"/>
<TableColumn Name="Column151" Width="160.65"/>
<TableRow Name="Row18" Height="141.75">
<TableCell Name="Cell205" Border.Lines="Left, Top, Bottom" Fill.Color="255, 255, 153" Text="ผลผลิต / ภาคการศึกษา / ภาคเรียน" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell206" Border.Lines="All" Fill.Color="255, 255, 153" Text="ประมาณการรายรับ &#13;&#10;(ค่าบำรุงการศึกษา ค่าลงทะเบียน &#13;&#10;ค่าสนับสนุน การศึกษาแบบเหมาจ่าย)*" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell207" Border.Lines="All" Fill.Color="255, 255, 221" Text="หัก ค่าใช้จ่ายสหกิจศึกษา&#13;&#10;ของคณะ/วิทยาลัย ร้อยละ 60" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell208" Border.Lines="All" Fill.Color="255, 255, 221" Text="หัก ค่าใช้จ่ายสหกิจศึกษา&#13;&#10;ของกองสหกิจศึกษา ร้อยละ 10" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell209" Border.Lines="All" Fill.Color="255, 255, 221" Text="คงเหลือ ประมาณการรายรับ&#13;&#10;หลังหักค่าใช้จ่ายสหกิจศึกษา &#13;&#10;( ร้อยละ 30 )" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell210" Border.Lines="All" Fill.Color="255, 255, 221" Text="หัก ค่าธรรมเนียม&#13;&#10;การศึกษาทั้งสิ้น" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
<TableCell Name="Cell211" Border.Lines="All" Fill.Color="255, 255, 153" Text="คงเหลือ สมทบ&#13;&#10;มหาวิทยาลัย" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt, style=Bold"/>
</TableRow>
</TableObject>
<TextObject Name="Text84" Left="415.8" Top="75.6" Width="434.7" Height="37.8" Text="คณะ/วิทยาลัย[summary_income_cooperative.faculty_college]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
<TextObject Name="Text85" Left="850.5" Top="75.6" Width="368.55" Height="37.8" Text="พื้นที่[summary_income_cooperative.area]" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data1" Top="260.86" Width="1436.4">
<DataBand Name="Data4" Top="266.58" Width="1436.4" Height="47.25" DataSource="data">
<TableObject Name="Table19" Width="1436.4" Height="47.25" Border.Lines="All">
<TableColumn Name="Column161" Width="321.3"/>
<TableColumn Name="Column162" Width="189"/>
<TableColumn Name="Column163" Width="47.25"/>
<TableColumn Name="Column164" Width="132.3"/>
<TableColumn Name="Column165" Width="47.25"/>
<TableColumn Name="Column166" Width="141.75"/>
<TableColumn Name="Column167" Width="47.25"/>
<TableColumn Name="Column168" Width="141.75"/>
<TableColumn Name="Column169" Width="47.25"/>
<TableColumn Name="Column170" Width="113.4"/>
<TableColumn Name="Column171" Width="47.25"/>
<TableColumn Name="Column172" Width="113.4"/>
<TableColumn Name="Column173" Width="47.25"/>
<TableRow Name="Row19" Height="47.25">
<TableCell Name="Cell221" Border.Lines="All" Text="[summary_income_cooperative.data.topic]" AutoShrink="FontSize" AutoShrinkMinSize="12" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Formats>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell222" Border.Lines="Right, Top, Bottom" Text="[summary_income_cooperative.data.revenue_estimates]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell223" Border.Lines="All" Text="บาท" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell224" Border.Lines="All" Text="[summary_income_cooperative.data.deduct_expenses_percent60]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell225" Border.Lines="All" Text="บาท" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell226" Border.Lines="All" Text="[summary_income_cooperative.data.deduct_expenses_percent10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell227" Border.Lines="All" Text="บาท" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell228" Border.Lines="All" Text="[summary_income_cooperative.data.balance]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell229" Border.Lines="All" Text="บาท" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell230" Border.Lines="All" Text="[summary_income_cooperative.data.deduct_tuition_fees]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell231" Border.Lines="All" Text="บาท" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell232" Border.Lines="All" Text="[summary_income_cooperative.data.balance_university]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell233" Border.Lines="All" Text="บาท" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="12" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt">
<Highlight>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 1" Fill.Color="255, 255, 204" Font="TH Sarabun New, 18pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 2" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 3" Font="TH Sarabun New, 15.75pt" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[summary_income_cooperative.data.topic_type]== 4" Fill.Color="255, 255, 153" Font="TH Sarabun New, 15.75pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary1" Top="319.54" Width="1436.4" Height="141.75">
<TextObject Name="Text114" Left="926.1" Top="28.35" Width="151.2" Height="37.8" Text="ลงชื่อ" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
<TextObject Name="Text116" Left="1077.3" Top="28.35" Width="226.8" Height="37.8" Text="[summary_income_cooperative.maker]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
<TextObject Name="Text117" Left="1304.1" Top="28.35" Width="132.3" Height="37.8" Text="ผู้จัดทำ" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
<TextObject Name="Text118" Left="926.1" Top="66.15" Width="151.2" Height="37.8" Text="ตำแหน่ง" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
<TextObject Name="Text119" Left="1077.3" Top="66.15" Width="226.8" Height="37.8" Text="[summary_income_cooperative.position_maker]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
<TextObject Name="Text120" Left="1077.3" Top="103.95" Width="226.8" Height="37.8" Text="[summary_income_cooperative.maker_date]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
<TextObject Name="Text121" Left="926.1" Top="103.95" Width="151.2" Height="37.8" Text="เบอร์โทรติดต่อ" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
</ReportSummaryBand>
</ReportPage>
</Report>