OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2021-11-25 41c8f3c976c0d8ec4b0a6ad3d7f4ce90a9de03c7
프로젝트 담당부서 수정
4개 파일 변경됨
8 ■■■■ 파일 변경됨
src/main/resources/mybatis/query-template/projectRoleDepartment-template.xml 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/webapp/WEB-INF/i18n/code_ko_KR.properties 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/webapp/i18n/ko/global.json 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/webapp/views/project/projectModify.html 2 ●●● 패치 | 보기 | raw | blame | 히스토리
src/main/resources/mybatis/query-template/projectRoleDepartment-template.xml
@@ -21,7 +21,7 @@
    <select id="findProjectRoleDepartment" resultType="java.util.HashMap" parameterType="java.util.HashMap">
        SELECT
        DISTINCT d.id as id,
        d.department_name as name
        d.department_name as departmentName
        FROM
        project p
        INNER JOIN project_role pr on p.id = pr.project_id
src/main/webapp/WEB-INF/i18n/code_ko_KR.properties
@@ -80,7 +80,7 @@
common.datetimeField=\uB0A0\uC9DC \uD544\uB4DC
common.ipAddressField=IP \uC8FC\uC18C \uD544\uB4DC
common.emailField=\uC774\uBA54\uC77C \uD544\uB4DC
common.siteField=\uD648\uD398\uC774\uC9C0 \uD544\uB4DC
common.siteField=URL \uD544\uB4DC
common.telField=\uC804\uD654\uBC88\uD638 \uD544\uB4DC
common.customField=\uC0AC\uC6A9\uC790 \uC815\uC758 \uD544\uB4DC
common.customFieldList=\uC0AC\uC6A9\uC790 \uC815\uC758 \uD544\uB4DC \uBAA9\uB85D
src/main/webapp/i18n/ko/global.json
@@ -826,7 +826,7 @@
        "datetimeField": "날짜 필드",
        "ipAddressField": "IP Address 필드",
        "emailField": "이메일 필드",
        "siteField": "홈페이지 필드",
        "siteField": "URL 필드",
        "telField": "전화번호 필드"
    },
    "tasks": {
src/main/webapp/views/project/projectModify.html
@@ -116,7 +116,7 @@
                                       extra-settings="{ displayProp : 'byName' , idProp : 'id', imageable : false, maxlength : 100, autoResize : true }"></js-autocomplete-multi>
                <div class="select3-selection__choicediv mt-10">
                    <span class="select3-selection__choice" ng-repeat="user in vm.form.departments">
                    <span class="select3-selection__choice" ng-repeat="department in vm.form.departments">
                        <span>{{department.byName}}</span> <!--사용자가 속해 있는 부서 이름 출력-->
                        <span class="select3-selection__choice__remove" ng-click="fn.removeDepartment($index)">×</span>
                    </span>