| Line 2... |
Line 2... |
| 2 |
<div class="modal-header">
|
2 |
<div class="modal-header">
|
| 3 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
3 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
| 4 |
<h4 class="modal-title">Change Ticket</h4>
|
4 |
<h4 class="modal-title">Change Ticket</h4>
|
| 5 |
</div>
|
5 |
</div>
|
| 6 |
<div class="modal-body">
|
6 |
<div class="modal-body">
|
| - |
|
7 |
|
| - |
|
8 |
<div class="container" style="width:650px">
|
| - |
|
9 |
<h3>Ticket Assign By Category</h3>
|
| 7 |
<form id="create-ticket-form">
|
10 |
<form id="create-ticket-form">
|
| 8 |
<div class = "row">
|
11 |
<div class = "row">
|
| 9 |
<input id="ticketId" value="$ticket.getId()" hidden>
|
12 |
<input id="ticketId" value="$ticket.getId()" hidden>
|
| 10 |
<div class="col-lg-3 form-group">
|
13 |
<div class="col-lg-3 form-group">
|
| 11 |
<select class="form-control input-sm" id = "category" name="category" placeholder="Type">
|
14 |
<select class="form-control input-sm" id = "category" name="category" placeholder="Type">
|
| Line 27... |
Line 30... |
| 27 |
<option value="$ticketSubCategory.getSubCategoryId()">$ticketSubCategory.getName()</option>
|
30 |
<option value="$ticketSubCategory.getSubCategoryId()">$ticketSubCategory.getName()</option>
|
| 28 |
#end
|
31 |
#end
|
| 29 |
#end
|
32 |
#end
|
| 30 |
</select>
|
33 |
</select>
|
| 31 |
</div>
|
34 |
</div>
|
| - |
|
35 |
|
| - |
|
36 |
<div class="col-lg-3">
|
| - |
|
37 |
<input class="btn btn-primary change-ticket-button" type="button" value="Change">
|
| - |
|
38 |
</div>
|
| - |
|
39 |
</div>
|
| - |
|
40 |
</form>
|
| - |
|
41 |
</div>
|
| - |
|
42 |
|
| - |
|
43 |
<div class="container" style="width:650px">
|
| - |
|
44 |
<h3>Ticket Assign By User</h3>
|
| - |
|
45 |
|
| - |
|
46 |
|
| - |
|
47 |
<form id="create-ticket-form-individual">
|
| - |
|
48 |
<div class = "row">
|
| - |
|
49 |
<input id="ticketId" value="$ticket.getId()" hidden>
|
| - |
|
50 |
|
| 32 |
<div class="col-lg-3 form-group" id="auth-user-for-category">
|
51 |
<div class="col-lg-3 form-group">
|
| 33 |
<select class="form-control input-sm" id="authUser" name="authUser" placeholder="subCategory">
|
52 |
<select class="form-control input-sm" id="authUserCategory" name="authUserCategory" placeholder="Auth User">
|
| 34 |
#foreach($authUser in $authUsers)
|
53 |
#foreach($authUser in $authUsers)
|
| 35 |
#if($authUser.getId()==$ticket.getL1AuthUser())
|
54 |
#if($authUser.getId()==$ticket.getL1AuthUser())
|
| 36 |
<option value="$authUser.getId()" selected>$authUser.getFirstName()</option>
|
55 |
<option value="$authUser.getId()" selected>$authUser.getFirstName()</option>
|
| 37 |
#else
|
56 |
#else
|
| 38 |
<option value="$authUser.getId()">$authUser.getFirstName()</option>
|
57 |
<option value="$authUser.getId()">$authUser.getFirstName()</option>
|
| 39 |
#end
|
58 |
#end
|
| 40 |
#end
|
59 |
#end
|
| 41 |
</select>
|
60 |
</select>
|
| - |
|
61 |
</div>
|
| - |
|
62 |
<div class="col-lg-3 form-group" id="create-tickets-categories-for-auth">
|
| - |
|
63 |
<select class="form-control input-sm" id = "categoryAuth" name="categoryAuth" placeholder="category">
|
| - |
|
64 |
#foreach($ticketCategory in $ticketCategories)
|
| - |
|
65 |
#if($ticketCategory.getId()==$ticketSubCategory.getcategoryId())
|
| - |
|
66 |
<option value="$ticketCategory.getId()" selected>$ticketCategory.getDescription()</option>
|
| - |
|
67 |
#else
|
| - |
|
68 |
<option value="$ticketCategory.getId()">$ticketCategory.getDescription()</option>
|
| - |
|
69 |
#end
|
| - |
|
70 |
#end
|
| - |
|
71 |
</select>
|
| - |
|
72 |
</div>
|
| - |
|
73 |
<div class="col-lg-3 form-group" id="create-ticket-sub-categories-for-auth">
|
| - |
|
74 |
<select class="form-control input-sm" id="subCategory" name="subCategory" placeholder="subCategory">
|
| - |
|
75 |
#foreach($ticketSubCategory in $ticketSubCategories)
|
| - |
|
76 |
#if($ticket.getSubCategoryId()==$ticketSubCategory.getId())
|
| - |
|
77 |
<option value="$ticket.getSubCategoryId()" selected>$ticketSubCategory.getName()</option>
|
| - |
|
78 |
#else
|
| - |
|
79 |
<option value="$ticketSubCategory.getSubCategoryId()">$ticketSubCategory.getName()</option>
|
| - |
|
80 |
#end
|
| - |
|
81 |
#end
|
| - |
|
82 |
</select>
|
| 42 |
</div>
|
83 |
</div>
|
| - |
|
84 |
</div>
|
| - |
|
85 |
|
| - |
|
86 |
<div class = "row">
|
| - |
|
87 |
|
| - |
|
88 |
<div class="col-lg-3 form-group" id="create-ticket-escalationType-for-auth">
|
| - |
|
89 |
<select class="form-control input-sm" id = "escalationType" name="escalationType" placeholder="escalationType">
|
| - |
|
90 |
<option value="" disabled selected>EscalationType</option>
|
| - |
|
91 |
#foreach($escalationType in $escalationTypes)
|
| - |
|
92 |
<option value="$escalationType">$escalationType</option>
|
| - |
|
93 |
#end
|
| - |
|
94 |
</select>
|
| - |
|
95 |
</div>
|
| 43 |
<div class="col-lg-3">
|
96 |
<div class="col-lg-2">
|
| 44 |
<input class="btn btn-primary change-ticket-button" type="button" value="Change">
|
97 |
<input class="btn btn-primary change-ticket-auth-button" type="button" value="Change">
|
| 45 |
</div>
|
98 |
</div>
|
| - |
|
99 |
</div>
|
| 46 |
</div>
|
100 |
</div>
|
| 47 |
</form>
|
101 |
</form>
|
| - |
|
102 |
|
| - |
|
103 |
</div>
|
| 48 |
</div>
|
104 |
</div>
|
| 49 |
<div class="modal-footer">
|
105 |
<div class="modal-footer">
|
| 50 |
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
106 |
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
| 51 |
</div>
|
107 |
</div>
|
| 52 |
|
108 |
|