Index: arms/js/jiraConnection.js =================================================================== diff -u -r113950a6d19f897472d2f5de3fbc45149645d5f5 -rbf2c9f79081f5836fa619616aceb02b8b7e1eab5 --- arms/js/jiraConnection.js (.../jiraConnection.js) (revision 113950a6d19f897472d2f5de3fbc45149645d5f5) +++ arms/js/jiraConnection.js (.../jiraConnection.js) (revision bf2c9f79081f5836fa619616aceb02b8b7e1eab5) @@ -514,11 +514,27 @@ var obj = data[k]; var server_name = obj.c_jira_server_name; var server_type = obj.c_jira_server_type; - for(var p in data[k].jiraProjectPureEntities) { - var obj2 = data[k].jiraProjectPureEntities[p]; + for(var p in data[k].jiraProjectIssueTypePureEntities) { + var obj2 = data[k].jiraProjectIssueTypePureEntities[p]; var jira_name = obj2.c_jira_name; var jira_idx = obj2.c_id; - optionData.push(""); + if ((server_type ==="클라우드" || server_type ==="레드마인_온프레미스") && obj2.jiraIssueTypeEntities.length > 0) { + let isCheck = null; + for(let j in obj2.jiraIssueTypeEntities) { + let issuetype = obj2.jiraIssueTypeEntities[j]; + if (issuetype.c_check === "true") { + isCheck = issuetype.c_issue_type_name+"["+issuetype.c_issue_type_id+"]"; + break; + } + } + if(!isEmpty(isCheck)) { + optionData.push(""); + } + } + else { + optionData.push(""); + } + //optionData.push(""); } } Index: reference/jquery-plugins/lou-multi-select-0.9.12/js/jquery.multi-select.js =================================================================== diff -u -raadb593469e577eff05f6c8296bdb02ec0a8cd50 -rbf2c9f79081f5836fa619616aceb02b8b7e1eab5 --- reference/jquery-plugins/lou-multi-select-0.9.12/js/jquery.multi-select.js (.../jquery.multi-select.js) (revision aadb593469e577eff05f6c8296bdb02ec0a8cd50) +++ reference/jquery-plugins/lou-multi-select-0.9.12/js/jquery.multi-select.js (.../jquery.multi-select.js) (revision bf2c9f79081f5836fa619616aceb02b8b7e1eab5) @@ -116,13 +116,16 @@ value, elementId; - if(serverType === "온프레미스" || serverType ==="클라우드") { + if(serverType === "온프레미스" || serverType ==="클라우드" || serverType === "레드마인_온프레미스") { if (serverType === "온프레미스") { selectableLi = $('
  • '+that.escapeHTML($option.text())+'
  • '); } if (serverType === "클라우드") { selectableLi = $('
  • '+that.escapeHTML($option.text())+'
  • '); } + if (serverType === "레드마인_온프레미스") { + selectableLi = $('
  • '+that.escapeHTML($option.text())+'
  • '); + } } else { selectableLi = $('
  • '+that.escapeHTML($option.text())+'
  • '); }