이슈리스트, 이슈상세 API로 추가된 이슈 표시
| | |
| | | private Long severityId; |
| | | private String severityName; |
| | | private String severityColor; |
| | | private String isApi; |
| | | private ProjectVo projectVo; // 이슈 상세에서 사용 |
| | | private IssueStatusVo issueStatusVo; // 이슈 상세에서 사용 |
| | | private IssueTypeVo issueTypeVo; // 이슈 상세에서 사용 |
| | |
| | | this.severityColor = severityColor; |
| | | } |
| | | |
| | | public String getIsApi() { |
| | | return isApi; |
| | | } |
| | | |
| | | public void setIsApi(String isApi) { |
| | | this.isApi = isApi; |
| | | } |
| | | |
| | | public Boolean getModifyPermissionCheck() { |
| | | return modifyPermissionCheck; |
| | | } |
| | |
| | | private Long workspaceId; |
| | | private String projectType; |
| | | private String deep; |
| | | private String isApi; |
| | | private Long parentIssueId; // 상위 일감 |
| | | private String useValue; |
| | | private List<Long> projectIds = Lists.newArrayList(); |
| | |
| | | this.deep = deep; |
| | | } |
| | | |
| | | public String getIsApi() { |
| | | return isApi; |
| | | } |
| | | |
| | | public void setIsApi(String isApi) { |
| | | this.isApi = isApi; |
| | | } |
| | | |
| | | public List<Long> getProjectIds() { |
| | | return projectIds; |
| | | } |
| | |
| | | issue.complete_date as completeDate, |
| | | issue.issue_number as issueNumber, |
| | | issue.register_date as registerDate, |
| | | issue.is_api as isApi, |
| | | SUBSTRING(issue.modify_date, 1, 19) as modifyDate, |
| | | project.id as projectId, |
| | | project.name as projectName, |
| | |
| | | <div class="support-ticket-content-w" ng-controller="issueDetailController"> |
| | | <div class="support-ticket-content"> |
| | | <span ng-if="vm.viewer.parentIssueVo != null" class="badge" ng-style="{'background-color' : '#353535', 'border-color' : vm.viewer.issueStatusVo.color, 'color' : '#FFFFFF' }"> |
| | | <span>상위 이슈:{{vm.viewer.parentIssueVo.title}}</span> |
| | | <span class="cursor" ng-click="fn.issueBack()">상위 이슈:{{vm.viewer.parentIssueVo.title}}</span> |
| | | </span> |
| | | |
| | | <div class=""> |
| | |
| | | <span class="ticket-header"> |
| | | <div class="tasks-header-w"> |
| | | <span class="tags"> |
| | | <span class="tag">{{vm.viewer.projectVo.projectKey}}-{{vm.viewer.issueNumber}} / {{vm.viewer.projectVo.name}}</span> |
| | | <span class="tag">{{vm.viewer.projectVo.projectKey}}-{{vm.viewer.issueNumber}} / {{vm.viewer.projectVo.name}} / <span>API : {{vm.viewer.isApi}}</span></span> |
| | | </span> |
| | | </div> |
| | | </span> |