OWL ITS + 탐지시스템(인터넷 진흥원)
- 헤더 일반메일 아이콘 색상 변경
- 등록일자 내림차순 정렬
- 기본 프로젝트의 기간이 null로 표시되는 거 수정
17개 파일 변경됨
45 ■■■■ 파일 변경됨
src/main/java/kr/wisestone/owl/service/impl/ProjectServiceImpl.java 2 ●●●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/HostingField-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/IspField-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/companyField-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/companyFieldCategory-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/customField-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/event-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/faq-template.xml 4 ●●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/guide-template.xml 4 ●●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/issue-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/issueStatus-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/issueType-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/notice-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/project-template.xml 6 ●●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/qna-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/workflow-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/webapp/views/common/header.html 5 ●●●●● 패치 | 보기 | raw | blame | 히스토리
src/main/java/kr/wisestone/owl/service/impl/ProjectServiceImpl.java
@@ -123,6 +123,8 @@
        project.setDescription(this.messageAccessor.message("common.intoTheSystemIssueManagementProject")); // 시스템에서 기본으로 제공되는 이슈 관리 프로젝트입니다.
        //project.setStartDate(DateUtil.convertDateToYYYYMMDD(new Date()));
        //project.setEndDate(DateUtil.convertDateToYYYYMMDD(DateUtil.addDays(new Date(), 3650)));
        project.setStartDate("");//null표시 방지
        project.setEndDate("");
        //  기본으로 생성되는 프로젝트의 유형은 BTS
        project.setProjectType(ProjectType.BTS_PROJECT);
        project.setWorkspace(workspace);
src/main/resources/mybatis/query-template/HostingField-template.xml
@@ -22,7 +22,7 @@
        <if test="id != '' and id != null">
            AND h.id like CONCAT('%',#{id},'%')
        </if>
        ORDER BY h.id DESC
        ORDER BY h.register_date DESC
        <if test="pageSize != '' and pageSize != null">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/IspField-template.xml
@@ -22,7 +22,7 @@
        <if test="id != '' and id != null">
            AND i.id like CONCAT('%',#{id},'%')
        </if>
        ORDER BY i.id DESC
        ORDER BY i.register_date DESC
        <if test="pageSize != '' and pageSize != null">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/companyField-template.xml
@@ -32,7 +32,7 @@
        <if test="url != '' and id != url">
            AND cf.url like CONCAT('%',#{url},'%')
        </if>
        ORDER BY cf.id DESC
        ORDER BY cf.register_date DESC
        <if test="pageSize != '' and pageSize != null">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/companyFieldCategory-template.xml
@@ -20,7 +20,7 @@
        <if test="useValue != '' and useValue != null">
            AND cfc.use_value like CONCAT('%',#{useValue},'%')
        </if>
        ORDER BY cfc.id DESC
        ORDER BY cfc.register_date DESC
        <if test="pageSize != '' and pageSize != null">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/customField-template.xml
@@ -25,7 +25,7 @@
            </when>
        </choose>
        AND ws.id = #{workspaceId}
        ORDER BY cf.id DESC
        ORDER BY cf.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/event-template.xml
@@ -20,7 +20,7 @@
        <if test="title != '' and title != null">
            AND n.title like CONCAT('%',#{title},'%')
        </if>
        ORDER BY ID DESC
        ORDER BY n.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/faq-template.xml
@@ -18,7 +18,7 @@
        <if test="title != '' and title != null">
            AND n.title like CONCAT('%',#{title},'%')
        </if>
        ORDER BY ID DESC
        ORDER BY n.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
@@ -50,7 +50,7 @@
        <if test="title != '' and title != null">
            AND n.title like CONCAT('%',#{title},'%')
        </if>
        ORDER BY ID DESC
        ORDER BY n.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/guide-template.xml
@@ -18,7 +18,7 @@
        <if test="title != '' and title != null">
            AND n.title like CONCAT('%',#{title},'%')
        </if>
        ORDER BY ID DESC
        ORDER BY n.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
@@ -50,7 +50,7 @@
        <if test="title != '' and title != null">
            AND n.title like CONCAT('%',#{title},'%')
        </if>
        ORDER BY ID DESC
        ORDER BY n.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/issue-template.xml
@@ -242,7 +242,7 @@
        AND issue.reverse_index <![CDATA[ < ]]> 0
        AND workspace.id = #{workspaceId}
        GROUP BY issue.id
        ORDER BY issue.modify_date DESC
        ORDER BY issue.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/issueStatus-template.xml
@@ -54,7 +54,7 @@
            </when>
        </choose>
        AND ws.id = #{workspaceId}
        ORDER BY i.name DESC
        ORDER BY i.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/issueType-template.xml
@@ -40,7 +40,7 @@
            AND it.project_id IS NOT NULL
        </if>
        AND ws.id = #{workspaceId}
        ORDER BY it.id DESC
        ORDER BY it.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/notice-template.xml
@@ -17,7 +17,7 @@
        <if test="title != '' and title != null">
            AND n.title like CONCAT('%',#{title},'%')
        </if>
        ORDER BY ID DESC
        ORDER BY n.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/project-template.xml
@@ -53,7 +53,7 @@
            </when>
        </choose>
        AND ws.id = #{workspaceId}
        ORDER BY p.id desc
        ORDER BY p.register_date desc
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
@@ -120,7 +120,7 @@
            </when>
        </choose>
        AND ws.id = #{workspaceId}
        ORDER BY p.id desc
        ORDER BY p.register_date desc
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
@@ -264,7 +264,7 @@
        </choose>
        AND p.workspace_id = #{workspaceId}
        <if test="page != null and !page.equals('')">
            ORDER BY p.id desc
            ORDER BY p.register_date desc
            limit #{pageSize} offset #{page};
        </if>
    </select>
src/main/resources/mybatis/query-template/qna-template.xml
@@ -17,7 +17,7 @@
        <if test="title != '' and title != null">
            AND n.title like CONCAT('%',#{title},'%')
        </if>
        ORDER BY ID DESC
        ORDER BY n.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
src/main/resources/mybatis/query-template/workflow-template.xml
@@ -16,7 +16,7 @@
            AND w.name like CONCAT('%',#{name},'%')
        </if>
        AND ws.id = #{workspaceId}
        ORDER BY w.id DESC
        ORDER BY w.register_date DESC
        <if test="page != null and !page.equals('')">
            limit #{pageSize} offset #{page};
        </if>
src/main/webapp/views/common/header.html
@@ -62,10 +62,9 @@
<!--                <span class="new-messages-push"></span>-->
                <i class="dripicons-broadcast"></i>
            </div>
            <a class="messages-notifications os-dropdown-trigger os-dropdown-position-left"
               style="padding-top:5px;">
            <div class="messages-notifications os-dropdown-trigger os-dropdown-position-left">
                <i class="os-icon os-icon-email-2-at2 mr-20" ng-click="fn.sendCommonMail()" data-toggle="tooltip" data-placement="right" title="직접 작성한 메일 보내기"></i>
            </a>
            </div>
            <!--
            <select name="currentWorkspace"