Index: arms/html/reqStatus/content-container.html =================================================================== diff -u -r99ee562d639bdf4854479b9fe424f5ec554a7370 -re63dc7254efc83705df916d6dbdd2bf8fa5ea44d --- arms/html/reqStatus/content-container.html (.../content-container.html) (revision 99ee562d639bdf4854479b9fe424f5ec554a7370) +++ arms/html/reqStatus/content-container.html (.../content-container.html) (revision e63dc7254efc83705df916d6dbdd2bf8fa5ea44d) @@ -175,21 +175,6 @@
-
- ✡ 해야 할 일 : n/a -
-
- ✡ 해야 할 일 : n/a -
-
- ✡ 해야 할 일 : n/a -
Index: arms/js/reqStatus.js =================================================================== diff -u -r99ee562d639bdf4854479b9fe424f5ec554a7370 -re63dc7254efc83705df916d6dbdd2bf8fa5ea44d --- arms/js/reqStatus.js (.../reqStatus.js) (revision 99ee562d639bdf4854479b9fe424f5ec554a7370) +++ arms/js/reqStatus.js (.../reqStatus.js) (revision e63dc7254efc83705df916d6dbdd2bf8fa5ea44d) @@ -146,10 +146,42 @@ } dataTableLoad($("#selected_pdService").val(), endPointUrl); - statisticsLoad($("#selected_pdService").val(), null) + statisticsLoad($("#selected_pdService").val(), null); + + progressLoad($("#selected_pdService").val(), null); }); } // end makePdServiceSelectBox() +function progressLoad(pdservice_id, pdservice_version_id){ + + $('#progress_status').empty(); // 모든 자식 요소 삭제 + + //제품 서비스 셀렉트 박스 데이터 바인딩 + $.ajax({ + url: "/auth-user/api/arms/reqStatus/T_ARMS_REQSTATUS_" + pdservice_id + "/getProgress.do?version=" + pdservice_version_id, + type: "GET", + contentType: "application/json;charset=UTF-8", + dataType: "json", + progress: true, + statusCode: { + 200: function (data) { + + for (var key in data) { + var value = data[key]; + console.log(key + "=" + value); + + var html_piece = "
\n" + + "✡ " + key + " : " + value + "\n" + + "
"; + $('#progress_status').append(html_piece); + } + + } + } + }); +} + function statisticsLoad(pdservice_id, pdservice_version_id){ //제품 서비스 셀렉트 박스 데이터 바인딩