ปรับปรุงหลายข้อ

This commit is contained in:
LAPTOP-KB8JC2K2\acer
2021-09-14 15:52:06 +07:00
parent d4212da199
commit 7fdf9f7b01
26 changed files with 2316 additions and 14 deletions

View File

@@ -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;
}

View File

@@ -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;
}