ปรับปรุง รายงานประวัติการเลื่อนเงินเดือนรายบุคคล #1

This commit is contained in:
LAPTOP-KB8JC2K2\acer
2021-03-24 20:53:25 +07:00
parent aa9be494f7
commit 4859e4bdbd
16 changed files with 870 additions and 0 deletions

View File

@@ -26,6 +26,7 @@
<input class="form-control" type="hidden" id="s_rep_eva_self_review_all_employee_id" />
<div class="col-md-12">
<button class="btn btn-info" onclick="javascript:rep_eva_self_review_all_DoSearch('xlsx');">ดาวน์โหลดเป็น Excel</button>
<button class="btn btn-info" onclick="javascript:rep_eva_self_review_all_GoBack();">กลับ</button>
</div>
</div>
</div>

View File

@@ -0,0 +1,92 @@
@using Microsoft.Extensions.Configuration
@inject IConfiguration Configuration
@{
ViewData["Title"] = "vw_eva_performance_plan";
}
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>@Configuration["SiteInformation:modulename"]</h1>
</div>
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<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>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<!-- general form elements -->
<div class="card card-primary">
<div class="card-body">
<div class="row">
<div class="form-group col-md-3">
<label id='lab_s_vw_eva_performance_plan_fiscal_year' for='s_vw_eva_performance_plan_fiscal_year'>ปีงบประมาณ</label>
<input class="form-control" type="number" id="s_vw_eva_performance_plan_fiscal_year" iLabel="ปีงบประมาณ" iRequire="false" iGroup="s_vw_eva_performance_plan" title='ปีงบประมาณ' placeholder='ปีงบประมาณ' />
</div>
<div class="form-group col-md-3">
<label id='lab_s_vw_eva_performance_plan_theTime' for='s_vw_eva_performance_plan_theTime'>รอบการประเมินที่</label>
<input class="form-control" type="number" id="s_vw_eva_performance_plan_theTime" iLabel="รอบการประเมินที่" iRequire="false" iGroup="s_vw_eva_performance_plan" title='รอบการประเมินที่' placeholder='รอบการประเมินที่' />
</div>
<div class="form-group col-sm-3">
<button class="btn btn-info" onclick="javascript:vw_eva_performance_plan_DoSearch();"><i class="fa fa-search" style="font-size: 14px;"></i> ค้นหา</button>
<button class="btn btn-info" onclick="javascript:vw_eva_performance_plan_GoAll();"><i class="fa fa-search" style="font-size: 14px;"></i> ดูรายการทั้งหมด</button>
</div>
</div>
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
<!-- general form elements -->
<div class="card card-primary">
<div class="card-body">
<div class="row">
<div class="col-md-12">
<table id="vw_eva_performance_planTable" class="table table-hover text-nowrap">
<thead>
<tr>
<!--<th>เลือก</th>-->
<th>เครื่องมือ</th>
<th><label id='h_vw_eva_performance_plan_fiscal_year'>ปีงบประมาณ</label></th>
<th><label id='h_vw_eva_performance_plan_theTime'>รอบการประเมินที่</label></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</div><!-- /.container-fluid -->
</section>
<!-- /.content -->
@section FooterPlaceHolder{
<script src="~/js/vw_eva_performance_plan/vw_eva_performance_plan.js"></script>
<script>
$(document).ready(function () {
vw_eva_performance_plan_InitiateDataTable();
vw_eva_performance_plan_InitialForm();
SetupValidationRemark("vw_eva_performance_plan");
});
</script>
}