FIX_TKT notes alignment
This commit is contained in:
parent
8004860377
commit
944f4c1f81
@ -199,19 +199,19 @@
|
|||||||
|
|
||||||
<!-- Input Card -->
|
<!-- Input Card -->
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
<form id="conversationForm">
|
||||||
|
<input type="hidden" id="notes_type" name="notes_type">
|
||||||
|
<input type="hidden" id="thz_id" name="thz_id">
|
||||||
|
<input type="hidden" id="notes_by" name="notes_by" value="Staff">
|
||||||
|
<input type="hidden" id="created_by" name="created_by" value="<?= get_session_userid(); ?>">
|
||||||
<div class="notes-box">
|
<div class="notes-box">
|
||||||
<form id="conversationForm">
|
<textarea class="form-control" id="notes" name="notes" placeholder="Write your notes here..."></textarea>
|
||||||
<textarea class="form-control" id="notes" name="notes" placeholder="Write your notes here..."></textarea>
|
<div class="icon-buttons">
|
||||||
<input type="hidden" id="notes_type" name="notes_type">
|
<button type="button" class="btn-icon" onclick="submitConverstionTicket('External')"><i class="mdi mdi-content-save"></i></button>
|
||||||
<input type="hidden" id="thz_id" name="thz_id">
|
<button type="button" class="btn-icon" onclick="submitConverstionTicket('Internal')"><i class="mdi mdi-email"></i></button>
|
||||||
<input type="hidden" id="notes_by" name="notes_by" value="Staff">
|
</div>
|
||||||
<input type="hidden" id="created_by" name="created_by" value="<?= get_session_userid(); ?>">
|
|
||||||
<div class="icon-buttons">
|
|
||||||
<button type="button" class="btn-icon" onclick="submitConverstionTicket('External')"><i class="mdi mdi-content-save"></i></button>
|
|
||||||
<button type="button" class="btn-icon" onclick="submitConverstionTicket('Internal')"><i class="mdi mdi-email"></i></button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
</div>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -403,7 +403,6 @@
|
|||||||
success: function(response) {
|
success: function(response) {
|
||||||
if (response.status === "success") {
|
if (response.status === "success") {
|
||||||
toastr.success(response.message, 'success');
|
toastr.success(response.message, 'success');
|
||||||
$('#ticketModal').modal('hide');
|
|
||||||
form.reset();
|
form.reset();
|
||||||
window.location.href = "<?= base_url('ticketConversationList?return_type=web¬es_ticket_type=Internal&thz_id=') ?>" + id;
|
window.location.href = "<?= base_url('ticketConversationList?return_type=web¬es_ticket_type=Internal&thz_id=') ?>" + id;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user