ปรับปรุงหลายข้อ
This commit is contained in:
@@ -28,7 +28,7 @@ function eva_create_evaluation_detail_FeedDataToForm(data) {
|
||||
$("#eva_create_evaluation_detail_work_period").val(data.work_period);
|
||||
$("#eva_create_evaluation_detail_order_of_data").val(data.order_of_data);
|
||||
DropDownClearFormAndFeedWithData($("#eva_create_evaluation_detail_help_org_id"), data, "id", "external_name", "item_help_org_id", data.help_org_id);
|
||||
|
||||
$("#eva_create_evaluation_detail_remark").val(data.remark);
|
||||
}
|
||||
|
||||
function eva_create_evaluation_detail_GetFromForm() {
|
||||
@@ -43,6 +43,7 @@ function eva_create_evaluation_detail_GetFromForm() {
|
||||
eva_create_evaluation_detailObject.work_period = $("#eva_create_evaluation_detail_work_period").val();
|
||||
eva_create_evaluation_detailObject.order_of_data = $("#eva_create_evaluation_detail_order_of_data").val();
|
||||
eva_create_evaluation_detailObject.help_org_id = $("#eva_create_evaluation_detail_help_org_id").val();
|
||||
eva_create_evaluation_detailObject.remark = $("#eva_create_evaluation_detail_remark").val();
|
||||
|
||||
return eva_create_evaluation_detailObject;
|
||||
}
|
||||
|
||||
@@ -26,6 +26,7 @@ function eva_performance_plan_FeedDataToForm(data) {
|
||||
$("#eva_performance_plan_percent").val(data.percent);
|
||||
$("#eva_performance_plan_start_leave").val(formatDate(data.start_leave));
|
||||
$("#eva_performance_plan_end_leave").val(formatDate(data.end_leave));
|
||||
$("#eva_performance_plan_remark").val(data.remark);
|
||||
}
|
||||
|
||||
function eva_performance_plan_GetFromForm() {
|
||||
@@ -36,6 +37,7 @@ function eva_performance_plan_GetFromForm() {
|
||||
eva_performance_planObject.percent = $("#eva_performance_plan_percent").val();
|
||||
eva_performance_planObject.start_leave = getDate($("#eva_performance_plan_start_leave").val());
|
||||
eva_performance_planObject.end_leave = getDate($("#eva_performance_plan_end_leave").val());
|
||||
eva_performance_planObject.remark = $("#eva_performance_plan_remark").val();
|
||||
|
||||
return eva_performance_planObject;
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@ function eva_performance_plan_FeedDataToForm(data) {
|
||||
$("#eva_performance_plan_percent").val(data.percent);
|
||||
$("#eva_performance_plan_start_leave").val(formatDate(data.start_leave));
|
||||
$("#eva_performance_plan_end_leave").val(formatDate(data.end_leave));
|
||||
$("#eva_performance_plan_remark").val(data.remark);
|
||||
}
|
||||
|
||||
function eva_performance_plan_GetFromForm() {
|
||||
@@ -20,6 +21,7 @@ function eva_performance_plan_GetFromForm() {
|
||||
eva_performance_planObject.percent = $("#eva_performance_plan_percent").val();
|
||||
eva_performance_planObject.start_leave = getDate($("#eva_performance_plan_start_leave").val());
|
||||
eva_performance_planObject.end_leave = getDate($("#eva_performance_plan_end_leave").val());
|
||||
eva_performance_planObject.remark = $("#eva_performance_plan_remark").val();
|
||||
|
||||
return eva_performance_planObject;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user