add reports
This commit is contained in:
@@ -1554,10 +1554,13 @@ namespace rmutr_report.Controllers
|
||||
"basic_plan_all_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
|
||||
[HttpPost, Route("reports/summary_strategic/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSumStrategicReport([FromRoute] string type, [FromBody] summary_strategic summary_strategics)
|
||||
{ var _summary_strategic = new List<summary_strategic>() { summary_strategics };
|
||||
public IActionResult GetSumStrategicReport([FromRoute] string type,
|
||||
[FromBody] summary_strategic summary_strategics)
|
||||
{
|
||||
var _summary_strategic = new List<summary_strategic>() { summary_strategics };
|
||||
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "summary_strategic.frx");
|
||||
@@ -1585,10 +1588,586 @@ namespace rmutr_report.Controllers
|
||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
date + ".xlsx");
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[HttpPost, Route("reports/budget_expenditure_from_revenue/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetBudgetReport([FromRoute] string type,
|
||||
[FromBody] budget_expenditure_from_revenue budget_expenditure_from_revenues)
|
||||
{
|
||||
if (budget_expenditure_from_revenues.budget_expenditure_from_revenue_details != null)
|
||||
{
|
||||
foreach (var detail in budget_expenditure_from_revenues.budget_expenditure_from_revenue_details)
|
||||
{
|
||||
if (detail.topic_type == 1)
|
||||
{
|
||||
detail.topic_1 = detail.topic;
|
||||
detail.topic_2 = null;
|
||||
var sum1 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.current_students);
|
||||
budget_expenditure_from_revenues.sum_1 = sum1;
|
||||
var sum2 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.students_reduced);
|
||||
budget_expenditure_from_revenues.sum_2 = sum2;
|
||||
var sum3 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.students_estimates);
|
||||
budget_expenditure_from_revenues.sum_3 = sum3;
|
||||
var sum4 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.price_regis_flat_payment);
|
||||
budget_expenditure_from_revenues.sum_4 = sum4;
|
||||
var sum5 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.library_total);
|
||||
budget_expenditure_from_revenues.sum_5 = sum5;
|
||||
var sum6 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.utilities_total);
|
||||
budget_expenditure_from_revenues.sum_6 = sum6;
|
||||
var sum7 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.student_club_library_total);
|
||||
budget_expenditure_from_revenues.sum_7 = sum7;
|
||||
var sum8 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.accident_insurance_total);
|
||||
budget_expenditure_from_revenues.sum_8 = sum8;
|
||||
var sum9 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.academic_activities_total);
|
||||
budget_expenditure_from_revenues.sum_9 = sum9;
|
||||
var sum10 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.examination_and_x_rays_total);
|
||||
budget_expenditure_from_revenues.sum_10 = sum10;
|
||||
var sum11 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.tuition_fee_total);
|
||||
budget_expenditure_from_revenues.sum_11 = sum11;
|
||||
var sum12 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
|
||||
.Where(h => h.topic_type == 1).Sum(j =>
|
||||
j.education_fee_less_fee_total);
|
||||
budget_expenditure_from_revenues.sum_12 = sum12;
|
||||
}
|
||||
|
||||
if (detail.topic_type == 2)
|
||||
{
|
||||
detail.topic_1 = detail.topic;
|
||||
detail.topic_2 = null;
|
||||
}
|
||||
|
||||
if (detail.topic_type == 3)
|
||||
{
|
||||
detail.topic_2 = detail.topic;
|
||||
detail.topic_1 = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var _summarys = new List<budget_expenditure_from_revenue>() { budget_expenditure_from_revenues };
|
||||
|
||||
Report report = new Report();
|
||||
report.Load(_setting.report_path + "budget_expenditure_from_revenue.frx");
|
||||
report.RegisterData(_summarys, "budget_expenditure_from_revenue");
|
||||
report.Prepare();
|
||||
|
||||
MemoryStream stream = new MemoryStream();
|
||||
switch (type)
|
||||
{
|
||||
case "pdf":
|
||||
PDFExport pdf = new PDFExport();
|
||||
report.Export(pdf, stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
return File(stream, "application/pdf");
|
||||
|
||||
case "xls":
|
||||
case "xlsx":
|
||||
Excel2007Export excel = new Excel2007Export();
|
||||
report.Export(excel, stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
//return File(stream, "application/vnd.ms-excel");
|
||||
string date = DateTime.Now.ToString("yyyyMMddHHmmss");
|
||||
return File(
|
||||
stream,
|
||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
date + ".xlsx");
|
||||
break;
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[HttpPost, Route("reports/revenue_estimates/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetRevenueEstimatesReport([FromRoute] string type,
|
||||
[FromBody] revenue_estimates revenue_estimate)
|
||||
{
|
||||
var workbook = new XLWorkbook();
|
||||
var ws = workbook.Worksheets.Add("สรุปรายรับและจัดสรรตามเกณฑ์");
|
||||
ws.Range("A1:S1").Merge().Value = "งบประมาณรายจ่ายจากเงินรายได้ ประจำปีงบประมาณ พ.ศ. " +
|
||||
revenue_estimate.academic_year_name_th;
|
||||
ws.Range("A1:S1").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("A1:S1").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("A1:S1").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("A1:S1").Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Range("A2:S2").Merge().Value = "( " + revenue_estimate.start_and_end_date_report + " )";
|
||||
ws.Range("A2:S2").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("A2:S2").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("A2:S2").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("A2:S2").Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Range("A3:S3").Merge().Value = "สรุปประมาณการรายรับ และการจัดสรรตามเกณฑ์รายจ่าย การจัดการศึกษาระดับ" +
|
||||
revenue_estimate.education_level;
|
||||
ws.Range("A3:S3").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("A3:S3").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("A3:S3").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("A3:S3").Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Range("A4:S4").Merge().Value = "คณะ/วิทยาลัย " + revenue_estimate.faculty_name_th + " " + "พื้นที่ " +
|
||||
revenue_estimate.agency_name_th;
|
||||
ws.Range("A4:S4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("A4:S4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("A4:S4").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("A4:S4").Style.Font.SetBold().Font.FontSize = 16;
|
||||
|
||||
ws.Column(1).Width = 30;
|
||||
|
||||
ws.Column(5).Width = 15;
|
||||
ws.Column(6).Width = 15;
|
||||
ws.Column(7).Width = 15;
|
||||
ws.Column(8).Width = 15;
|
||||
ws.Column(9).Width = 15;
|
||||
ws.Column(10).Width = 15;
|
||||
ws.Column(11).Width = 15;
|
||||
ws.Column(12).Width = 15;
|
||||
ws.Column(13).Width = 15;
|
||||
ws.Column(14).Width = 15;
|
||||
ws.Column(15).Width = 15;
|
||||
ws.Column(16).Width = 15;
|
||||
ws.Column(17).Width = 15;
|
||||
ws.Column(18).Width = 15;
|
||||
ws.Column(19).Width = 15;
|
||||
ws.Row(5).Height = 30;
|
||||
ws.Row(6).Height = 30;
|
||||
|
||||
int row = 7;
|
||||
//int no = 1;
|
||||
if (revenue_estimate != null)
|
||||
{
|
||||
ws.Range("A5:A6").Merge().Value = "ผลผลิต / ภาคการศึกษา / ภาคเรียน";
|
||||
ws.Range("A5:A6").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("A5:A6").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("A5:A6").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("A5:A6").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("A5:A6").Style.Fill.BackgroundColor = XLColor.FromArgb(248, 203, 173);
|
||||
ws.Range("A5:A6").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("B5:C6").Merge().Value = "ประมาณการรายรับ";
|
||||
ws.Range("B5:C6").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("B5:C6").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("B5:C6").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("B5:C6").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("B5:C6").Style.Fill.BackgroundColor = XLColor.FromArgb(248, 203, 173);
|
||||
ws.Range("B5:C6").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("D5:E6").Merge().Value = "หัก ประมาณการรายรับคณะศิลปศาสตร์ ( ศึกษาทั่วไป )";
|
||||
ws.Range("D5:E6").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("D5:E6").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("D5:E6").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("D5:E6").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("D5:E6").Style.Fill.BackgroundColor = XLColor.FromArgb(248, 203, 173);
|
||||
ws.Range("D5:E6").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("F5:G6").Merge().Value = "คงเหลือ ประมาณการรายรับก่อนหักรายได้สะสม และจัดสรรตามเกณฑ์";
|
||||
ws.Range("F5:G6").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("F5:G6").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("F5:G6").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("F5:G6").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("F5:G6").Style.Fill.BackgroundColor = XLColor.FromArgb(248, 203, 173);
|
||||
ws.Range("F5:G6").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("H5:I6").Merge().Value = "หัก รายได้สะสม ร้อยละ 10";
|
||||
ws.Range("H5:I6").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("H5:I6").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("H5:I6").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("H5:I6").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("H5:I6").Style.Fill.BackgroundColor = XLColor.FromArgb(248, 203, 173);
|
||||
ws.Range("H5:I6").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("J5:K6").Merge().Value = "คงเหลือ ประมาณการรายรับ ก่อนจัดสรรตามเกณฑ์";
|
||||
ws.Range("J5:K6").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("J5:K6").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("J5:K6").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("J5:K6").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("J5:K6").Style.Fill.BackgroundColor = XLColor.FromArgb(248, 203, 173);
|
||||
ws.Range("J5:K6").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("L5:M6").Merge().Value = "สมทบค่าสาธารณูปโภคมหาวิทยาลัย ร้อยละ 5";
|
||||
ws.Range("L5:M6").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("L5:M6").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("L5:M6").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("L5:M6").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("L5:M6").Style.Fill.BackgroundColor = XLColor.FromArgb(248, 203, 173);
|
||||
ws.Range("L5:M6").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("N5:O6").Merge().Value = "สมทบงบกลาง มหาวิทยาลัย ร้อยละ 15";
|
||||
ws.Range("N5:O6").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("N5:O6").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("N5:O6").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("N5:O6").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("N5:O6").Style.Fill.BackgroundColor = XLColor.FromArgb(248, 203, 173);
|
||||
ws.Range("N5:O6").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("P5:Q6").Merge().Value = "สมทบรายจ่ายส่วนกลางมหาวิทยาลัย ร้อยละ 40/50/60";
|
||||
ws.Range("P5:Q6").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("P5:Q6").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("P5:Q6").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("P5:Q6").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("P5:Q6").Style.Fill.BackgroundColor = XLColor.FromArgb(248, 203, 173);
|
||||
ws.Range("P5:Q6").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("R5:S6").Merge().Value = "กรอบวงเงินรายจ่ายของคณะ/วิทยาลัย ร้อยละ 40/50/60";
|
||||
ws.Range("R5:S6").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("R5:S6").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("R5:S6").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("R5:S6").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("R5:S6").Style.Fill.BackgroundColor = XLColor.FromArgb(248, 203, 173);
|
||||
ws.Range("R5:S6").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range(ws.Cell(5, 1), ws.Cell(6, 19)).Style.Alignment.WrapText = true;
|
||||
|
||||
int r1 = 1;
|
||||
int r2 = 2;
|
||||
foreach (var detail in revenue_estimate.revenue_estimates_details)
|
||||
{
|
||||
|
||||
if (detail.topic_type == 1)
|
||||
{
|
||||
ws.Cell(row, 1).Value = detail.topic;
|
||||
ws.Cell(row, 2).Value = detail.revenue_estimates;
|
||||
ws.Cell(row, 3).Value = "บาท";
|
||||
ws.Cell(row, 4).Value = detail.less_revenue_estimates;
|
||||
ws.Cell(row, 5).Value = "บาท";
|
||||
ws.Cell(row, 6).Value = detail.balance_revenue_estimates;
|
||||
ws.Cell(row, 7).Value = "บาท";
|
||||
ws.Cell(row, 8).Value = detail.less_accumulated_income;
|
||||
ws.Cell(row, 9).Value = "บาท";
|
||||
ws.Cell(row, 10).Value = detail.balance_before_allocating_according;
|
||||
ws.Cell(row, 11).Value = "บาท";
|
||||
ws.Cell(row, 12).Value = detail.contribution_utility_bills;
|
||||
ws.Cell(row, 13).Value = "บาท";
|
||||
ws.Cell(row, 14).Value = detail.contribution_central_budget;
|
||||
ws.Cell(row, 15).Value = "บาท";
|
||||
ws.Cell(row, 16).Value = detail.contribution_central_expenditure;
|
||||
ws.Cell(row, 17).Value = "บาท";
|
||||
ws.Cell(row, 18).Value = detail.expenditure_limit;
|
||||
ws.Cell(row, 19).Value = "บาท";
|
||||
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.SetBold().Font.FontSize = 16;
|
||||
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.Border.OutsideBorder =
|
||||
XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 2), ws.Cell(row, 19)).Style.Alignment.Horizontal =
|
||||
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, 4).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 6).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 8).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 10).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 12).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 14).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 16).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 18).Style.NumberFormat.SetFormat("#,#0");
|
||||
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;
|
||||
|
||||
row++;
|
||||
}
|
||||
|
||||
if (detail.topic_type == 2)
|
||||
{
|
||||
ws.Cell(row, 1).Value = detail.topic;
|
||||
ws.Cell(row, 2).Value = detail.revenue_estimates;
|
||||
ws.Cell(row, 3).Value = "บาท";
|
||||
ws.Cell(row, 4).Value = detail.less_revenue_estimates;
|
||||
ws.Cell(row, 5).Value = "บาท";
|
||||
ws.Cell(row, 6).Value = detail.balance_revenue_estimates;
|
||||
ws.Cell(row, 7).Value = "บาท";
|
||||
ws.Cell(row, 8).Value = detail.less_accumulated_income;
|
||||
ws.Cell(row, 9).Value = "บาท";
|
||||
ws.Cell(row, 10).Value = detail.balance_before_allocating_according;
|
||||
ws.Cell(row, 11).Value = "บาท";
|
||||
ws.Cell(row, 12).Value = detail.contribution_utility_bills;
|
||||
ws.Cell(row, 13).Value = "บาท";
|
||||
ws.Cell(row, 14).Value = detail.contribution_central_budget;
|
||||
ws.Cell(row, 15).Value = "บาท";
|
||||
ws.Cell(row, 16).Value = detail.contribution_central_expenditure;
|
||||
ws.Cell(row, 17).Value = "บาท";
|
||||
ws.Cell(row, 18).Value = detail.expenditure_limit;
|
||||
ws.Cell(row, 19).Value = "บาท";
|
||||
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.SetBold().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.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Border.OutsideBorder =
|
||||
XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 2), ws.Cell(row, 19)).Style.Alignment.Horizontal =
|
||||
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, 4).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 6).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 8).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 10).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 12).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 14).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 16).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 18).Style.NumberFormat.SetFormat("#,#0");
|
||||
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;
|
||||
row++;
|
||||
}
|
||||
|
||||
if (detail.topic_type == 3)
|
||||
{
|
||||
ws.Cell(row, 1).Value = detail.topic;
|
||||
ws.Cell(row, 2).Value = detail.revenue_estimates;
|
||||
ws.Cell(row, 3).Value = "บาท";
|
||||
ws.Cell(row, 4).Value = detail.less_revenue_estimates;
|
||||
ws.Cell(row, 5).Value = "บาท";
|
||||
ws.Cell(row, 6).Value = detail.balance_revenue_estimates;
|
||||
ws.Cell(row, 7).Value = "บาท";
|
||||
ws.Cell(row, 8).Value = detail.less_accumulated_income;
|
||||
ws.Cell(row, 9).Value = "บาท";
|
||||
ws.Cell(row, 10).Value = detail.balance_before_allocating_according;
|
||||
ws.Cell(row, 11).Value = "บาท";
|
||||
ws.Cell(row, 12).Value = detail.contribution_utility_bills;
|
||||
ws.Cell(row, 13).Value = "บาท";
|
||||
ws.Cell(row, 14).Value = detail.contribution_central_budget;
|
||||
ws.Cell(row, 15).Value = "บาท";
|
||||
ws.Cell(row, 16).Value = detail.contribution_central_expenditure;
|
||||
ws.Cell(row, 17).Value = "บาท";
|
||||
ws.Cell(row, 18).Value = detail.expenditure_limit;
|
||||
ws.Cell(row, 19).Value = "บาท";
|
||||
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName =
|
||||
"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.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.Border.OutsideBorder =
|
||||
XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 2), ws.Cell(row, 19)).Style.Alignment.Horizontal =
|
||||
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, 4).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 6).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 8).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 10).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 12).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 14).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 16).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 18).Style.NumberFormat.SetFormat("#,#0");
|
||||
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;
|
||||
row++;
|
||||
}
|
||||
|
||||
if (detail.topic_type == 4)
|
||||
{
|
||||
ws.Cell(row, 1).Value = "รวม";
|
||||
ws.Cell(row, 2).Value = detail.revenue_estimates;
|
||||
ws.Cell(row, 3).Value = "บาท";
|
||||
ws.Cell(row, 4).Value = detail.less_revenue_estimates;
|
||||
ws.Cell(row, 5).Value = "บาท";
|
||||
ws.Cell(row, 6).Value = detail.balance_revenue_estimates;
|
||||
ws.Cell(row, 7).Value = "บาท";
|
||||
ws.Cell(row, 8).Value = detail.less_accumulated_income;
|
||||
ws.Cell(row, 9).Value = "บาท";
|
||||
ws.Cell(row, 10).Value = detail.balance_before_allocating_according;
|
||||
ws.Cell(row, 11).Value = "บาท";
|
||||
ws.Cell(row, 12).Value = detail.contribution_utility_bills;
|
||||
ws.Cell(row, 13).Value = "บาท";
|
||||
ws.Cell(row, 14).Value = detail.contribution_central_budget;
|
||||
ws.Cell(row, 15).Value = "บาท";
|
||||
ws.Cell(row, 16).Value = detail.contribution_central_expenditure;
|
||||
ws.Cell(row, 17).Value = "บาท";
|
||||
ws.Cell(row, 18).Value = detail.expenditure_limit;
|
||||
ws.Cell(row, 19).Value = "บาท";
|
||||
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 19)).Style.Font.SetBold().Font.FontSize = 16;
|
||||
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.Border.OutsideBorder =
|
||||
XLBorderStyleValues.Thin;
|
||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range(ws.Cell(row, 2), ws.Cell(row, 19)).Style.Alignment.Horizontal =
|
||||
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, 4).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 6).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 8).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 10).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 12).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 14).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 16).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Cell(row, 18).Style.NumberFormat.SetFormat("#,#0");
|
||||
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;
|
||||
row++;
|
||||
}
|
||||
|
||||
if (detail.is_footer== true)
|
||||
{
|
||||
ws.Cell(row, 14).Value = "ลงชื่อ";
|
||||
ws.Cell(row, 15).Value = revenue_estimate.author_name;
|
||||
ws.Cell(row, 17).Value = "ผู้จัดทำ";
|
||||
ws.Cell(row + r1, 14).Value = "ตำแหน่ง";
|
||||
ws.Cell(row+r1, 15).Value = revenue_estimate.position_name;
|
||||
ws.Cell(row+r2, 14).Value = "เบอร์โทรติดต่อ";
|
||||
ws.Cell(row+r2, 15).Value = "'"+revenue_estimate.phone;
|
||||
ws.Range(ws.Cell(row, 14), ws.Cell(row, 17)).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Range(ws.Cell(row, 14), ws.Cell(row, 17)).Style.Font.SetBold().Font.FontSize = 14;
|
||||
// ws.Range(ws.Cell(row, 15), ws.Cell(row, 16)).Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
// ws.Range(ws.Cell(row+1, 15), ws.Cell(row, 16)).Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Cell(row, 14).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row+1, 14).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row+2, 14).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell(row+1, 14).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Cell(row+2, 14).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Cell(row+1, 14).Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell(row+2, 14).Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range(ws.Cell(row, 15), ws.Cell(row, 16)).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Range(ws.Cell(row+1, 15), ws.Cell(row, 16)).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Cell(row+2, 15).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Range(ws.Cell(row, 15), ws.Cell(row, 16)).Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range(ws.Cell(row+1, 15), ws.Cell(row, 16)).Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell(row+2, 15).Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range(ws.Cell(row, 15), ws.Cell(row, 16)).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
ws.Range(ws.Cell(row+1, 15), ws.Cell(row, 16)).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row+2, 15).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell(row+3, 15).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Cell(row+3, 15).Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell(row+3, 15).Style.Alignment.Horizontal =
|
||||
XLAlignmentHorizontalValues.Center;
|
||||
row++;
|
||||
row += r1++;
|
||||
row += r2++;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
using (var stream1 = new MemoryStream())
|
||||
{
|
||||
workbook.SaveAs(stream1);
|
||||
var content = stream1.ToArray();
|
||||
string date = DateTime.Now.ToString("yyyyMMddHHmmss");
|
||||
return File(
|
||||
content,
|
||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
"revenue_estimates_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8802,5 +8802,660 @@ namespace rmutr_report.Controllers
|
||||
"set_personnel_budget_university_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
|
||||
[HttpPost, Route("reports/set_personnel_budget_permanent/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSetPersonPermanentReport([FromRoute] string type,
|
||||
[FromBody] set_personnel_budget_permanent personnel)
|
||||
{
|
||||
var workbook = new XLWorkbook();
|
||||
var ws = workbook.Worksheets.Add("4.ค่าจ้างประจำ");
|
||||
ws.Range("A1:S1").Merge().Value= "การตั้งงบประมาณค่าใช้จ่ายบุคลากร ของลูกจ้างประจำ ปีงบประมาณ พ.ศ. " + personnel.academic_year_name_th;
|
||||
ws.Range("A1:S1").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("A1:S1").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("A1:S1").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("A1:S1").Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Range("A2:S2").Merge().Value= "กรณี ลูกจ้างประจำเกษียณแล้วยุบ และจ้างพนักงานราชการทดแทน";
|
||||
ws.Range("A2:S2").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("A2:S2").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("A2:S2").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("A2:S2").Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Range("A3:S3").Merge().Value= "(กรณีเงินเลื่อนขั้นอยู่ในงบกลาง และมีการเลื่อนเงินเดือนปีละ 2 ครั้ง)";
|
||||
ws.Range("A3:S3").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("A3:S3").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("A3:S3").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("A3:S3").Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Cell("A4").Value = "กระทรวง : ";
|
||||
ws.Cell("A4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("A4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("A4").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("A4").Style.Font.FontSize = 16;
|
||||
ws.Cell("A4").Style.Font.Bold = true;
|
||||
ws.Range("B4:F4").Merge().Value = personnel.ministry_name_th;
|
||||
ws.Range("B4:F4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range("B4:F4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("B4").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("B4").Style.Font.FontSize = 16;
|
||||
ws.Range("B4:F4").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Cell("A5").Value = "หน่วยงาน : ";
|
||||
ws.Cell("A5").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("A5").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("A5").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("A5").Style.Font.FontSize = 16;
|
||||
ws.Cell("A5").Style.Font.Bold = true;
|
||||
|
||||
ws.Range("B5:F5").Merge().Value = personnel.agency_name_th;
|
||||
ws.Range("B5:F5").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range("B5:F5").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("B5").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("B5").Style.Font.FontSize = 16;
|
||||
ws.Range("B5:F5").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Cell("A9").Value = "แบบคำนวณค่าจ้างประจำ";
|
||||
ws.Cell("A9").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("A9").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("A9").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("A9").Style.Font.FontSize = 16;
|
||||
ws.Cell("A9").Style.Font.Bold = true;
|
||||
ws.Cell("D9").Value = "จำนวนรวมทั้งสิ้น";
|
||||
ws.Cell("D9").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("D9").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("D9").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("D9").Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Range("E9:F9").Merge().Value = personnel.calculate_regular_wages_rate;
|
||||
ws.Range("E9:F9").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range("E9:F9").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("E9").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("E9").Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Range("E9:F9").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Cell("G9").Value = "อัตรา";
|
||||
ws.Cell("G9").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("G9").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("G9").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("G9").Style.Font.FontSize = 16;
|
||||
ws.Cell("G9").Style.Font.Bold = true;
|
||||
ws.Cell("H9").Value = "งบประมาณ";
|
||||
ws.Cell("H9").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("H9").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("H9").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("H9").Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Range("I9:J9").Merge().Value = personnel.calculate_regular_wages_budget;
|
||||
ws.Range("I9:J9").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range("I9:J9").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("I9").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("I9").Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Range("I9:J9").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Cell("K9").Value = "ล้านบาท (ไม่รวมส่วนควบ)";
|
||||
ws.Cell("K9").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("K9").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("K9").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("K9").Style.Font.FontSize = 16;
|
||||
ws.Cell("K9").Style.Font.Bold = true;
|
||||
ws.Cell("A10").Value = "พรบ.ปี 2564";
|
||||
ws.Cell("A10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("A10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("A10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("A10").Style.Font.FontSize = 16;
|
||||
ws.Cell("A10").Style.Font.Bold = true;
|
||||
|
||||
ws.Cell("B10").Value = personnel.act_old1;
|
||||
ws.Cell("B10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("B10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("B10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("B10").Style.Font.FontSize = 16;
|
||||
ws.Cell("B10").Style.Font.Bold = true;
|
||||
ws.Cell("B10").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
|
||||
|
||||
ws.Cell("C10").Value = "ลบ.";
|
||||
ws.Cell("C10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("C10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("C10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("C10").Style.Font.FontSize = 16;
|
||||
ws.Cell("C10").Style.Font.Bold = true;
|
||||
|
||||
ws.Range("D10:E10").Merge().Value = "ผลเบิกจ่ายปี งปม.64";
|
||||
ws.Range("D10:E10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range("D10:E10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("D10:E10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("D10:E10").Style.Font.FontSize = 16;
|
||||
ws.Range("D10:E10").Style.Font.Bold = true;
|
||||
|
||||
ws.Cell("F10").Value = personnel.disbursement_year_act_old1;
|
||||
ws.Cell("F10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("F10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("F10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("F10").Style.Font.FontSize = 16;
|
||||
ws.Cell("F10").Style.Font.Bold = true;
|
||||
ws.Cell("F10").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
|
||||
ws.Cell("G10").Value = "ลบ.";
|
||||
ws.Cell("G10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("G10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("G10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("G10").Style.Font.FontSize = 16;
|
||||
ws.Cell("G10").Style.Font.Bold = true;
|
||||
|
||||
ws.Cell("H10").Value = "คิดเป็นร้อยละ";
|
||||
ws.Cell("H10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("H10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("H10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("H10").Style.Font.FontSize = 16;
|
||||
ws.Cell("H10").Style.Font.Bold = true;
|
||||
|
||||
ws.Cell("I10").Value = personnel.disbursement_year_act_old1_percent;
|
||||
ws.Cell("I10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("I10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("I10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("I10").Style.Font.FontSize = 16;
|
||||
ws.Cell("I10").Style.Font.Bold = true;
|
||||
ws.Cell("I10").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
|
||||
ws.Cell("J10").Value = "คงเหลือ";
|
||||
ws.Cell("J10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("J10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("J10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("J10").Style.Font.FontSize = 16;
|
||||
ws.Cell("J10").Style.Font.Bold = true;
|
||||
ws.Cell("K10").Value = personnel.remaining_act_old1;
|
||||
ws.Cell("K10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("K10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("K10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("K10").Style.Font.FontSize = 16;
|
||||
ws.Cell("K10").Style.Font.Bold = true;
|
||||
ws.Cell("K10").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Cell("L10").Value = "ลบ.";
|
||||
ws.Cell("L10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("L10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("L10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("L10").Style.Font.FontSize = 16;
|
||||
ws.Cell("L10").Style.Font.Bold = true;
|
||||
|
||||
ws.Cell("M10").Value = "คิดเป็นร้อยละ";
|
||||
ws.Cell("M10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("M10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("M10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("M10").Style.Font.FontSize = 16;
|
||||
ws.Cell("M10").Style.Font.Bold = true;
|
||||
ws.Cell("N10").Value = personnel.remaining_act_old1_percent;
|
||||
ws.Cell("N10").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("N10").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("N10").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("N10").Style.Font.FontSize = 16;
|
||||
ws.Cell("N10").Style.Font.Bold = true;
|
||||
ws.Cell("N10").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Cell("A11").Value = "พรบ.ปี 2565";
|
||||
ws.Cell("A11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("A11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("A11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("A11").Style.Font.FontSize = 16;
|
||||
ws.Cell("A11").Style.Font.Bold = true;
|
||||
|
||||
ws.Cell("B11").Value = personnel.act_old2;
|
||||
ws.Cell("B11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("B11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("B11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("B11").Style.Font.FontSize = 16;
|
||||
ws.Cell("B11").Style.Font.Bold = true;
|
||||
ws.Cell("B11").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
|
||||
|
||||
ws.Cell("C11").Value = "ลบ.";
|
||||
ws.Cell("C11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("C11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("C11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("C11").Style.Font.FontSize = 16;
|
||||
ws.Cell("C11").Style.Font.Bold = true;
|
||||
|
||||
ws.Range("D11:E11").Merge().Value = "จ่ายจริง ต.ค.64 - พ.ย.64";
|
||||
ws.Range("D11:E11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range("D11:E11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("D11:E11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("D11:E11").Style.Font.FontSize = 16;
|
||||
ws.Range("D11:E11").Style.Font.Bold = true;
|
||||
|
||||
ws.Cell("F11").Value = personnel.actually_paid;
|
||||
ws.Cell("F11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("F11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("F11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("F11").Style.Font.FontSize = 16;
|
||||
ws.Cell("F11").Style.Font.Bold = true;
|
||||
ws.Cell("F11").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
|
||||
ws.Cell("G11").Value = "ลบ.";
|
||||
ws.Cell("G11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("G11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("G11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("G11").Style.Font.FontSize = 16;
|
||||
ws.Cell("G11").Style.Font.Bold = true;
|
||||
|
||||
ws.Cell("H11").Value = "คิดเป็นร้อยละ";
|
||||
ws.Cell("H11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("H11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("H11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("H11").Style.Font.FontSize = 16;
|
||||
ws.Cell("H11").Style.Font.Bold = true;
|
||||
|
||||
ws.Cell("I11").Value = personnel.actually_paid_percent;
|
||||
ws.Cell("I11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("I11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("I11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("I11").Style.Font.FontSize = 16;
|
||||
ws.Cell("I11").Style.Font.Bold = true;
|
||||
ws.Cell("I11").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
|
||||
ws.Cell("J11").Value = "คงเหลือ";
|
||||
ws.Cell("J11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("J11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("J11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("J11").Style.Font.FontSize = 16;
|
||||
ws.Cell("J11").Style.Font.Bold = true;
|
||||
ws.Cell("K11").Value = personnel.remaining_act_old2;
|
||||
ws.Cell("K11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("K11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("K11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("K11").Style.Font.FontSize = 16;
|
||||
ws.Cell("K11").Style.Font.Bold = true;
|
||||
ws.Cell("K11").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Cell("L11").Value = "ลบ.";
|
||||
ws.Cell("L11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("L11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("L11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("L11").Style.Font.FontSize = 16;
|
||||
ws.Cell("L11").Style.Font.Bold = true;
|
||||
|
||||
ws.Cell("M11").Value = "คิดเป็นร้อยละ";
|
||||
ws.Cell("M11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("M11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("M11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("M11").Style.Font.FontSize = 16;
|
||||
ws.Cell("M11").Style.Font.Bold = true;
|
||||
ws.Cell("N11").Value = personnel.remaining_act_old2_percent;
|
||||
ws.Cell("N11").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("N11").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("N11").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("N11").Style.Font.FontSize = 16;
|
||||
ws.Cell("N11").Style.Font.Bold = true;
|
||||
ws.Cell("N11").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Range("A12:B12").Merge().Value = "(ไม่รวมส่วนควบ)";
|
||||
ws.Range("A12:B12").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Range("A12:B12").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("A12:B12").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("A12:B12").Style.Font.FontSize = 16;
|
||||
ws.Range("D12:E12").Merge().Value = "(ไม่รวมส่วนควบ)";
|
||||
ws.Range("D12:E12").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Range("D12:E12").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("D12:E12").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("D12:E12").Style.Font.FontSize = 16;
|
||||
ws.Cell("A13").Value = "เฉลี่ยต่อเดือน";
|
||||
ws.Cell("A13").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("A13").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("A13").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("A13").Style.Font.FontSize = 16;
|
||||
ws.Cell("B13").Value = personnel.average_per_month1;
|
||||
ws.Cell("B13").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("B13").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("B13").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("B13").Style.Font.FontSize = 16;
|
||||
ws.Cell("B13").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Cell("C13").Value = "ลบ.";
|
||||
ws.Cell("C13").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("C13").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("C13").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("C13").Style.Font.FontSize = 16;
|
||||
ws.Cell("E13").Value = "เฉลี่ยต่อเดือน";
|
||||
ws.Cell("E13").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("E13").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("E13").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("E13").Style.Font.FontSize = 16;
|
||||
ws.Cell("F13").Value = personnel.average_per_month2;
|
||||
ws.Cell("F13").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Cell("F13").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("F13").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("F13").Style.Font.FontSize = 16;
|
||||
ws.Cell("F13").Style.Border.BottomBorder = XLBorderStyleValues.Dotted;
|
||||
ws.Cell("G13").Value = "ลบ.";
|
||||
ws.Cell("G13").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Cell("G13").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("G13").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("G13").Style.Font.FontSize = 16;
|
||||
ws.Column(1).Width = 30;
|
||||
|
||||
ws.Column(5).Width = 15;
|
||||
ws.Column(6).Width = 15;
|
||||
ws.Column(7).Width = 15;
|
||||
ws.Column(8).Width = 15;
|
||||
ws.Column(9).Width = 15;
|
||||
ws.Column(10).Width = 15;
|
||||
ws.Column(11).Width = 15;
|
||||
ws.Column(12).Width = 15;
|
||||
ws.Column(13).Width = 15;
|
||||
ws.Column(14).Width = 15;
|
||||
ws.Column(15).Width = 15;
|
||||
ws.Column(16).Width = 15;
|
||||
ws.Column(17).Width = 30;
|
||||
|
||||
int row = 17;
|
||||
//int no = 1;
|
||||
if (personnel != null)
|
||||
{
|
||||
ws.Range("A14:D16").Merge().Value = "รายการ";
|
||||
ws.Range("A14:D16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("A14:D16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("A14:D16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("A14:D16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("A14:D16").Style.Fill.BackgroundColor = XLColor.FromArgb(252, 252, 214);
|
||||
ws.Range("A14:D16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
|
||||
ws.Range("E14:F14").Merge().Value = "งปม. 2565";
|
||||
ws.Range("E14:F14").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("E14:F14").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("E14:F14").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("E14:F14").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("E14:F14").Style.Fill.BackgroundColor = XLColor.FromArgb(226, 239, 218);
|
||||
ws.Range("E14:F14").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("E15:F15").Merge().Value = "พ.ร.บ.";
|
||||
ws.Range("E15:F15").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("E15:F15").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("E15:F15").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("E15:F15").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("E15:F15").Style.Fill.BackgroundColor = XLColor.FromArgb(226, 239, 218);
|
||||
ws.Range("E15:F15").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
|
||||
ws.Cell("E16").Value = "อัตรา";
|
||||
ws.Cell("E16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("E16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("E16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("E16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("E16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("E16").Style.Fill.BackgroundColor = XLColor.FromArgb(226, 239, 218);
|
||||
ws.Cell("E16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("F16").Value = "งบประมาณ";
|
||||
ws.Cell("F16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("F16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("F16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("F16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("F16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("F16").Style.Fill.BackgroundColor = XLColor.FromArgb(226, 239, 218);
|
||||
ws.Cell("F16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("G14:J14").Merge().Value = "งปม. 2566 (จ่ายจริง ต.ค.- ธ.ค. 64)";
|
||||
ws.Range("G14:J14").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("G14:J14").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("G14:J14").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("G14:J14").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("G14:J14").Style.Fill.BackgroundColor = XLColor.FromArgb(221, 235, 247);
|
||||
ws.Range("G14:J14").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("G15:H15").Merge().Value = "คำขอ";
|
||||
ws.Range("G15:H15").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("G15:H15").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("G15:H15").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("G15:H15").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("G15:H15").Style.Fill.BackgroundColor = XLColor.FromArgb(221, 235, 247);
|
||||
ws.Range("G15:H15").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("I15:J15").Merge().Value = "ข้อเสนอ";
|
||||
ws.Range("I15:J15").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("I15:J15").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("I15:J15").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("I15:J15").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("I15:J15").Style.Fill.BackgroundColor = XLColor.FromArgb(221, 235, 247);
|
||||
ws.Range("I15:J15").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("G16").Value = "อัตรา";
|
||||
ws.Cell("G16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("G16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("G16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("G16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("G16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("G16").Style.Fill.BackgroundColor = XLColor.FromArgb(221, 235, 247);
|
||||
ws.Cell("G16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("H16").Value = "งบประมาณ";
|
||||
ws.Cell("H16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("H16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("H16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("H16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("H16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("H16").Style.Fill.BackgroundColor = XLColor.FromArgb(221, 235, 247);
|
||||
ws.Cell("H16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("I16").Value = "อัตรา";
|
||||
ws.Cell("I16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("I16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("I16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("I16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("I16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("I16").Style.Fill.BackgroundColor = XLColor.FromArgb(221, 235, 247);
|
||||
ws.Cell("I16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("J16").Value = "งบประมาณ";
|
||||
ws.Cell("J16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("J16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("J16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("J16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("J16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("J16").Style.Fill.BackgroundColor = XLColor.FromArgb(221, 235, 247);
|
||||
ws.Cell("J16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
|
||||
ws.Range("K14:P14").Merge().Value = "MTEF";
|
||||
ws.Range("K14:P14").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("K14:P14").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("K14:P14").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("K14:P14").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("K14:P14").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 230, 153);
|
||||
ws.Range("K14:P14").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("K15:L15").Merge().Value = "2567";
|
||||
ws.Range("K15:L15").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("K15:L15").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("K15:L15").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("K15:L15").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("K15:L15").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 230, 153);
|
||||
ws.Range("K15:L15").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("K16").Value = "อัตรา";
|
||||
ws.Cell("K16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("K16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("K16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("K16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("K16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("K16").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 230, 153);
|
||||
ws.Cell("K16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("L16").Value = "งบประมาณ";
|
||||
ws.Cell("L16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("L16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("L16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("L16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("L16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("L16").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 230, 153);
|
||||
ws.Cell("L16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("M15:N15").Merge().Value = "2568";
|
||||
ws.Range("M15:N15").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("M15:N15").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("M15:N15").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("M15:N15").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("M15:N15").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 230, 153);
|
||||
ws.Range("M15:N15").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("M16").Value = "อัตรา";
|
||||
ws.Cell("M16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("M16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("M16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("M16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("M16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("M16").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 230, 153);
|
||||
ws.Cell("M16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("N16").Value = "งบประมาณ";
|
||||
ws.Cell("N16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("N16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("N16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("N16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("N16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("N16").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 230, 153);
|
||||
ws.Cell("N16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("O15:P15").Merge().Value = "2569";
|
||||
ws.Range("O15:P15").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("O15:P15").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("O15:P15").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("O15:P15").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("O15:P15").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 230, 153);
|
||||
ws.Range("O15:P15").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("O16").Value = "อัตรา";
|
||||
ws.Cell("O16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("O16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("O16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("O16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("O16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("O16").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 230, 153);
|
||||
ws.Cell("O16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Cell("P16").Value = "งบประมาณ";
|
||||
ws.Cell("P16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Cell("P16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Cell("P16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Cell("P16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Cell("P16").Style.Alignment.WrapText = true;
|
||||
ws.Cell("P16").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 230, 153);
|
||||
ws.Cell("P16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
ws.Range("Q14:U16").Merge().Value = "คำชี้แจง";
|
||||
ws.Range("Q14:U16").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||
ws.Range("Q14:U16").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||
ws.Range("Q14:U16").Style.Font.FontName = "TH SarabunPSK";
|
||||
ws.Range("Q14:U16").Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range("Q14:U16").Style.Fill.BackgroundColor = XLColor.FromArgb(252, 228, 214);
|
||||
ws.Range("Q14:U16").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
//ws.Range(ws.Cell(4, 2), ws.Cell(4, 6)).Style.Alignment.WrapText = true;
|
||||
|
||||
|
||||
foreach (var detail in personnel.set_personnel_budget_permanent_details)
|
||||
{
|
||||
if (detail.topic_type == 1)
|
||||
{
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Merge().Value = detail.topic;
|
||||
ws.Range(ws.Cell(row, 17), ws.Cell(row, 21)).Merge();
|
||||
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Font.SetBold().Font.FontSize = 16;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Alignment.WrapText = true;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
//ws.Range(ws.Cell(row, 2), ws.Cell(row, 6)).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 6)).Style.Border.OutsideBorder =
|
||||
XLBorderStyleValues.Thin;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
|
||||
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, 17), ws.Cell(row, 21)).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
row++;
|
||||
}
|
||||
|
||||
if (detail.topic_type == 2)
|
||||
{
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Merge().Value = detail.topic;
|
||||
ws.Cell(row, 5).Value = detail.act_rate;
|
||||
ws.Cell(row, 6).Value = detail.act_budget;
|
||||
ws.Cell(row, 7).Value = detail.request_rate;
|
||||
ws.Cell(row, 8).Value = detail.request_budget;
|
||||
ws.Cell(row, 9).Value = detail.offer_request_rate;
|
||||
ws.Cell(row, 10).Value = detail.offer_request_budget;
|
||||
ws.Cell(row, 11).Value = detail.mtef_rate_year_1;
|
||||
ws.Cell(row, 12).Value = detail.mtef_budget_year_1;
|
||||
ws.Cell(row, 13).Value = detail.mtef_rate_year_2;
|
||||
ws.Cell(row, 14).Value = detail.mtef_budget_year_2;
|
||||
ws.Cell(row, 15).Value = detail.mtef_rate_year_3;
|
||||
ws.Cell(row, 16).Value = detail.mtef_budget_year_3;
|
||||
ws.Range(ws.Cell(row, 17), ws.Cell(row, 21)).Merge().Value = detail.remark;
|
||||
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Font.SetBold().Font.FontSize = 14;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Alignment.WrapText = true;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 5), ws.Cell(row, 12)).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 6)).Style.Border.OutsideBorder =
|
||||
XLBorderStyleValues.Thin;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 5), ws.Cell(row, 16)).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Range(ws.Cell(row, 17), ws.Cell(row, 21)).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
|
||||
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, 17), ws.Cell(row, 21)).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
row++;
|
||||
}
|
||||
|
||||
if (detail.topic_type == 3)
|
||||
{
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Merge().Value = " " + detail.topic;
|
||||
ws.Cell(row, 5).Value = detail.act_rate;
|
||||
ws.Cell(row, 6).Value = detail.act_budget;
|
||||
ws.Cell(row, 7).Value = detail.request_rate;
|
||||
ws.Cell(row, 8).Value = detail.request_budget;
|
||||
ws.Cell(row, 9).Value = detail.offer_request_rate;
|
||||
ws.Cell(row, 10).Value = detail.offer_request_budget;
|
||||
ws.Cell(row, 11).Value = detail.mtef_rate_year_1;
|
||||
ws.Cell(row, 12).Value = detail.mtef_budget_year_1;
|
||||
ws.Cell(row, 13).Value = detail.mtef_rate_year_2;
|
||||
ws.Cell(row, 14).Value = detail.mtef_budget_year_2;
|
||||
ws.Cell(row, 15).Value = detail.mtef_rate_year_3;
|
||||
ws.Cell(row, 16).Value = detail.mtef_budget_year_3;
|
||||
ws.Range(ws.Cell(row, 17), ws.Cell(row, 21)).Merge().Value = detail.remark;
|
||||
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Font.FontName =
|
||||
"TH SarabunPSK";
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Font.FontSize = 14;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Alignment.WrapText = true;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Alignment.Vertical =
|
||||
XLAlignmentVerticalValues.Center;
|
||||
ws.Range(ws.Cell(row, 5), ws.Cell(row, 12)).Style.NumberFormat.SetFormat("#,#0");
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 6)).Style.Border.OutsideBorder =
|
||||
XLBorderStyleValues.Thin;
|
||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 4)).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
ws.Range(ws.Cell(row, 5), ws.Cell(row, 16)).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||
ws.Range(ws.Cell(row, 17), ws.Cell(row, 21)).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||
|
||||
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, 17), ws.Cell(row, 21)).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||
row++;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
using (var stream1 = new MemoryStream())
|
||||
{
|
||||
workbook.SaveAs(stream1);
|
||||
var content = stream1.ToArray();
|
||||
string date = DateTime.Now.ToString("yyyyMMddHHmmss");
|
||||
return File(
|
||||
content,
|
||||
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
"set_personnel_budget_permanent_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
74
Models/Personnel/set_personnel_budget_permanent.cs
Normal file
74
Models/Personnel/set_personnel_budget_permanent.cs
Normal file
@@ -0,0 +1,74 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace rmutr_report.Models.Personnel
|
||||
{
|
||||
public class set_personnel_budget_permanent
|
||||
{
|
||||
[Key] public Guid? set_personnel_budget_permanent_uid { get; set; }
|
||||
|
||||
|
||||
public string academic_year_name_th { get; set; }
|
||||
|
||||
//
|
||||
public string ministry_name_th { get; set; }
|
||||
|
||||
//
|
||||
public string agency_name_th { get; set; }
|
||||
|
||||
//
|
||||
public decimal? calculate_regular_wages_rate { get; set; }
|
||||
|
||||
public decimal? calculate_regular_wages_budget { get; set; }
|
||||
|
||||
//
|
||||
public decimal? act_old1 { get; set; }
|
||||
public decimal? disbursement_year_act_old1 { get; set; }
|
||||
public decimal? disbursement_year_act_old1_percent { get; set; }
|
||||
public decimal? remaining_act_old1 { get; set; }
|
||||
|
||||
public decimal? remaining_act_old1_percent { get; set; }
|
||||
|
||||
//
|
||||
public decimal? act_old2 { get; set; }
|
||||
public decimal? actually_paid { get; set; }
|
||||
public decimal? actually_paid_percent { get; set; }
|
||||
public decimal? remaining_act_old2 { get; set; }
|
||||
public decimal? remaining_act_old2_percent { get; set; }
|
||||
|
||||
//
|
||||
public decimal? average_per_month1 { get; set; }
|
||||
|
||||
public decimal? average_per_month2 { get; set; }
|
||||
//
|
||||
|
||||
public DateTime? version { get; set; }
|
||||
|
||||
public List<t_set_personnel_budget_permanent_detail> set_personnel_budget_permanent_details { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class t_set_personnel_budget_permanent_detail
|
||||
{
|
||||
[Key] public Guid? set_personnel_budget_temporary_detail_uid { get; set; }
|
||||
public Guid? set_personnel_budget_temporary_uid { get; set; }
|
||||
public string topic { get; set; }
|
||||
public decimal? act_rate { get; set; }
|
||||
public decimal? act_budget { get; set; }
|
||||
public decimal? request_rate { get; set; }
|
||||
public decimal? request_budget { get; set; }
|
||||
public decimal? offer_request_rate { get; set; }
|
||||
public decimal? offer_request_budget { get; set; }
|
||||
public decimal? mtef_rate_year_1 { get; set; }
|
||||
public decimal? mtef_budget_year_1 { get; set; }
|
||||
public decimal? mtef_rate_year_2 { get; set; }
|
||||
public decimal? mtef_budget_year_2 { get; set; }
|
||||
public decimal? mtef_rate_year_3 { get; set; }
|
||||
public decimal? mtef_budget_year_3 { get; set; }
|
||||
public string remark { get; set; }
|
||||
public int? topic_type { get; set; }
|
||||
public int? row { get; set; }
|
||||
}
|
||||
}
|
||||
92
Models/budget/budget_expenditure_from_revenue.cs
Normal file
92
Models/budget/budget_expenditure_from_revenue.cs
Normal file
@@ -0,0 +1,92 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class budget_expenditure_from_revenue
|
||||
{
|
||||
[Key] public Guid? budget_expenditure_from_revenue_uid { get; set; }
|
||||
|
||||
// public Guid? academic_year_uid { get; set; }
|
||||
public string academic_year_name_th { get; set; }
|
||||
|
||||
public string start_and_end_date_report { get; set; }
|
||||
|
||||
//
|
||||
public string education_level_and_year { get; set; }
|
||||
|
||||
//
|
||||
public string faculty_name_th { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
public string branch_name_th { get; set; }
|
||||
|
||||
public string curriculum_name_th { get; set; }
|
||||
|
||||
//
|
||||
public double? set_revenue_estimates { get; set; }
|
||||
|
||||
public DateTime? version { get; set; }
|
||||
public List<t_budget_expenditure_from_revenue_detail> budget_expenditure_from_revenue_details { get; set; }
|
||||
public decimal? sum_1 { get; set; }
|
||||
public decimal? sum_2 { get; set; }
|
||||
public decimal? sum_3 { get; set; }
|
||||
public decimal? sum_4 { get; set; }
|
||||
public decimal? sum_5 { get; set; }
|
||||
public decimal? sum_6 { get; set; }
|
||||
public decimal? sum_7 { get; set; }
|
||||
public decimal? sum_8 { get; set; }
|
||||
public decimal? sum_9 { get; set; }
|
||||
public decimal? sum_10 { get; set; }
|
||||
public decimal? sum_11 { get; set; }
|
||||
public decimal? sum_12 { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class t_budget_expenditure_from_revenue_detail
|
||||
{
|
||||
[Key] public Guid? budget_expenditure_from_revenue_detail_uid { get; set; }
|
||||
|
||||
public Guid? budget_expenditure_from_revenue_uid { get; set; }
|
||||
public string topic { get; set; }
|
||||
public string topic_1 { get; set; }
|
||||
public string topic_2 { get; set; }
|
||||
public string academic_year_name_th { get; set; }
|
||||
public decimal? current_students { get; set; }
|
||||
public decimal? students_reduced { get; set; }
|
||||
public decimal? students_estimates { get; set; }
|
||||
public decimal? price_regis_flat_payment_per_student { get; set; }
|
||||
public decimal? price_regis_flat_payment { get; set; }
|
||||
|
||||
public decimal? library_per_student { get; set; }
|
||||
public decimal? library_total { get; set; }
|
||||
|
||||
public decimal? utilities_per_student { get; set; }
|
||||
public decimal? utilities_total { get; set; }
|
||||
|
||||
public decimal? student_club_per_student { get; set; }
|
||||
public decimal? student_club_library_total { get; set; }
|
||||
|
||||
public decimal? accident_insurance_per_student { get; set; }
|
||||
public decimal? accident_insurance_total { get; set; }
|
||||
|
||||
public decimal? academic_activities_per_student { get; set; }
|
||||
public decimal? academic_activities_total { get; set; }
|
||||
|
||||
public decimal? examination_and_x_rays_per_student { get; set; }
|
||||
public decimal? examination_and_x_rays_total { get; set; }
|
||||
|
||||
public decimal? tuition_fee_per_student { get; set; }
|
||||
public decimal? tuition_fee_total { get; set; }
|
||||
|
||||
public decimal? tuition_less_fee_per_student { get; set; }
|
||||
public decimal? education_fee_less_fee_total { get; set; }
|
||||
|
||||
|
||||
public int? topic_type { get; set; }
|
||||
public DateTime? version { get; set; }
|
||||
public Guid? semester_uid { get; set; }
|
||||
public Guid? academic_year_uid { get; set; }
|
||||
public int? row { get; set; }
|
||||
}
|
||||
}
|
||||
56
Models/budget/revenue_estimates.cs
Normal file
56
Models/budget/revenue_estimates.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class revenue_estimates
|
||||
{
|
||||
[Key] public Guid? revenue_estimates_uid { get; set; }
|
||||
|
||||
// public Guid? academic_year_uid { get; set; }
|
||||
public string academic_year_name_th { get; set; }
|
||||
|
||||
public string start_and_end_date_report { get; set; }
|
||||
|
||||
//
|
||||
public string education_level { get; set; }
|
||||
|
||||
//
|
||||
public string faculty_name_th { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
|
||||
|
||||
//
|
||||
public string author_name { get; set; }
|
||||
public string position_name { get; set; }
|
||||
public string phone { get; set; }
|
||||
|
||||
public DateTime? version { get; set; }
|
||||
public List<t_revenue_estimates_detail> revenue_estimates_details { get; set; }
|
||||
}
|
||||
|
||||
public class t_revenue_estimates_detail
|
||||
{
|
||||
[Key] public Guid? revenue_estimates_detail_uid { get; set; }
|
||||
|
||||
public Guid? revenue_estimates_uid { get; set; }
|
||||
public string topic { get; set; }
|
||||
public string academic_year_name_th { get; set; }
|
||||
public decimal? revenue_estimates { get; set; }
|
||||
public decimal? less_revenue_estimates { get; set; }
|
||||
public decimal? balance_revenue_estimates { get; set; }
|
||||
public decimal? less_accumulated_income { get; set; }
|
||||
public decimal? balance_before_allocating_according { get; set; }
|
||||
public decimal? contribution_utility_bills { get; set; }
|
||||
public decimal? contribution_central_budget { get; set; }
|
||||
public decimal? contribution_central_expenditure { get; set; }
|
||||
public decimal? expenditure_limit { get; set; }
|
||||
|
||||
|
||||
public int? topic_type { get; set; }
|
||||
public DateTime? version { get; set; }
|
||||
public int? row { get; set; }
|
||||
public bool? is_footer { get; set; }
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
32437cb9474c992502a344fdffc9500682e05611
|
||||
7f4f85ac8a86e636a35d59d79ecb08dcff3edbb7
|
||||
|
||||
Binary file not shown.
Binary file not shown.
445
wwwroot/reports/budget_expenditure_from_revenue.frx
Normal file
445
wwwroot/reports/budget_expenditure_from_revenue.frx
Normal file
@@ -0,0 +1,445 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/10/2023 16:09:27" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="budget_expenditure_from_revenue" ReferenceName="budget_expenditure_from_revenue" DataType="null" Enabled="true">
|
||||
<Column Name="academic_year_name_th" DataType="System.String"/>
|
||||
<Column Name="start_and_end_date_report" DataType="System.String"/>
|
||||
<Column Name="education_level_and_year" DataType="System.String"/>
|
||||
<Column Name="faculty_name_th" DataType="System.String"/>
|
||||
<Column Name="agency_name_th" DataType="System.String"/>
|
||||
<Column Name="branch_name_th" DataType="System.String"/>
|
||||
<Column Name="curriculum_name_th" DataType="System.String"/>
|
||||
<Column Name="set_revenue_estimates" DataType="System.Double"/>
|
||||
<BusinessObjectDataSource Name="budget_expenditure_from_revenue_details" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="topic" DataType="System.String"/>
|
||||
<Column Name="topic_1" DataType="System.String"/>
|
||||
<Column Name="topic_2" DataType="System.String"/>
|
||||
<Column Name="academic_year_name_th" DataType="System.String"/>
|
||||
<Column Name="current_students" DataType="System.Decimal"/>
|
||||
<Column Name="students_reduced" DataType="System.Decimal"/>
|
||||
<Column Name="students_estimates" DataType="System.Decimal"/>
|
||||
<Column Name="price_regis_flat_payment_per_student" DataType="System.Decimal"/>
|
||||
<Column Name="price_regis_flat_payment" DataType="System.Decimal"/>
|
||||
<Column Name="library_per_student" DataType="System.Decimal"/>
|
||||
<Column Name="library_total" DataType="System.Decimal"/>
|
||||
<Column Name="utilities_per_student" DataType="System.Decimal"/>
|
||||
<Column Name="utilities_total" DataType="System.Decimal"/>
|
||||
<Column Name="student_club_per_student" DataType="System.Decimal"/>
|
||||
<Column Name="student_club_library_total" DataType="System.Decimal"/>
|
||||
<Column Name="accident_insurance_per_student" DataType="System.Decimal"/>
|
||||
<Column Name="accident_insurance_total" DataType="System.Decimal"/>
|
||||
<Column Name="academic_activities_per_student" DataType="System.Decimal"/>
|
||||
<Column Name="academic_activities_total" DataType="System.Decimal"/>
|
||||
<Column Name="examination_and_x_rays_per_student" DataType="System.Decimal"/>
|
||||
<Column Name="examination_and_x_rays_total" DataType="System.Decimal"/>
|
||||
<Column Name="tuition_fee_per_student" DataType="System.Decimal"/>
|
||||
<Column Name="tuition_fee_total" DataType="System.Decimal"/>
|
||||
<Column Name="tuition_less_fee_per_student" DataType="System.Decimal"/>
|
||||
<Column Name="education_fee_less_fee_total" DataType="System.Decimal"/>
|
||||
<Column Name="topic_type" DataType="System.Int32"/>
|
||||
</BusinessObjectDataSource>
|
||||
<Column Name="sum_1" DataType="System.Decimal"/>
|
||||
<Column Name="sum_2" DataType="System.Decimal"/>
|
||||
<Column Name="sum_3" DataType="System.Decimal"/>
|
||||
<Column Name="sum_4" DataType="System.Decimal"/>
|
||||
<Column Name="sum_5" DataType="System.Decimal"/>
|
||||
<Column Name="sum_6" DataType="System.Decimal"/>
|
||||
<Column Name="sum_7" DataType="System.Decimal"/>
|
||||
<Column Name="sum_8" DataType="System.Decimal"/>
|
||||
<Column Name="sum_9" DataType="System.Decimal"/>
|
||||
<Column Name="sum_10" DataType="System.Decimal"/>
|
||||
<Column Name="sum_11" DataType="System.Decimal"/>
|
||||
<Column Name="sum_12" DataType="System.Decimal"/>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="570" PaperHeight="500" Watermark.Font="Arial, 60pt">
|
||||
<PageHeaderBand Name="PageHeader1" Width="2079" Height="255.15">
|
||||
<TextObject Name="Text40" Width="2079" Height="37.8" Text="งบประมาณรายจ่ายจากเงินรายได้ ประจำปีงบประมาณ พ.ศ. [budget_expenditure_from_revenue.academic_year_name_th] ( [budget_expenditure_from_revenue.start_and_end_date_report] )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table15" Top="122.85" Width="2079" Height="132.3" Border.Lines="All">
|
||||
<TableColumn Name="Column110" Width="302.4"/>
|
||||
<TableColumn Name="Column111" Width="75.6"/>
|
||||
<TableColumn Name="Column192" Width="75.6"/>
|
||||
<TableColumn Name="Column193" Width="75.6"/>
|
||||
<TableColumn Name="Column194" Width="85.05"/>
|
||||
<TableColumn Name="Column195" Width="85.05"/>
|
||||
<TableColumn Name="Column196" Width="85.05"/>
|
||||
<TableColumn Name="Column197" Width="1001.7"/>
|
||||
<TableColumn Name="Column198" Width="151.2"/>
|
||||
<TableColumn Name="Column199" Width="141.75"/>
|
||||
<TableRow Name="Row15" Height="132.3">
|
||||
<TableCell Name="Cell170" Border.Lines="All" Text="หลักสูตร / สาขาวิชา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold">
|
||||
<TextObject Name="Text43" Top="113.4" Width="302.4" Height="18.9" Text="( 1 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell171" Border.Lines="All" Text="ปีการ ศึกษา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold">
|
||||
<TextObject Name="Text44" Top="113.4" Width="75.6" Height="18.9" Text="( 2 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell252" Border.Lines="All" Text="จำนวน นักศึกษา ปัจจุบัน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold">
|
||||
<TextObject Name="Text45" Top="113.4" Width="75.6" Height="18.9" Text="( 3 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell253" Border.Lines="All" Text="จำนวน นักศึกษา ปรับลด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold">
|
||||
<TextObject Name="Text47" Top="113.4" Width="75.6" Height="18.9" Text="( 4 )=( 3 ) x 10%" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell254" Border.Lines="All" Text="จำนวน นักศึกษา ประมาณการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold">
|
||||
<TextObject Name="Text48" Top="113.4" Width="85.05" Height="18.9" Text="(5)=(3)-(4)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell255" Border.Lines="All" Text="ค่าลง ทะเบียนแบบ เหมาจ่าย/คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold">
|
||||
<TextObject Name="Text49" Top="113.4" Width="85.05" Height="18.9" Text="( 6 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell256" Border.Lines="All" Text="รวมค่าลงทะเบียน แบบเหมาจ่าย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 13.5pt, style=Bold">
|
||||
<TextObject Name="Text50" Top="113.4" Width="85.05" Height="18.9" Text="( 7 )=(5) x (6)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell257" Border.Lines="All" Text="ค่าธรรมเนียมการศึกษา" HorzAlign="Center" Font="TH Sarabun New, 14pt, style=Bold">
|
||||
<TextObject Name="Text46" Top="113.4" Width="66.15" Height="18.9" Text="( 8 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text51" Left="66.15" Top="113.4" Width="66.15" Height="18.9" Border.Lines="Left, Right" Text="( 9 )=(5) x (8)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text52" Left="132.3" Top="113.4" Width="66.15" Height="18.9" Text="( 10 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TextObject Name="Text53" Left="198.45" Top="113.4" Width="66.15" Height="18.9" Border.Lines="Left, Right" Text="(11)=(5) x (10)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text54" Left="264.6" Top="113.4" Width="66.15" Height="18.9" Border.Lines="Right" Text="( 12 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text55" Left="330.75" Top="113.4" Width="66.15" Height="18.9" Border.Lines="Right" Text="(13)=(5) x (12)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text56" Left="396.9" Top="113.4" Width="66.15" Height="18.9" Border.Lines="Right" Text="( 14 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text57" Left="463.05" Top="113.4" Width="66.15" Height="18.9" Border.Lines="Right" Text="(15)=(5) x (14)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text58" Left="529.2" Top="113.4" Width="66.15" Height="18.9" Border.Lines="Right" Text="( 16 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text59" Left="595.35" Top="113.4" Width="66.15" Height="18.9" Border.Lines="Right" Text="(17)=(5) x (16)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text60" Left="661.5" Top="113.4" Width="66.15" Height="18.9" Border.Lines="Right" Text="( 18 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text61" Left="727.65" Top="113.4" Width="66.15" Height="18.9" Border.Lines="Right" Text="(19)=(5) x (18)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text63" Left="897.75" Top="113.4" Width="103.95" Height="18.9" Border.Lines="Right" Text="( 21 )=( 5 ) x ( 20 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
<TextObject Name="Text62" Left="793.8" Top="113.4" Width="103.95" Height="18.9" Border.Lines="Right" Text="(20)=(8)-(10)-(12)-(14)-(16)-(18)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 7.5pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell258" Border.Lines="All" Text="ค่าบำรุงการศึกษา หักค่าธรรมเนียม /คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold">
|
||||
<TextObject Name="Text64" Top="103.95" Width="151.2" Height="28.35" Border.Lines="Right" Text="(22)=(9)-(11)-(13)- (15)-(17)-(19)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell259" Border.Lines="All" Text="ประมาณการรายรับจาก ค่าบำรุงการศึกษา หักค่าธรรมเนียม ภาคการศึกษาที่ 2/2566" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold">
|
||||
<TextObject Name="Text65" Top="103.95" Width="141.75" Height="28.35" Text="( 23 )=( 5 ) x ( 22 )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text41" Top="37.8" Width="2079" Height="37.8" Text="ประมาณการรายรับจากการจัดการศึกษา ระดับปริญญาตรี ( ภาคปกติ ) ภาคการศึกษาที่ [budget_expenditure_from_revenue.education_level_and_year]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text42" Top="75.6" Width="2079" Height="37.8" Text="[budget_expenditure_from_revenue.faculty_name_th] พื้นที่ [budget_expenditure_from_revenue.agency_name_th] [budget_expenditure_from_revenue.branch_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table18" Left="784.35" Top="151.2" Width="793.8" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column200" Width="132.3"/>
|
||||
<TableColumn Name="Column201" Width="132.3"/>
|
||||
<TableColumn Name="Column202" Width="132.3"/>
|
||||
<TableColumn Name="Column203" Width="132.3"/>
|
||||
<TableColumn Name="Column204" Width="132.3"/>
|
||||
<TableColumn Name="Column205" Width="132.3"/>
|
||||
<TableRow Name="Row18" Height="47.25">
|
||||
<TableCell Name="Cell260" Border.Lines="All" Text="ค่าบำรุงห้องสมุด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell261" Border.Lines="All" Text="ค่าสาธารณูปโภค" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell262" Border.Lines="All" Text="ค่าสโมสรนักศึกษา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell263" Border.Lines="All" Text="ค่าประกันอุบัติเหตุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell264" Border.Lines="All" Text="ค่ากิจกรรมวิชาการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell265" Border.Lines="All" Text="ค่าตรวจโรคและ เอ็กซเรย์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table19" Left="784.35" Top="198.45" Width="132.3" Height="37.8" Border.Lines="All">
|
||||
<TableColumn Name="Column206"/>
|
||||
<TableColumn Name="Column207"/>
|
||||
<TableRow Name="Row19" Height="37.8">
|
||||
<TableCell Name="Cell266" Border.Lines="All" Text="ต่อคน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell267" Border.Lines="All" Text="รวมเงิน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table20" Left="916.65" Top="198.45" Width="132.3" Height="37.8" Border.Lines="All">
|
||||
<TableColumn Name="Column208"/>
|
||||
<TableColumn Name="Column209"/>
|
||||
<TableRow Name="Row20" Height="37.8">
|
||||
<TableCell Name="Cell268" Border.Lines="All" Text="ต่อคน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell269" Border.Lines="All" Text="รวมเงิน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table21" Left="1048.95" Top="198.45" Width="132.3" Height="37.8" Border.Lines="All">
|
||||
<TableColumn Name="Column210"/>
|
||||
<TableColumn Name="Column211"/>
|
||||
<TableRow Name="Row21" Height="37.8">
|
||||
<TableCell Name="Cell270" Border.Lines="All" Text="ต่อคน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell271" Border.Lines="All" Text="รวมเงิน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table22" Left="1181.25" Top="198.45" Width="132.3" Height="37.8" Border.Lines="All">
|
||||
<TableColumn Name="Column212"/>
|
||||
<TableColumn Name="Column213"/>
|
||||
<TableRow Name="Row22" Height="37.8">
|
||||
<TableCell Name="Cell272" Border.Lines="All" Text="ต่อคน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell273" Border.Lines="All" Text="รวมเงิน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table23" Left="1313.55" Top="198.45" Width="132.3" Height="37.8" Border.Lines="All">
|
||||
<TableColumn Name="Column214"/>
|
||||
<TableColumn Name="Column215"/>
|
||||
<TableRow Name="Row23" Height="37.8">
|
||||
<TableCell Name="Cell274" Border.Lines="All" Text="ต่อคน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell275" Border.Lines="All" Text="รวมเงิน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table24" Left="1445.85" Top="198.45" Width="132.3" Height="37.8" Border.Lines="All">
|
||||
<TableColumn Name="Column216"/>
|
||||
<TableColumn Name="Column217"/>
|
||||
<TableRow Name="Row24" Height="37.8">
|
||||
<TableCell Name="Cell276" Border.Lines="All" Text="ต่อคน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell277" Border.Lines="All" Text="รวมเงิน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table25" Left="1578.15" Top="151.2" Width="207.9" Height="85.05" Border.Lines="All">
|
||||
<TableColumn Name="Column218" Width="103.95"/>
|
||||
<TableColumn Name="Column219" Width="103.95"/>
|
||||
<TableRow Name="Row25" Height="85.05">
|
||||
<TableCell Name="Cell278" Border.Lines="All" Text="รวมค่า ธรรมเนียม การศึกษา / คน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell279" Border.Lines="All" Text="รวมค่าธรรมเนียม การศึกษาทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="262.99" Width="2079">
|
||||
<DataBand Name="Data2" Top="270.84" Width="2079" Height="47.25" DataSource="budget_expenditure_from_revenue_details">
|
||||
<TableObject Name="Table17" Width="2079" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column131" Width="236.25"/>
|
||||
<TableColumn Name="Column132"/>
|
||||
<TableColumn Name="Column133" Width="75.6"/>
|
||||
<TableColumn Name="Column134" Width="75.6"/>
|
||||
<TableColumn Name="Column135" Width="75.6"/>
|
||||
<TableColumn Name="Column136" Width="85.05"/>
|
||||
<TableColumn Name="Column137" Width="85.05"/>
|
||||
<TableColumn Name="Column138" Width="85.05"/>
|
||||
<TableColumn Name="Column139"/>
|
||||
<TableColumn Name="Column140"/>
|
||||
<TableColumn Name="Column141"/>
|
||||
<TableColumn Name="Column142"/>
|
||||
<TableColumn Name="Column143"/>
|
||||
<TableColumn Name="Column144"/>
|
||||
<TableColumn Name="Column145"/>
|
||||
<TableColumn Name="Column146"/>
|
||||
<TableColumn Name="Column147"/>
|
||||
<TableColumn Name="Column148"/>
|
||||
<TableColumn Name="Column149"/>
|
||||
<TableColumn Name="Column188"/>
|
||||
<TableColumn Name="Column189" Width="103.95"/>
|
||||
<TableColumn Name="Column190" Width="103.95"/>
|
||||
<TableColumn Name="Column191" Width="151.2"/>
|
||||
<TableColumn Name="Column220" Width="141.75"/>
|
||||
<TableRow Name="Row17" Height="47.25">
|
||||
<TableCell Name="Cell191" Border.Lines="Left, Top, Bottom" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_1]" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell192" Border.Lines="Right, Top, Bottom" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell193" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.academic_year_name_th]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell194" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.current_students]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell195" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.students_reduced]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell196" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.students_estimates]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell197" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.price_regis_flat_payment_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell198" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.price_regis_flat_payment]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell199" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.library_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell200" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.library_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell201" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.utilities_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell202" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.utilities_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell203" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.student_club_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell204" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.student_club_library_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell205" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.accident_insurance_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell206" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.accident_insurance_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell207" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.academic_activities_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell208" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.academic_activities_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell209" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.examination_and_x_rays_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell248" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.examination_and_x_rays_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell249" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.tuition_fee_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell250" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.tuition_fee_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell251" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.tuition_less_fee_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell280" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.education_fee_less_fee_total]" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
</DataBand>
|
||||
<ReportSummaryBand Name="ReportSummary1" Top="325.93" Width="2079" Height="151.2">
|
||||
<TableObject Name="Table26" Width="2079" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column221" Width="217.35"/>
|
||||
<TableColumn Name="Column222" Width="85.05"/>
|
||||
<TableColumn Name="Column223" Width="75.6"/>
|
||||
<TableColumn Name="Column224" Width="75.6"/>
|
||||
<TableColumn Name="Column225" Width="75.6"/>
|
||||
<TableColumn Name="Column226" Width="85.05"/>
|
||||
<TableColumn Name="Column227" Width="85.05"/>
|
||||
<TableColumn Name="Column228" Width="85.05"/>
|
||||
<TableColumn Name="Column229"/>
|
||||
<TableColumn Name="Column230"/>
|
||||
<TableColumn Name="Column231"/>
|
||||
<TableColumn Name="Column232"/>
|
||||
<TableColumn Name="Column233"/>
|
||||
<TableColumn Name="Column234"/>
|
||||
<TableColumn Name="Column235"/>
|
||||
<TableColumn Name="Column236"/>
|
||||
<TableColumn Name="Column237"/>
|
||||
<TableColumn Name="Column238"/>
|
||||
<TableColumn Name="Column239"/>
|
||||
<TableColumn Name="Column240"/>
|
||||
<TableColumn Name="Column241" Width="103.95"/>
|
||||
<TableColumn Name="Column242" Width="103.95"/>
|
||||
<TableColumn Name="Column243" Width="151.2"/>
|
||||
<TableColumn Name="Column244" Width="141.75"/>
|
||||
<TableRow Name="Row26" Height="47.25">
|
||||
<TableCell Name="Cell281" Border.Lines="Left, Top, Bottom" Fill.Color="255, 217, 102" Text="รวม" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" ColSpan="2"/>
|
||||
<TableCell Name="Cell282" Border.Lines="Right, Top, Bottom" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell283" Border.Lines="All" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell284" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell285" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell286" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell287" Border.Lines="All" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell288" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell289" Border.Lines="All" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell290" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell291" Border.Lines="All" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell292" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell293" Border.Lines="All" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell294" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell295" Border.Lines="All" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell296" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell297" Border.Lines="All" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell298" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell299" Border.Lines="All" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell300" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell301" Border.Lines="All" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell302" Border.Lines="All" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_11]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell303" Border.Lines="All" Fill.Color="255, 217, 102" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell304" Fill.Color="255, 217, 102" Text="[budget_expenditure_from_revenue.sum_12]" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TextObject Name="Text66" Top="47.25" Width="2079" Height="103.95" Fill.Color="255, 224, 192" Text="หมายเหตุ : 1. ไม่รวมรายรับจากการจัดการศึกษาสหกิจศึกษา 2. ไม่รวมนักศึกษาทุนนักกีฬา 3. กองนโยบายและแผน จะตรวจสอบจำนวนนักศึกษาจากสำนักส่งเสริมวิชาการและงานทะเบียนอีกครั้ง" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold" TextFill.Color="Red"/>
|
||||
</ReportSummaryBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
179
wwwroot/reports/revenue_estimates.frx
Normal file
179
wwwroot/reports/revenue_estimates.frx
Normal file
@@ -0,0 +1,179 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/10/2023 16:18:49" ReportInfo.CreatorVersion="2021.1.0.0">
|
||||
<Dictionary>
|
||||
<BusinessObjectDataSource Name="revenue_estimates" ReferenceName="revenue_estimates" DataType="null" Enabled="true">
|
||||
<Column Name="academic_year_name_th" DataType="System.String"/>
|
||||
<Column Name="start_and_end_date_report" DataType="System.String"/>
|
||||
<Column Name="education_level" DataType="System.String"/>
|
||||
<Column Name="faculty_name_th" DataType="System.String"/>
|
||||
<Column Name="agency_name_th" DataType="System.String"/>
|
||||
<Column Name="author_name" DataType="System.String"/>
|
||||
<Column Name="position_name" DataType="System.String"/>
|
||||
<Column Name="phone" DataType="System.String"/>
|
||||
<BusinessObjectDataSource Name="revenue_estimates_details" DataType="System.Int32" Enabled="true">
|
||||
<Column Name="topic" DataType="System.String"/>
|
||||
<Column Name="academic_year_name_th" DataType="System.String"/>
|
||||
<Column Name="revenue_estimates" DataType="System.Decimal"/>
|
||||
<Column Name="less_revenue_estimates" DataType="System.Decimal"/>
|
||||
<Column Name="balance_revenue_estimates" DataType="System.Decimal"/>
|
||||
<Column Name="less_accumulated_income" DataType="System.Decimal"/>
|
||||
<Column Name="balance_before_allocating_according" DataType="System.Decimal"/>
|
||||
<Column Name="contribution_utility_bills" DataType="System.Decimal"/>
|
||||
<Column Name="contribution_central_budget" DataType="System.Decimal"/>
|
||||
<Column Name="contribution_central_expenditure" DataType="System.Decimal"/>
|
||||
<Column Name="expenditure_limit" DataType="System.Decimal"/>
|
||||
<Column Name="topic_type" DataType="System.Int32"/>
|
||||
</BusinessObjectDataSource>
|
||||
</BusinessObjectDataSource>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="380" PaperHeight="500" Watermark.Font="Arial, 60pt">
|
||||
<PageHeaderBand Name="PageHeader1" Width="1360.8" Height="255.15">
|
||||
<TextObject Name="Text40" Width="1332.45" Height="37.8" Text="งบประมาณรายจ่ายจากเงินรายได้ ประจำปีงบประมาณ พ.ศ. [revenue_estimates.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text41" Top="37.8" Width="1332.45" Height="37.8" Text="( [revenue_estimates.start_and_end_date_report] )" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text42" Top="75.6" Width="1332.45" Height="37.8" Text="สรุปประมาณการรายรับ และการจัดสรรตามเกณฑ์รายจ่าย การจัดการศึกษา[revenue_estimates.education_level]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text43" Top="113.4" Width="1332.45" Height="37.8" Text="คณะ/วิทยาลัย [revenue_estimates.faculty_name_th] พื้นที่ [revenue_estimates.agency_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table15" Top="160.65" Width="1285.2" Height="94.5" Border.Lines="All">
|
||||
<TableColumn Name="Column110" Width="396.9"/>
|
||||
<TableColumn Name="Column111" Width="75.6"/>
|
||||
<TableColumn Name="Column192" Width="75.6"/>
|
||||
<TableColumn Name="Column193" Width="75.6"/>
|
||||
<TableColumn Name="Column194" Width="85.05"/>
|
||||
<TableColumn Name="Column195" Width="85.05"/>
|
||||
<TableColumn Name="Column196" Width="85.05"/>
|
||||
<TableColumn Name="Column197" Width="113.4"/>
|
||||
<TableColumn Name="Column198" Width="151.2"/>
|
||||
<TableColumn Name="Column199" Width="141.75"/>
|
||||
<TableRow Name="Row15" Height="94.5">
|
||||
<TableCell Name="Cell170" Border.Lines="All" Text="ผลผลิต / ภาคการศึกษา / ภาคเรียน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell171" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell252" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell253" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell254" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell255" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell256" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell257" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell258" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
<TableCell Name="Cell259" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="262.99" Width="1360.8">
|
||||
<DataBand Name="Data2" Top="270.84" Width="1360.8" Height="47.25" CanShrink="true" DataSource="revenue_estimates_details">
|
||||
<TableObject Name="Table17" Width="1285.2" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column131" Width="396.9"/>
|
||||
<TableColumn Name="Column132" Width="75.6"/>
|
||||
<TableColumn Name="Column133" Width="75.6"/>
|
||||
<TableColumn Name="Column134" Width="75.6"/>
|
||||
<TableColumn Name="Column135" Width="85.05"/>
|
||||
<TableColumn Name="Column136" Width="85.05"/>
|
||||
<TableColumn Name="Column137" Width="85.05"/>
|
||||
<TableColumn Name="Column138" Width="113.4"/>
|
||||
<TableColumn Name="Column139" Width="151.2"/>
|
||||
<TableColumn Name="Column140" Width="141.75"/>
|
||||
<TableRow Name="Row17" Height="47.25">
|
||||
<TableCell Name="Cell191" Border.Lines="Left, Top, Bottom" Text="[revenue_estimates.revenue_estimates_details.topic]" AutoShrink="FontSize" AutoShrinkMinSize="11" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type]== 1" Fill.Color="255, 224, 192" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell192" Border.Lines="All" Text="[revenue_estimates.revenue_estimates_details.academic_year_name_th]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type]== 1" Fill.Color="255, 224, 192" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell193" Border.Lines="All" Text="[revenue_estimates.revenue_estimates_details.revenue_estimates]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type]== 1" Fill.Color="255, 224, 192" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell194" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type]== 1" Fill.Color="255, 224, 192" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell195" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type]== 1" Fill.Color="255, 224, 192" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell196" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type]== 1" Fill.Color="255, 224, 192" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell197" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type]== 1" Fill.Color="255, 224, 192" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell198" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type]== 1" Fill.Color="255, 224, 192" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell199" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type]== 1" Fill.Color="255, 224, 192" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell200" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
|
||||
<Highlight>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type]== 1" Fill.Color="255, 224, 192" Font="Arial, 10pt" ApplyFill="true" ApplyTextFill="false"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
|
||||
<Condition Expression="[revenue_estimates.revenue_estimates_details.topic_type] == 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
|
||||
</Highlight>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<DataFooterBand Name="DataFooter1" Top="325.93" Width="1360.8"/>
|
||||
</DataBand>
|
||||
<DataFooterBand Name="DataFooter2" Top="333.77" Width="1360.8" Height="113.4">
|
||||
<TextObject Name="Text44" Left="973.35" Top="75.6" Width="113.4" Height="37.8" Text="ลงชื่อ" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text45" Left="1228.5" Top="75.6" Width="113.4" Height="37.8" Text="ผู้จัดทำ" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TextObject Name="Text46" Left="1086.75" Top="75.6" Width="141.75" Height="37.8" Text="[revenue_estimates.author_name]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 16pt, style=Bold"/>
|
||||
<TableObject Name="Table18" Width="1285.2" Height="47.25" Border.Lines="All">
|
||||
<TableColumn Name="Column200" Width="396.9"/>
|
||||
<TableColumn Name="Column201" Width="75.6"/>
|
||||
<TableColumn Name="Column202" Width="75.6"/>
|
||||
<TableColumn Name="Column203" Width="75.6"/>
|
||||
<TableColumn Name="Column204" Width="85.05"/>
|
||||
<TableColumn Name="Column205" Width="85.05"/>
|
||||
<TableColumn Name="Column206" Width="85.05"/>
|
||||
<TableColumn Name="Column207" Width="113.4"/>
|
||||
<TableColumn Name="Column208" Width="151.2"/>
|
||||
<TableColumn Name="Column209" Width="141.75"/>
|
||||
<TableRow Name="Row18" Height="47.25">
|
||||
<TableCell Name="Cell260" Border.Lines="Left, Top, Bottom" Text="รวม" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TableCell Name="Cell261" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TableCell Name="Cell262" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TableCell Name="Cell263" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TableCell Name="Cell264" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TableCell Name="Cell265" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TableCell Name="Cell266" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TableCell Name="Cell267" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TableCell Name="Cell268" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
<TableCell Name="Cell269" Border.Lines="All" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataFooterBand>
|
||||
</DataBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
Reference in New Issue
Block a user