Index: arms/js/jiraConnection.js =================================================================== diff -u -r058ea72f60fb3d65fb83d243e62b9a9fef60dafd -reae4d99459dbfb8d7d26fcc13a459cb7d6bcb458 --- arms/js/jiraConnection.js (.../jiraConnection.js) (revision 058ea72f60fb3d65fb83d243e62b9a9fef60dafd) +++ arms/js/jiraConnection.js (.../jiraConnection.js) (revision eae4d99459dbfb8d7d26fcc13a459cb7d6bcb458) @@ -185,10 +185,10 @@

불러온 프로젝트 수: ${cardList[i].jiraProjectEntities.length} 프로젝트 - 이슈타입 - 이슈우선순위 - 이슈해결책 - 이슈상태 + 이슈타입 + 이슈우선순위 + 이슈해결책 + 이슈상태

@@ -674,27 +674,25 @@ // 갱신 버튼 (예상: all, project, issueType, issuePriority, issueResolution, issueStatus 등..) function jira_renew(renewJiraType, serverId) { // 서버 c_id - if (serverId == undefined) { serverId = "서버 아이디 정보 없음"; } - if (renewJiraType === undefined) { renewJiraType = "갱신할 지라 타입 없음"; } - console.log("갱신버튼을 눌렀습니다. 갱신할 종류(서버아이디) : " + renewJiraType+"("+serverId+")"); - if(renewJiraType === '이슈상태') { //임시 ajax 여기 넣기 - $.ajax({ - url: "/auth-user/api/arms/jiraServer/renewIssueStatus.do", - type: "put", - data: { c_id: serverId}, - statusCode: { - 200: function () { - jSuccess(selectServerName + "의 데이터가 변경되었습니다."); - console.log("현재 선택된 항목(c_id, 서버명) :" + selectId +", " + selectServerName); - //데이터 테이블 데이터 재 로드 - makeJiraServerCardDeck(); - jiraServerCardClick(selectId); - } - } - }); - } + if (serverId === undefined) { serverId = "서버 아이디 정보 없음"; return false; } + if (renewJiraType === undefined) { renewJiraType = "갱신할 지라 타입 없음"; return false; } + console.log("갱신버튼을 눌렀습니다. 갱신할 종류(서버아이디) : " + renewJiraType+"("+serverId+")"); + $.ajax({ + url: "/auth-user/api/arms/jiraServer/"+ renewJiraType + "/renewNode.do", + type: "put", + data: { c_id: serverId}, + statusCode: { + 200: function () { + jSuccess(selectServerName + "의 데이터가 갱신되었습니다."); + console.log("현재 선택된 항목(c_id, 서버명) :" + selectId +", " + selectServerName); + //데이터 테이블 데이터 재 로드 + makeJiraServerCardDeck(); + jiraServerCardClick(selectId); + } + } + }); } function projectDataTable(data) {