First Initial
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
@using Microsoft.Extensions.Configuration
|
||||
@inject IConfiguration Configuration
|
||||
@{
|
||||
ViewData["Title"] = "eva_create_evaluation_detail_process";
|
||||
}
|
||||
|
||||
|
||||
<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">
|
||||
<input class="form-control" type="hidden" id="s_eva_create_evaluation_detail_process_create_evaluation_id" />
|
||||
|
||||
<div class="form-group col-md-3">
|
||||
<label id='lab_s_eva_create_evaluation_detail_process_org_id' for='s_eva_create_evaluation_detail_process_org_id'>หน่วยงาน</label>
|
||||
<select class="form-control" id="s_eva_create_evaluation_detail_process_org_id" iLabel="หน่วยงาน" iRequire="true" iGroup="s_eva_create_evaluation_detail_process" title='หน่วยงาน' placeholder='หน่วยงาน'></select>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-3">
|
||||
<label id='lab_s_eva_create_evaluation_detail_process_search_employee_code' for='s_eva_create_evaluation_detail_process_search_employee_code'>รหัสพนักงาน</label>
|
||||
<input class="form-control" type="text" id="s_eva_create_evaluation_detail_process_search_employee_code" iLabel="รหัสพนักงาน" iRequire="true" iGroup="s_eva_create_evaluation_detail_process" title='รหัสพนักงาน' placeholder='รหัสพนักงาน' />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-3">
|
||||
<label id='lab_s_eva_create_evaluation_detail_process_search_employee_fullname' for='s_eva_create_evaluation_detail_process_search_employee_fullname'>ชื่อ-สกุล</label>
|
||||
<input class="form-control" type="text" id="s_eva_create_evaluation_detail_process_search_employee_fullname" iLabel="ชื่อ-สกุล" iRequire="true" iGroup="s_eva_create_evaluation_detail_process" title='ชื่อ-สกุล' placeholder='ชื่อ-สกุล' />
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<button class="btn btn-info" onclick="javascript:eva_create_evaluation_detail_process_DoSearch();">ค้นหา</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<table id="eva_create_evaluation_detail_processTable" class="display table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>เครื่องมือ</th>
|
||||
|
||||
<th><label id='h_eva_create_evaluation_detail_process_employee_code'>รหัสพนักงาน</label></th>
|
||||
<th><label id='h_eva_create_evaluation_detail_process_employee_fullname'>ชื่อ-สกุล</label></th>
|
||||
<th><label id='h_eva_create_evaluation_detail_process_employee_position'>ตำแหน่ง</label></th>
|
||||
<th><label id='h_eva_create_evaluation_detail_process_employee_position_level'>ระดับตำแหน่ง</label></th>
|
||||
<th><label id='h_eva_create_evaluation_detail_process_employee_org'>หน่วยงาน</label></th>
|
||||
|
||||
<th><label>สถานะทำแบบประเมิน<br />(ผู้ประเมิน)</label></th>
|
||||
<th><label>สถานะทำแบบประเมิน<br />(ผู้ประเมินสูงสุด)</label></th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
</section>
|
||||
|
||||
@section FooterPlaceHolder{
|
||||
<script src="~/js/eva_create_evaluation_detail_process/eva_create_evaluation_detail_process.js"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
eva_create_evaluation_detail_process_InitiateDataTable();
|
||||
eva_create_evaluation_detail_process_InitialForm();
|
||||
SetupValidationRemark("eva_create_evaluation_detail_process");
|
||||
});
|
||||
</script>
|
||||
}
|
||||
|
||||
@@ -0,0 +1,334 @@
|
||||
@using Microsoft.Extensions.Configuration
|
||||
@inject IConfiguration Configuration
|
||||
@{
|
||||
ViewData["Title"] = "eva_create_evaluation_detail_process";
|
||||
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 col-md-12"><div class="line"></div>ประเมินผลเพื่อปรับเลื่อนเงินเดือน</div>
|
||||
|
||||
<section class="card no-border">
|
||||
<div class="card-body" style="">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_process_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_process_create_evaluation_id" />
|
||||
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_evaluation_round" for="eva_create_evaluation_detail_process_evaluation_round">รอบการประเมิน</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_evaluation_round" />
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_code" for="eva_create_evaluation_detail_process_employee_code">รหัสพนักงาน</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_code" />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_fullname" for="eva_create_evaluation_detail_process_employee_fullname">ชื่อ-สกุล</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_fullname" />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_position" for="eva_create_evaluation_detail_process_employee_position">ตำแหน่ง</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_position" />
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_position_type" for="eva_create_evaluation_detail_process_employee_position_type">ประเภทตำแหน่ง</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_position_type" />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_position_level" for="eva_create_evaluation_detail_process_employee_position_level">ระดับตำแหน่ง</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_position_level" />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_org" for="eva_create_evaluation_detail_process_employee_org">หน่วยงาน</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_org" />
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_chief_fullname" for="eva_create_evaluation_detail_process_chief_fullname">ชื่อผู้ประเมิน</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_chief_fullname" />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_chief_position" for="eva_create_evaluation_detail_process_chief_position">ตำแหน่งผู้ประเมิน</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_chief_position" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-12">
|
||||
<button type="button" class="btn btn-outline" onclick="javascript:window_close()" style="background-color: #fff;">กลับ</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<br/>
|
||||
|
||||
<section class="wrapper">
|
||||
<div class="title col-md-12"><div class="line"></div>ผลสัมฤทธิ์ของงาน</div>
|
||||
|
||||
<section class="card no-border">
|
||||
<div class="card-body" style="">
|
||||
<table id="eva_evaluation_achievement_processTable" class="display table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ลำดับ</th>
|
||||
|
||||
<th width="30%"><label>ผลสัมฤทธิ์ตัวชี้วัดผลงาน</label></th>
|
||||
<th><label>น้ำหนัก</label></th>
|
||||
|
||||
<th><label>1</label></th>
|
||||
<th><label>2</label></th>
|
||||
<th><label>3</label></th>
|
||||
<th><label>4</label></th>
|
||||
<th><label>5</label></th>
|
||||
|
||||
<th width="10%"><label>คะแนน</label></th>
|
||||
<th width="10%"><label>รวมคะแนน</label></th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th>รวม</th>
|
||||
|
||||
<th width="25%"><label id='h_eva_evaluation_achievement_process_achievement'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_weight'></label></th>
|
||||
|
||||
<th><label id='h_eva_evaluation_achievement_process_target_score1'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_target_score2'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_target_score3'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_target_score4'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process_target_score5'></label></th>
|
||||
|
||||
<th width="15%"><label id='h_eva_evaluation_achievement_process_score'></label></th>
|
||||
<th width="10%"><p id="eva_create_evaluation_detail_summary1_total_summary_chief" />
|
||||
</th>
|
||||
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody class="thin-border-bottom" id="eva_evaluation_achievement_processBody"></tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-12">
|
||||
<button type="button" class="btn btn-primary" onclick="javascript:eva_evaluation_achievement_process_Save(getUrlParameter('id'))">บันทึก</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
<br/>
|
||||
|
||||
<section class="wrapper">
|
||||
<div class="title col-md-12"><div class="line"></div>พฤติกรรมการปฏิบัติงาน (สมรรถนะ)</div>
|
||||
|
||||
<section class="card no-border">
|
||||
<div class="card-body" style="">
|
||||
<table id="eva_evaluation_behavior_processTable" class="display table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ลำดับ</th>
|
||||
<th><label>พฤติกรรมการปฏิบัติงาน</label></th>
|
||||
<th width="10%"><label>น้ำหนัก</label></th>
|
||||
<th width="7%"><label>1</label></th>
|
||||
<th width="7%"><label>2</label></th>
|
||||
<th width="7%"><label>3</label></th>
|
||||
<th width="7%"><label>4</label></th>
|
||||
<th width="7%"><label>5</label></th>
|
||||
<th width="15%"><label>คะแนน</label></th>
|
||||
<th width="10%"><label>รวมคะแนน</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th><label id='h_eva_evaluation_behavior_process_behavior'>รวม</label></th>
|
||||
<th width="10%"><label id='h_eva_evaluation_behavior_process_weight'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process_target_score1'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process_target_score2'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process_target_score3'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process_target_score4'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process_target_score5'></label></th>
|
||||
<th width="15%"><label id='h_eva_evaluation_behavior_process_score'></label></th>
|
||||
<th width="10%"><p id="eva_create_evaluation_detail_summary1_total_summary_competency_chief" />
|
||||
</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody class="thin-border-bottom" id="eva_evaluation_behavior_processBody"></tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-12">
|
||||
<button type="button" class="btn btn-primary" onclick="javascript:eva_evaluation_behavior_process_Save(getUrlParameter('id'))">บันทึก</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<br/>
|
||||
|
||||
<section class="wrapper">
|
||||
<div class="title col-md-12"><div class="line"></div>สรุปผลการประเมิน</div>
|
||||
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_summary1_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_summary1_create_evaluation_id" />
|
||||
|
||||
<table id="eva_evaluation_behavior_processTable" class="display table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><label>คะแนนประเมิน</label></th>
|
||||
<th><label>น้ำหนัก</label></th>
|
||||
<th><label>คะแนน</label></th>
|
||||
<th><label>รวมคะแนน</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="thin-border-bottom">
|
||||
<tr>
|
||||
<td>องค์ประกอบที่ 1 : ผลสัมฤทธิ์ของงาน</td>
|
||||
<td><p id="w1" /></td>
|
||||
<td><p id="eva_create_evaluation_detail_summary1_Final_summary_chief" /></td>
|
||||
<td><p id="eva_create_evaluation_detail_summary1_achievement_chief" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>องค์ประกอบที่ 2 : พฤติกรรมเชิงปฏิบัติงาน(สมรรถนะ)</td>
|
||||
<td><p id="w2" /></td>
|
||||
<td><p id="eva_create_evaluation_detail_summary1_Final_summary_competency_chief" /></td>
|
||||
<td><p id="eva_create_evaluation_detail_summary1_competency_chief" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>รวม</td>
|
||||
<td><p id="w3" /></td>
|
||||
<td></td>
|
||||
<td><p id="eva_create_evaluation_detail_summary1_score_chief" /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th><label>ระดับผลการประเมิน</label></th>
|
||||
<th colspan="3"><p id="eva_create_evaluation_detail_summary1_level_score_chief" /></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-12">
|
||||
<button type="button" class="btn btn-submit" onclick="javascript:eva_create_evaluation_detail_summary1_PutUpdate()">บันทึก</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<br/>
|
||||
|
||||
<section class="wrapper">
|
||||
<div class="title col-md-12"><div class="line"></div>ความเห็นผู้ประเมิน</div>
|
||||
|
||||
<section class="card no-border">
|
||||
<div class="card-body" style="">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_review01_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_review01_supervisor1" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_review01_create_evaluation_id" />
|
||||
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-6">
|
||||
<label id="lab_eva_create_evaluation_detail_review01_supervisor1_date" for="eva_create_evaluation_detail_review01_supervisor1_date">วันที่ประเมิน</label>
|
||||
<input class="form-control" type="text" id="eva_create_evaluation_detail_review01_supervisor1_date" data-provide="datepicker" data-date-language="th-th" iLabel="วันที่ประเมิน" iRequire="true" iGroup="eva_create_evaluation_detail_review01" />
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-12">
|
||||
<label id="lab_eva_create_evaluation_detail_review01_supervisor1_remark" for="eva_create_evaluation_detail_review01_supervisor1_remark">ความเห็นผู้ประเมิน</label>
|
||||
<textarea class="form-control" rows="4" cols="50" id="eva_create_evaluation_detail_review01_supervisor1_remark" iLabel="ความเห็นผู้ประเมิน" iRequire="true" iGroup="eva_create_evaluation_detail_review01"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_status_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_status_create_evaluation_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_status_status_self" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_status_status_chief" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_status_status_supervisor" />
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-12">
|
||||
<button type="button" class="btn btn-submit" onclick="javascript:eva_create_evaluation_detail_review01_PutUpdate()">บันทึก</button>
|
||||
|
||||
<button type="button" class="btn btn-submit" onclick="javascript:eva_create_evaluation_detail_status_PutUpdate('next1')">ส่งแบบประเมิน</button>
|
||||
|
||||
<button type="button" class="btn btn-submit" onclick="javascript:eva_create_evaluation_detail_status_PutUpdate('back1')">ตีกลับแบบประเมิน</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
@section FooterPlaceHolder{
|
||||
<script src="~/js/eva_create_evaluation_detail_process/eva_create_evaluation_detail_process_d.js"></script>
|
||||
<script src="~/js/eva_evaluation_achievement_process/eva_evaluation_achievement_process_inline.js"></script>
|
||||
<script src="~/js/eva_evaluation_behavior_process/eva_evaluation_behavior_process_inline.js"></script>
|
||||
<script src="~/js/eva_create_evaluation_detail_summary1/eva_create_evaluation_detail_summary1_d.js"></script>
|
||||
<script src="~/js/eva_create_evaluation_detail_review01/eva_create_evaluation_detail_review01_d.js"></script>
|
||||
<script src="~/js/eva_create_evaluation_detail_status/eva_create_evaluation_detail_status_d.js"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
var id = getUrlParameter("id");
|
||||
if (id) {
|
||||
eva_create_evaluation_detail_process_SetEditForm(id);
|
||||
eva_evaluation_achievement_process_InitialForm(id);
|
||||
eva_evaluation_behavior_process_InitialForm(id);
|
||||
eva_create_evaluation_detail_summary1_SetEditForm(id);
|
||||
eva_create_evaluation_detail_review01_SetEditForm(id);
|
||||
eva_create_evaluation_detail_status_SetEditForm(id);
|
||||
} else {
|
||||
eva_create_evaluation_detail_process_SetCreateForm();
|
||||
}
|
||||
SetupValidationRemark("eva_create_evaluation_detail_process");
|
||||
SetupValidationRemark("eva_create_evaluation_detail_review01");
|
||||
});
|
||||
</script>
|
||||
}
|
||||
|
||||
@@ -0,0 +1,380 @@
|
||||
@using Microsoft.Extensions.Configuration
|
||||
@inject IConfiguration Configuration
|
||||
@{
|
||||
ViewData["Title"] = "eva_create_evaluation_detail_process";
|
||||
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 col-md-12"><div class="line"></div>ประเมินผลเพื่อปรับเลื่อนเงินเดือน</div>
|
||||
|
||||
<section class="card no-border">
|
||||
<div class="card-body" style="">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_process_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_process_create_evaluation_id" />
|
||||
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_evaluation_round" for="eva_create_evaluation_detail_process_evaluation_round">รอบการประเมิน</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_evaluation_round" />
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_code" for="eva_create_evaluation_detail_process_employee_code">รหัสพนักงาน</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_code" />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_fullname" for="eva_create_evaluation_detail_process_employee_fullname">ชื่อ-สกุล</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_fullname" />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_position" for="eva_create_evaluation_detail_process_employee_position">ตำแหน่ง</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_position" />
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_position_type" for="eva_create_evaluation_detail_process_employee_position_type">ประเภทตำแหน่ง</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_position_type" />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_position_level" for="eva_create_evaluation_detail_process_employee_position_level">ระดับตำแหน่ง</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_position_level" />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_employee_org" for="eva_create_evaluation_detail_process_employee_org">หน่วยงาน</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_employee_org" />
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_chief_fullname" for="eva_create_evaluation_detail_process_chief_fullname">ชื่อผู้ประเมิน</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_chief_fullname" />
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label id="lab_eva_create_evaluation_detail_process_chief_position" for="eva_create_evaluation_detail_process_chief_position">ตำแหน่งผู้ประเมิน</label>
|
||||
<p class="form-control" id="eva_create_evaluation_detail_process_chief_position" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-12">
|
||||
<button type="button" class="btn btn-outline" onclick="javascript:window_close()" style="background-color: #fff;">กลับ</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<br />
|
||||
|
||||
<section class="wrapper">
|
||||
<div class="title col-md-12"><div class="line"></div>ผลสัมฤทธิ์ของงาน</div>
|
||||
|
||||
<section class="card no-border">
|
||||
<div class="card-body" style="">
|
||||
<table id="eva_evaluation_achievement_process2Table" class="display table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ลำดับ</th>
|
||||
|
||||
<th width="30%"><label>ผลสัมฤทธิ์ตัวชี้วัดผลงาน</label></th>
|
||||
<th><label>น้ำหนัก</label></th>
|
||||
|
||||
<th><label>1</label></th>
|
||||
<th><label>2</label></th>
|
||||
<th><label>3</label></th>
|
||||
<th><label>4</label></th>
|
||||
<th><label>5</label></th>
|
||||
|
||||
<th width="10%"><label>คะแนน</label></th>
|
||||
<th width="10%"><label>คะแนน</label></th>
|
||||
<th width="10%"><label>รวมคะแนน</label></th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th>รวม</th>
|
||||
|
||||
<th width="25%"><label id='h_eva_evaluation_achievement_process2_achievement'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process2_weight'></label></th>
|
||||
|
||||
<th><label id='h_eva_evaluation_achievement_process2_target_score1'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process2_target_score2'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process2_target_score3'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process2_target_score4'></label></th>
|
||||
<th><label id='h_eva_evaluation_achievement_process2_target_score5'></label></th>
|
||||
|
||||
<th width="10%"><label id='h_eva_evaluation_achievement_process2_score'></label></th>
|
||||
<th width="15%"><label id='h_eva_evaluation_achievement_process2_score2'></label></th>
|
||||
<th width="10%"><p id="eva_create_evaluation_detail_summary2_total_summary_supervisor" /></th>
|
||||
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody class="thin-border-bottom" id="eva_evaluation_achievement_process2Body"></tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-12">
|
||||
<button type="button" class="btn btn-primary" onclick="javascript:eva_evaluation_achievement_process2_Save(getUrlParameter('id'))">บันทึก</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
<br />
|
||||
|
||||
<section class="wrapper">
|
||||
<div class="title col-md-12"><div class="line"></div>พฤติกรรมการปฏิบัติงาน (สมรรถนะ)</div>
|
||||
|
||||
<section class="card no-border">
|
||||
<div class="card-body" style="">
|
||||
<table id="eva_evaluation_behavior_process2Table" class="display table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ลำดับ</th>
|
||||
<th><label>พฤติกรรมการปฏิบัติงาน</label></th>
|
||||
<th width="10%"><label>น้ำหนัก</label></th>
|
||||
<th width="7%"><label>1</label></th>
|
||||
<th width="7%"><label>2</label></th>
|
||||
<th width="7%"><label>3</label></th>
|
||||
<th width="7%"><label>4</label></th>
|
||||
<th width="7%"><label>5</label></th>
|
||||
<th width="10%"><label>คะแนน</label></th>
|
||||
<th width="15%"><label>คะแนน</label></th>
|
||||
<th width="10%"><label>รวมคะแนน</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th><label id='h_eva_evaluation_behavior_process2_behavior'>รวม</label></th>
|
||||
<th width="10%"><label id='h_eva_evaluation_behavior_process2_weight'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process2_target_score1'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process2_target_score2'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process2_target_score3'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process2_target_score4'></label></th>
|
||||
<th width="7%"><label id='h_eva_evaluation_behavior_process2_target_score5'></label></th>
|
||||
<th width="10%"><label id='h_eva_evaluation_behavior_process2_score'></label></th>
|
||||
<th width="15%"><label id='h_eva_evaluation_behavior_process2_score2'></label></th>
|
||||
<th width="10%"><p id="eva_create_evaluation_detail_summary2_total_summary_competency_supervisor" /></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody class="thin-border-bottom" id="eva_evaluation_behavior_process2Body"></tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-12">
|
||||
<button type="button" class="btn btn-primary" onclick="javascript:eva_evaluation_behavior_process2_Save(getUrlParameter('id'))">บันทึก</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<br />
|
||||
|
||||
<section class="wrapper">
|
||||
<div class="title col-md-12"><div class="line"></div>สรุปผลการประเมิน</div>
|
||||
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_summary2_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_summary2_create_evaluation_id" />
|
||||
|
||||
<table id="eva_evaluation_behavior_processTable" class="display table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><label>คะแนนประเมิน</label></th>
|
||||
<th><label>น้ำหนัก</label></th>
|
||||
<th><label>คะแนน</label></th>
|
||||
<th><label>รวมคะแนน</label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="thin-border-bottom">
|
||||
<tr>
|
||||
<td>องค์ประกอบที่ 1 : ผลสัมฤทธิ์ของงาน</td>
|
||||
<td><p id="w1" /></td>
|
||||
<td><p id="eva_create_evaluation_detail_summary2_Final_summary_supervisor" /></td>
|
||||
<td><p id="eva_create_evaluation_detail_summary2_achievement_supervisor" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>องค์ประกอบที่ 2 : พฤติกรรมเชิงปฏิบัติงาน(สมรรถนะ)</td>
|
||||
<td><p id="w2" /></td>
|
||||
<td><p id="eva_create_evaluation_detail_summary2_Final_summary_competency_supervisor" /></td>
|
||||
<td><p id="eva_create_evaluation_detail_summary2_competency_supervisor" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>รวม</td>
|
||||
<td><p id="w3" /></td>
|
||||
<td></td>
|
||||
<td><p id="eva_create_evaluation_detail_summary2_score_supervisor" /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th><label>ระดับผลการประเมิน</label></th>
|
||||
<th colspan="3"><p id="eva_create_evaluation_detail_summary2_level_score_supervisor" /></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-12">
|
||||
<button type="button" class="btn btn-submit" onclick="javascript:eva_create_evaluation_detail_summary2_PutUpdate()">บันทึก</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<br />
|
||||
|
||||
<section class="wrapper">
|
||||
<div class="title col-md-12"><div class="line"></div>ความเห็นผู้ประเมิน</div>
|
||||
|
||||
<section class="card no-border">
|
||||
<div class="card-body" style="">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_review01_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_review01_supervisor1" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_review01_create_evaluation_id" />
|
||||
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-6">
|
||||
<label id="lab_eva_create_evaluation_detail_review01_supervisor1_date" for="eva_create_evaluation_detail_review01_supervisor1_date">วันที่ประเมิน</label>
|
||||
<input disabled class="form-control" type="text" id="eva_create_evaluation_detail_review01_supervisor1_date" data-provide="datepicker" data-date-language="th-th" iLabel="วันที่ประเมิน" iRequire="true" iGroup="eva_create_evaluation_detail_review01" />
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-12">
|
||||
<label id="lab_eva_create_evaluation_detail_review01_supervisor1_remark" for="eva_create_evaluation_detail_review01_supervisor1_remark">ความเห็นผู้ประเมิน</label>
|
||||
<textarea disabled class="form-control" rows="4" cols="50" id="eva_create_evaluation_detail_review01_supervisor1_remark" iLabel="ความเห็นผู้ประเมิน" iRequire="true" iGroup="eva_create_evaluation_detail_review01"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
|
||||
<br />
|
||||
|
||||
<section class="wrapper">
|
||||
<div class="title col-md-12"><div class="line"></div>ความเห็นผู้ประเมินสูงสุด</div>
|
||||
<section class="card no-border">
|
||||
<header class="card-header">
|
||||
กรุณากรอกข้อมูลลงในแบบฟอร์ม
|
||||
</header>
|
||||
<div class="card-body" style="">
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_review02_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_review02_create_evaluation_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_review02_supervisor2" />
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-6">
|
||||
<label id="lab_eva_create_evaluation_detail_review02_supervisor2_result" for="eva_create_evaluation_detail_review02_supervisor2_result">ผลการประเมิน</label>
|
||||
<select class="form-control" id="eva_create_evaluation_detail_review02_supervisor2_result" iLabel="ผลการประเมิน" iRequire="true" iGroup="eva_create_evaluation_detail_review02"></select>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-6">
|
||||
<label id="lab_eva_create_evaluation_detail_review02_supervisor2_date" for="eva_create_evaluation_detail_review02_supervisor2_date">วันที่ประเมิน</label>
|
||||
<input class="form-control" type="text" id="eva_create_evaluation_detail_review02_supervisor2_date" data-provide="datepicker" data-date-language="th-th" iLabel="วันที่ประเมิน" iRequire="true" iGroup="eva_create_evaluation_detail_review02" />
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class="form-group col-md-12">
|
||||
<label id="lab_eva_create_evaluation_detail_review02_supervisor2_remark" for="eva_create_evaluation_detail_review02_supervisor2_remark">ความเห็นผู้ประเมินสูงสุด</label>
|
||||
<textarea class="form-control" rows="4" cols="50" id="eva_create_evaluation_detail_review02_supervisor2_remark" iLabel="ความเห็นผู้ประเมินสูงสุด" iRequire="true" iGroup="eva_create_evaluation_detail_review02"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_status_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_status_create_evaluation_id" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_status_status_self" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_status_status_chief" />
|
||||
<input class="form-control" type="hidden" id="eva_create_evaluation_detail_status_status_supervisor" />
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-12">
|
||||
<button type="button" class="btn btn-submit" onclick="javascript:eva_create_evaluation_detail_review02_PutUpdate()">บันทึก</button>
|
||||
|
||||
<button type="button" class="btn btn-submit" onclick="javascript:eva_create_evaluation_detail_status_PutUpdate('next2')">ส่งแบบประเมิน</button>
|
||||
|
||||
<button type="button" class="btn btn-submit" onclick="javascript:eva_create_evaluation_detail_status_PutUpdate('back2')">ตีกลับแบบประเมิน</button>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
@section FooterPlaceHolder{
|
||||
<script src="~/js/eva_create_evaluation_detail_process/eva_create_evaluation_detail_process_d2.js"></script>
|
||||
<script src="~/js/eva_evaluation_achievement_process2/eva_evaluation_achievement_process2_inline.js"></script>
|
||||
<script src="~/js/eva_evaluation_behavior_process2/eva_evaluation_behavior_process2_inline.js"></script>
|
||||
<script src="~/js/eva_create_evaluation_detail_summary2/eva_create_evaluation_detail_summary2_d.js"></script>
|
||||
<script src="~/js/eva_create_evaluation_detail_review01/eva_create_evaluation_detail_review01_d.js"></script>
|
||||
<script src="~/js/eva_create_evaluation_detail_review02/eva_create_evaluation_detail_review02_d.js"></script>
|
||||
<script src="~/js/eva_create_evaluation_detail_status/eva_create_evaluation_detail_status_d.js"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
var id = getUrlParameter("id");
|
||||
if (id) {
|
||||
eva_create_evaluation_detail_process_SetEditForm(id);
|
||||
eva_evaluation_achievement_process2_InitialForm(id);
|
||||
eva_evaluation_behavior_process2_InitialForm(id);
|
||||
eva_create_evaluation_detail_summary2_SetEditForm(id);
|
||||
eva_create_evaluation_detail_review01_SetEditForm(id);
|
||||
eva_create_evaluation_detail_review02_SetEditForm(id);
|
||||
eva_create_evaluation_detail_status_SetEditForm(id);
|
||||
} else {
|
||||
eva_create_evaluation_detail_process_SetCreateForm();
|
||||
}
|
||||
SetupValidationRemark("eva_create_evaluation_detail_process");
|
||||
SetupValidationRemark("eva_create_evaluation_detail_review02");
|
||||
});
|
||||
</script>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user