/**
|
* Created by wisestone on 2019-02-07.
|
*/
|
'use strict';
|
|
define(['app'], function (app) {
|
app.factory("IssueTableConfig", ['$http', '$log', function ($http, $log) {
|
return {
|
detail : function (conditions) {
|
return $http.post("issueTableConfig/detail", conditions).then(function (response) {
|
$log.debug("이슈 목록 테이블 설정 상세 조회 : ", response);
|
return response;
|
});
|
},
|
add : function (conditions) {
|
return $http.post("issueTableConfig/add", conditions).then(function (response) {
|
$log.debug("이슈 목록 테이블 설정 등록 : ", response);
|
return response;
|
});
|
},
|
|
relationAdd : function (conditions) {
|
return $http.post("issueTableConfig/relationAdd", conditions).then(function (response) {
|
$log.debug("연관 이슈 목록 테이블 설정 등록 : ", response);
|
return response;
|
});
|
},
|
|
relationDetail : function (conditions) {
|
return $http.post("issueTableConfig/relationDetail", conditions).then(function (response) {
|
$log.debug("연관 이슈 목록 테이블 설정 상세 조회 : ", response);
|
return response;
|
});
|
},
|
|
downAdd : function (conditions) {
|
return $http.post("issueTableConfig/downAdd", conditions).then(function (response) {
|
$log.debug("하위 이슈 목록 테이블 설정 등록 : ", response);
|
return response;
|
});
|
},
|
|
downDetail : function (conditions) {
|
return $http.post("issueTableConfig/downDetail", conditions).then(function (response) {
|
$log.debug("하위 목록 테이블 설정 상세 조회 : ", response);
|
return response;
|
});
|
},
|
}
|
}
|
])
|
});
|