| | |
| | | return response; |
| | | }); |
| | | }, |
| | | findReadyDepartments : function (conditions) { |
| | | return $http.post("issue/findReadyDepartments", conditions).then(function (response) { |
| | | $log.debug("워크플로우의 생성 상태의 담당부서 목록 데이터 : ", response); |
| | | return response; |
| | | }); |
| | | }, |
| | | add : function (conditions) { |
| | | conditions.url = "issue/add"; |
| | | return $upload.upload(conditions).progress(function (evt) { |
| | |
| | | return response; |
| | | }); |
| | | }, |
| | | |
| | | relAdd : function (conditions) { |
| | | conditions.url = "issue/relIssueAdd"; |
| | | return $upload.upload(conditions).progress(function (evt) { |
| | | // 파일 업로드 진행율을 표시해준다. |
| | | fileUploadProgress(evt); |
| | | |
| | | }).then(function (response) { |
| | | $log.debug("이슈 생성 결과 : ", response); |
| | | return response; |
| | | }); |
| | | }, |
| | | downAdd : function (conditions) { |
| | | conditions.url = "issue/downIssueAdd"; |
| | | return $upload.upload(conditions).progress(function (evt) { |
| | | // 파일 업로드 진행율을 표시해준다. |
| | | fileUploadProgress(evt); |
| | |
| | | $log.debug("이슈 이메일 발송 결과 : ", response); |
| | | return response; |
| | | }); |
| | | }, |
| | | sendCommonEmail : function (conditions) { |
| | | return $http.post("issue/sendCommonEmail", conditions).then(function (response) { |
| | | $log.debug("이슈 이메일 발송 결과 : ", response); |
| | | return response; |
| | | }); |
| | | } |
| | | } |
| | | } |