From 862e04dc9c3e817b44a10431221fe9e135d9bd95 Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 화, 30 11월 2021 12:45:32 +0900 Subject: [PATCH] 사용자 정의 필드 날짜관련 수정 --- src/main/webapp/scripts/components/utils/autoComplete.controller.js | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/scripts/components/utils/autoComplete.controller.js b/src/main/webapp/scripts/components/utils/autoComplete.controller.js index d1020b8..ef94066 100644 --- a/src/main/webapp/scripts/components/utils/autoComplete.controller.js +++ b/src/main/webapp/scripts/components/utils/autoComplete.controller.js @@ -126,9 +126,16 @@ return deferred.promise; } - function getIssueList(query, excludeList, page, callBack) { + function getIssueList(query, issueTypeId, excludeList, page, callBack) { var conditions = { name : query, + issueTypeIds : (function () { + var ids = []; + + ids.push(issueTypeId); + + return ids; + })(), excludeIds : (function () { var excludeIds = []; -- Gitblit v1.8.0