ปรับปรุงตามที่ได้รับแจ้ง

This commit is contained in:
LAPTOP-KB8JC2K2\acer
2021-09-16 11:52:23 +07:00
parent 3016221910
commit dacfe151cf
16 changed files with 100 additions and 9 deletions

View File

@@ -7,6 +7,8 @@ function eva_adjust_postponement_quota_GetSearchParameter() {
var eva_adjust_postponement_quotaSearchObject = new Object();
eva_adjust_postponement_quotaSearchObject.fiscal_year = $("#s_eva_adjust_postponement_quota_fiscal_year").val();
eva_adjust_postponement_quotaSearchObject.theRound = $("#s_eva_adjust_postponement_quota_theRound").val();
eva_adjust_postponement_quotaSearchObject.fiscal_year_search = $("#s_eva_adjust_postponement_quota_fiscal_year_search").val();
eva_adjust_postponement_quotaSearchObject.theRound_search = $("#s_eva_adjust_postponement_quota_theRound_search").val();
return eva_adjust_postponement_quotaSearchObject;
}
@@ -15,6 +17,9 @@ function eva_adjust_postponement_quota_FeedDataToSearchForm(data) {
$("#s_eva_adjust_postponement_quota_fiscal_year").val(data.fiscal_year);
$("#s_eva_adjust_postponement_quota_theRound").val(data.theRound);
DropDownClearFormAndFeedWithData($("#s_eva_adjust_postponement_quota_fiscal_year_search"), data, "external_id", "external_name", "item_fiscal_year_search", data.fiscal_year_search);
DropDownClearFormAndFeedWithData($("#s_eva_adjust_postponement_quota_theRound_search"), data, "external_id", "external_name", "item_theRound_search", data.theRound_search);
}
//================= Form Data Customizaiton =========================================

View File

@@ -9,6 +9,8 @@ function eva_create_evaluation_detail_agreement_GetSearchParameter() {
eva_create_evaluation_detail_agreementSearchObject.org_id = $("#s_eva_create_evaluation_detail_agreement_org_id").val();
eva_create_evaluation_detail_agreementSearchObject.search_employee_code = $("#s_eva_create_evaluation_detail_agreement_search_employee_code").val();
eva_create_evaluation_detail_agreementSearchObject.search_employee_fullname = $("#s_eva_create_evaluation_detail_agreement_search_employee_fullname").val();
eva_create_evaluation_detail_agreementSearchObject.evaluation_round_search = $("#s_eva_create_evaluation_detail_agreement_evaluation_round_search").val();
return eva_create_evaluation_detail_agreementSearchObject;
}
@@ -18,6 +20,7 @@ function eva_create_evaluation_detail_agreement_FeedDataToSearchForm(data) {
DropDownClearFormAndFeedWithData($("#s_eva_create_evaluation_detail_agreement_org_id"), data, "id", "external_name", "item_org_id", data.org_id);
$("#s_eva_create_evaluation_detail_agreement_search_employee_code").val(data.search_employee_code);
$("#s_eva_create_evaluation_detail_agreement_search_employee_fullname").val(data.search_employee_fullname);
DropDownClearFormAndFeedWithData($("#s_eva_create_evaluation_detail_agreement_evaluation_round_search"), data, "id_guid", "external_name", "item_evaluation_round_search", data.evaluation_round_search);
}