จัดการหน้าค้นหารายชื่อพนักงาน
This commit is contained in:
82
Views/search_employeeView/search_employee.cshtml
Normal file
82
Views/search_employeeView/search_employee.cshtml
Normal file
@@ -0,0 +1,82 @@
|
||||
@using Microsoft.Extensions.Configuration
|
||||
@inject IConfiguration Configuration
|
||||
@{
|
||||
ViewData["Title"] = "search_employee";
|
||||
Layout = "_LayoutDirect";
|
||||
}
|
||||
|
||||
|
||||
<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="@Configuration["SiteInformation:mainsite"]">หน้าแรก</a></li>
|
||||
<li class="breadcrumb-item "><a href="@Configuration["SiteInformation:mainsite"]@Configuration["SiteInformation:appsite"]">@Configuration["SiteInformation:modulename"]</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="form-group col-md-3">
|
||||
<label id='lab_s_search_employee_eva_evaluation_group_id' for='s_search_employee_eva_evaluation_group_id'>กลุ่มการประเมิน</label>
|
||||
<select class="form-control" id="s_search_employee_eva_evaluation_group_id" iLabel="กลุ่มการประเมิน" iRequire="true" iGroup="s_search_employee" title='กลุ่มการประเมิน' placeholder='กลุ่มการประเมิน'></select>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-3">
|
||||
<label id='lab_s_search_employee_org_id' for='s_search_employee_org_id'>หน่วยงาน</label>
|
||||
<select class="form-control" id="s_search_employee_org_id" iLabel="หน่วยงาน" iRequire="true" iGroup="s_search_employee" title='หน่วยงาน' placeholder='หน่วยงาน'></select>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-3">
|
||||
<label id='lab_s_search_employee_fullname' for='s_search_employee_fullname'>ชื่อ-สกุล</label>
|
||||
<input class="form-control" type="text" id="s_search_employee_fullname" iLabel="ชื่อ-สกุล" iRequire="true" iGroup="s_search_employee" title='ชื่อ-สกุล' placeholder='ชื่อ-สกุล' />
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<button class="btn btn-info" onclick="javascript:search_employee_DoSearch();">ค้นหา</button>
|
||||
<button class="btn btn-info" onclick="javascript:search_employee_GetSelect('id');">ดึงตัวเลือก</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<button class="btn btn-info" onclick="javascript:search_employee_SelectAll();">เลือก ทั้งหมด</button>
|
||||
<button class="btn btn-info" onclick="javascript:search_employee_DeselectAll();">ไม่เลือก ทั้งหมด</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<table id="search_employeeTable" class="display table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th><label id='h_search_employee_employee_number'>รหัสพนักงาน</label></th>
|
||||
<th><label id='h_search_employee_fullname'>ชื่อ-สกุล</label></th>
|
||||
<th><label id='h_search_employee_position_name'>ตำแหน่ง</label></th>
|
||||
<th><label id='h_search_employee_level_name'>ระดับ</label></th>
|
||||
<th><label id='h_search_employee_org_id'>หน่วยงาน</label></th>
|
||||
<th><label id='h_search_employee_remark'>หมายเหตุ</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
</section>
|
||||
|
||||
|
||||
@section FooterPlaceHolder{
|
||||
<script src="~/js/search_employee/search_employee.js"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
search_employee_InitiateDataTable();
|
||||
search_employee_InitialForm();
|
||||
});
|
||||
</script>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user