First Initial
This commit is contained in:
63
Views/external_employeeView/external_employee.cshtml
Normal file
63
Views/external_employeeView/external_employee.cshtml
Normal file
@@ -0,0 +1,63 @@
|
||||
@using Microsoft.Extensions.Configuration
|
||||
@inject IConfiguration Configuration
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "external_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="javascript:window_open_from_root('@Configuration["SiteInformation:mainsite"]');">หน้าแรก</a></li>
|
||||
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">@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="col-md-4">
|
||||
<input class="form-control" type="text" id="external_employee_search_box">
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
|
||||
<button class="btn btn-info" onclick="javascript:external_employee_DoSearch();">ค้นหา</button>
|
||||
<button class="btn btn-info" onclick="javascript:external_employee_GetSelect('id');">ดึงตัวเลือก</button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<table id="external_employeeTable" class="display table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>เลือก</th>
|
||||
<th><label id='h_external_employee_position_number'>เลขที่ตำแหน่ง</label></th>
|
||||
<th><label id='h_external_employee_position_name'>ชื่อตำแหน่ง</label></th>
|
||||
<th><label id='h_external_employee_fullname'>ชื่อ - สกุล</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
</section>
|
||||
|
||||
@section FooterPlaceHolder{
|
||||
<script src="~/js/external_employee/external_employee.js"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
external_employee_InitiateDataTable();
|
||||
setupUploadEvent();
|
||||
});
|
||||
</script>
|
||||
}
|
||||
|
||||
67
Views/external_employeeView/external_employee_admin.cshtml
Normal file
67
Views/external_employeeView/external_employee_admin.cshtml
Normal file
@@ -0,0 +1,67 @@
|
||||
@using Microsoft.Extensions.Configuration
|
||||
@inject IConfiguration Configuration
|
||||
@{
|
||||
ViewData["Title"] = "external_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="javascript:window_open_from_root('@Configuration["SiteInformation:mainsite"]');">หน้าแรก</a></li>
|
||||
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">@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="col-md-3">
|
||||
<input class="form-control" type="text" id="external_employee_search_box">
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<button class="btn btn-info" onclick="javascript:external_employee_DoSearch();">ค้นหา</button>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<select class="form-control" id="eva_performance_criteria_id"></select>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<button class="btn btn-info" onclick="javascript:external_employee_GetSelect('id');">เลือกบุคลากร</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<table id="external_employeeTable" class="display table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>เลือก</th>
|
||||
<th><label id='h_external_employee_position_number'>เลขที่ตำแหน่ง</label></th>
|
||||
<th><label id='h_external_employee_position_name'>ชื่อตำแหน่ง</label></th>
|
||||
<th><label id='h_external_employee_fullname'>ชื่อ - สกุล</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
@section FooterPlaceHolder{
|
||||
<script src="~/js/external_employee/external_employee_admin.js"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
external_employee_InitiateDataTable();
|
||||
external_employee_InitialForm(true);
|
||||
});
|
||||
</script>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user