First Initial
This commit is contained in:
65
Views/rep_leave_summaryView/rep_leave_summary_report.cshtml
Normal file
65
Views/rep_leave_summaryView/rep_leave_summary_report.cshtml
Normal file
@@ -0,0 +1,65 @@
|
||||
@using Microsoft.Extensions.Configuration
|
||||
@inject IConfiguration Configuration
|
||||
@{
|
||||
ViewData["Title"] = "rep_leave_summary";
|
||||
}
|
||||
|
||||
<div class="row page-title">
|
||||
<div class="col-md-5">
|
||||
<div class="page-title">
|
||||
@Configuration["SiteInformation:modulename"]
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-7">
|
||||
<ol class="breadcrumb" style="">
|
||||
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:mainsite"]');">หน้าแรก</a></li>
|
||||
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">ระบบบริหารและควบคุมเวลาการทำงานของพนักงาน</a></li>
|
||||
<li class="breadcrumb-item active">รายงานสรุปวันลาพักผ่อนประจำปี</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="wrapper">
|
||||
<div class="title"><div class="line"></div>รายงานสรุปวันลาพักผ่อนประจำปี</div>
|
||||
<div class="tools">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="row">
|
||||
|
||||
<div class="form-group col-md-3">
|
||||
<label id='lab_s_rep_leave_summary_fiscal_year' for='s_rep_leave_summary_fiscal_year'>ปีงบประมาณ</label>
|
||||
<select class="form-control" id="s_rep_leave_summary_fiscal_year" iLabel="ปีงบประมาณ" iRequire="true" iGroup="s_rep_leave_summary" title='ปีงบประมาณ' placeholder='ปีงบประมาณ'></select>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-3">
|
||||
<label id='lab_s_rep_leave_summary_org_id' for='s_rep_leave_summary_org_id'>หน่วยงาน</label>
|
||||
<select class="form-control" id="s_rep_leave_summary_org_id" iLabel="หน่วยงาน" iRequire="true" iGroup="s_rep_leave_summary" title='หน่วยงาน' placeholder='หน่วยงาน'></select>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-3">
|
||||
<label id='lab_s_rep_leave_summary_employee_id' for='s_rep_leave_summary_employee_id'>ชื่อ - สกุล</label>
|
||||
<select class="form-control" id="s_rep_leave_summary_employee_id" iLabel="ชื่อ - สกุล" iRequire="true" iGroup="s_rep_leave_summary" title='ชื่อ - สกุล' placeholder='ชื่อ - สกุล'></select>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<button class="btn btn-info" onclick="javascript:rep_leave_summary_DoSearch('pdf');">แสดงรายงาน</button>
|
||||
<button class="btn btn-info" onclick="javascript:rep_leave_summary_DoSearch('xlsx');">ดาวน์โหลดเป็น Excel</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<br/>
|
||||
<iframe id="report_result" style="display:none; height:500px; width:100%;"></iframe>
|
||||
|
||||
@section FooterPlaceHolder{
|
||||
<script src="~/js/rep_leave_summary/rep_leave_summary_report.js"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
rep_leave_summary_InitialForm();
|
||||
SetupValidationRemark("s_rep_leave_summary");
|
||||
});
|
||||
</script>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user