From b769c2dcd17af4978fe152ec2ae306a6d6d7773d Mon Sep 17 00:00:00 2001
From: 이민희 <mhlee@maprex.co.kr>
Date: 월, 03 1월 2022 14:31:05 +0900
Subject: [PATCH] 이메일 전송 템플릿을 가져올때 db에서 가져오지 않고 서버의 이메일 템플릿을 가져오도록 수정

---
 src/main/webapp/views/issue/issueAdd.html |  122 ++++++++++++++++++++--------------------
 1 files changed, 62 insertions(+), 60 deletions(-)

diff --git a/src/main/webapp/views/issue/issueAdd.html b/src/main/webapp/views/issue/issueAdd.html
index 836d34b..688a61b 100644
--- a/src/main/webapp/views/issue/issueAdd.html
+++ b/src/main/webapp/views/issue/issueAdd.html
@@ -222,7 +222,7 @@
             <div class="col-lg-12">
                 <div class="row">
                     <div class="col-md-12">
-                        <div class="form-group mgb5" ng-show="vm.form.issueCustomFields.length < 1">
+                        <div class="form-group mgb5" ng-if="vm.form.issueCustomFields.length < 1">
                             <label class="issue-label" translate="issue.notIssueTypeCustomFields">�씠�뒋 ���엯�뿉 �뿰寃곕맂 �궗�슜�옄 �젙�쓽
                                 �븘�뱶媛� �뾾�뒿�땲�떎.</label>
                         </div>
@@ -230,28 +230,28 @@
 
                     <div class="col-md-4" ng-repeat="issueCustomField in vm.form.issueCustomFields">
                         <div class="form-group mgb5">
-                            <label class="issue-label">{{issueCustomField.customFieldVo.name}}</label>
+                            <label class="issue-label">{{issueCustomField.customFieldVo.name}}&nbsp;<code ng-if="issueCustomField.customFieldVo.requiredData == 'Y'" class="highlighter-rouge">*</code>&nbsp;&nbsp;</label>
 
                             <div ng-switch on="issueCustomField.customFieldVo.customFieldType">
                                 <!-- 湲곕낯 �엯�젰 -->
                                 <div ng-switch-when="INPUT">
                                     <input type="text" class="form-control input-sm"
-                                           name="inputValue"
+                                           name="item_{{$index}}"
                                            ng-model="issueCustomField.useValues"
                                            maxlength="100"
                                            autocomplete="off"
                                            kr-input
                                            ng-required="issueCustomField.fieldOption == '01' || issueCustomField.customFieldVo.requiredData == 'Y'">
-                                    <small class="help-block form-text text-danger"
-                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"
-                                           ng-if="issueAddForm.inputValue.$error.required"
-                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄�젙�쓽�븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.
-                                    </small>
+<!--                                    <small class="help-block form-text text-danger"-->
+<!--                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"-->
+<!--                                           ng-if="issueAddForm.inputValue.$error.required"-->
+<!--                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄�젙�쓽�븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.-->
+<!--                                    </small>-->
                                 </div>
 
                                 <div ng-switch-when="NUMBER">
                                     <input type="text" class="form-control input-sm"
-                                           name="numberType"
+                                           name="item_{{$index}}"
                                            ng-model="issueCustomField.useValues"
                                            maxlength="100"
                                            autocomplete="off"
@@ -259,74 +259,75 @@
                                            ng-pattern="/^[0-9]*$/"
                                            placeholder="�닽�옄留� �엯�젰 媛��뒫�빀�땲�떎."
                                            ng-required="issueCustomField.fieldOption == '01' || issueCustomField.customFieldVo.requiredData == 'Y'">
-                                    <small class="help-block form-text text-danger"
-                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"
-                                           ng-if="issueAddForm.numberType.$error.required"
-                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.
-                                    </small>
-                                    <div ng-show="issueAddForm.numberType.$error.pattern" class="help-block form-text text-danger"
+<!--                                    <small class="help-block form-text text-danger"-->
+<!--                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"-->
+<!--                                           ng-if="issueAddForm.numberType.$error.required"-->
+<!--                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.-->
+<!--                                    </small>-->
+                                    <div ng-if="issueAddForm['item_' + $index].$error.pattern" class="help-block form-text text-danger"
                                          translate="common.invalidNumberFormat">�닽�옄留� �엯�젰 媛��뒫�빀�땲�떎.
                                     </div>
                                 </div>
 
                                 <div ng-switch-when="DATETIME">
                                     <input class="form-control input-sm input-readonly"
-                                           name="dateTime"
+                                           name="item_{{$index}}"
                                            ng-model="issueCustomField.useValues"
                                            placeholder="{{'issue.clickToSelectDate' | translate}}"
                                            modal-form-auto-scroll
                                            range-type="singleDate"
                                            date-range-picker
                                            kr-input
+                                           autocomplete="off"
                                            ng-required="issueCustomField.fieldOption == '01' || issueCustomField.customFieldVo.requiredData == 'Y'">
-                                    <small class="help-block form-text text-danger"
-                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"
-                                           ng-if="issueAddForm.dateTime.$error.required"
-                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.
-                                    </small>
+<!--                                    <small class="help-block form-text text-danger"-->
+<!--                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"-->
+<!--                                           ng-if="issueAddForm.dateTime.$error.required"-->
+<!--                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.-->
+<!--                                    </small>-->
                                 </div>
 
                                 <div ng-switch-when="IP_ADDRESS">
                                     <input type="text" class="form-control input-sm"
-                                           name="ipAddress"
+                                           name="item_{{$index}}"
                                            ng-model="issueCustomField.useValues"
                                            autocomplete="off"
                                            kr-input
                                            ng-pattern="/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/"
                                            placeholder="IP 二쇱냼 �삎�떇留� �엯�젰 媛��뒫�빀�땲�떎."
                                            ng-required="issueCustomField.fieldOption == '01' || issueCustomField.customFieldVo.requiredData == 'Y'">
-                                    <small class="help-block form-text text-danger"
-                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"
-                                           ng-if="issueAddForm.ipAddress.$error.required"
-                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.
-                                    </small>
-                                    <div ng-show="issueAddForm.ipAddress.$error.pattern" class="help-block form-text text-danger"
+<!--                                    <small class="help-block form-text text-danger"-->
+<!--                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"-->
+<!--                                           ng-if="issueAddForm.ipAddress.$error.required"-->
+<!--                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.-->
+<!--                                    </small>-->
+                                    <div ng-if="issueAddForm['item_' + $index].$error.pattern" class="help-block form-text text-danger"
                                          translate="common.invalidipAdressFormat">IP二쇱냼 �삎�떇�씠 留욎� �븡�뒿�땲�떎.
                                     </div>
                                 </div>
 
                                 <div ng-switch-when="EMAIL">
                                     <input type="email" class="form-control input-sm"
-                                           name="email"
+                                           name="item_{{$index}}"
                                            maxlength="30"
                                            ng-model="issueCustomField.useValues"
                                            kr-input
                                            ng-pattern="/^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/"
                                            placeholder="�씠硫붿씪 �삎�떇留� �엯�젰 媛��뒫�빀�땲�떎."
                                            ng-required="issueCustomField.fieldOption == '01' || issueCustomField.customFieldVo.requiredData == 'Y'">
-                                    <small class="help-block form-text text-danger"
-                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"
-                                           ng-if="issueAddForm.ipAddress.$error.required"
-                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.
-                                    </small>
-                                    <div ng-show="issueAddForm.email.$error.pattern" class="help-block form-text text-danger"
+<!--                                    <small class="help-block form-text text-danger"-->
+<!--                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"-->
+<!--                                           ng-if="issueAddForm.ipAddress.$error.required"-->
+<!--                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.-->
+<!--                                    </small>-->
+                                    <div ng-if="issueAddForm['item_' + $index].$error.pattern" class="help-block form-text text-danger"
                                          translate="common.invalidEmailFormat">�씠硫붿씪 �삎�떇�씠 留욎� �븡�뒿�땲�떎.
                                     </div>
                                 </div>
 
                                 <div ng-switch-when="SITE">
                                     <input type="text" class="form-control input-sm"
-                                           name="site"
+                                           name="item_{{$index}}"
                                            ng-model="issueCustomField.useValues"
                                            maxlength="100"
                                            autocomplete="off"
@@ -334,19 +335,19 @@
                                            ng-pattern="/(https?:\/\/)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/"
                                            placeholder="�솃�럹�씠吏� 二쇱냼 �삎�떇留� �엯�젰 媛��뒫�빀�땲�떎."
                                            ng-required="issueCustomField.fieldOption == '01' || issueCustomField.customFieldVo.requiredData == 'Y'">
-                                    <small class="help-block form-text text-danger"
-                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"
-                                           ng-if="issueAddForm.site.$error.required"
-                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.
-                                    </small>
-                                    <div ng-show="issueAddForm.site.$error.pattern" class="help-block form-text text-danger"
+<!--                                    <small class="help-block form-text text-danger"-->
+<!--                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"-->
+<!--                                           ng-if="issueAddForm.site.$error.required"-->
+<!--                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.-->
+<!--                                    </small>-->
+                                    <div ng-if="issueAddForm['item_' + $index].$error.pattern" class="help-block form-text text-danger"
                                          translate="common.invalidSiteFormat">�솃�럹�씠吏� 二쇱냼 �삎�떇�씠 留욎� �븡�뒿�땲�떎.(http:// �삉�뒗 www 濡� �떆�옉�븯�뀛�빞�빀�땲�떎)
                                     </div>
                                 </div>
 
                                 <div ng-switch-when="TEL">
                                     <input type="text" class="form-control input-sm"
-                                           name="tel"
+                                           name="item_{{$index}}"
                                            ng-model="issueCustomField.useValues"
                                            maxlength="30"
                                            autocomplete="off"
@@ -354,12 +355,12 @@
                                            ng-pattern="/^\d{2,3}-\d{3,4}-\d{4}$/"
                                            placeholder="�뿰�씫泥� �삎�떇留� �엯�젰 媛��뒫�빀�땲�떎."
                                            ng-required="issueCustomField.fieldOption == '01' || issueCustomField.customFieldVo.requiredData == 'Y'">
-                                    <small class="help-block form-text text-danger"
-                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"
-                                           ng-if="issueAddForm.tel.$error.required"
-                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.
-                                    </small>
-                                    <div ng-show="issueAddForm.tel.$error.pattern" class="help-block form-text text-danger"
+<!--                                    <small class="help-block form-text text-danger"-->
+<!--                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"-->
+<!--                                           ng-if="issueAddForm.tel.$error.required"-->
+<!--                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.-->
+<!--                                    </small>-->
+                                    <div ng-if="issueAddForm['item_' + $index].$error.pattern" class="help-block form-text text-danger"
                                          translate="common.invalidTelFormat">�쟾�솕踰덊샇 �삎�떇�씠 留욎� �븡�뒿�땲�떎.
                                     </div>
                                 </div>
@@ -367,7 +368,7 @@
                                 <!-- �떒�씪 ���젆�듃 -->
                                 <div ng-switch-when="SINGLE_SELECT">
                                     <select class="form-control input-sm issue-select-label"
-                                            name="singleSelect"
+                                            name="item_{{$index}}"
                                             ng-required="issueCustomField.fieldOption == '01' || issueCustomField.customFieldVo.requiredData == 'Y'"
                                             ng-model="issueCustomField.useValues">
                                         <option value="" value="" translate="common.choose">�꽑�깮�븯�꽭�슂.</option>
@@ -377,11 +378,11 @@
                                             {{customFieldValueVo.value}}
                                         </option>
                                     </select>
-                                    <small class="help-block form-text text-danger"
-                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"
-                                           ng-if="issueAddForm.singleSelect.$error.required"
-                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.
-                                    </small>
+<!--                                    <small class="help-block form-text text-danger"-->
+<!--                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"-->
+<!--                                           ng-if="issueAddForm.singleSelect.$error.required"-->
+<!--                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.-->
+<!--                                    </small>-->
                                 </div>
 
                                 <!-- 硫��떚 ���젆�듃 -->
@@ -395,11 +396,11 @@
                                     <input class="form-control input-sm issue-select-label"
                                            type="hidden" name="multiSelect" ng-model="issueCustomField.useValues[0]"
                                            ng-required="issueCustomField.fieldOption == '01' || issueCustomField.customFieldVo.requiredData == 'Y'">
-                                    <small class="help-block form-text text-danger"
-                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"
-                                           ng-if="issueAddForm.multiSelect.$error.required"
-                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.
-                                    </small>
+<!--                                    <small class="help-block form-text text-danger"-->
+<!--                                           ng-show="issueCustomField.customFieldVo.requiredData == 'Y'"-->
+<!--                                           ng-if="issueAddForm.multiSelect.$error.required"-->
+<!--                                           translate="issue.pleaseEnterIssueTypeCustomFields">�빐�떦 �궗�슜�옄 �젙�쓽 �븘�뱶�뒗 �븘�닔 �엯�젰 媛� �엯�땲�떎.-->
+<!--                                    </small>-->
                                 </div>
                             </div>
                         </div>
@@ -425,6 +426,7 @@
                         <js-autocomplete-single data-input-name="issueCompanyField"
                                                 selected-model="vm.form.issueCompanyFields"
                                                 search="vm.companyName"
+                                                custom-input="true"
                                                 source="fn.getIssueCompanyFieldList(vm.companyName, vm.form.issueCompanyFields, vm.autoCompletePage.companyField.page, fn.getIssueCompanyFieldListCallBack)"
                                                 page="vm.autoCompletePage.companyField.page"
                                                 total-page="vm.autoCompletePage.companyField.totalPage"

--
Gitblit v1.8.0