FIX_code Reverted
This commit is contained in:
parent
8389afbf5a
commit
91c0547d8f
@ -244,6 +244,12 @@
|
||||
->where('user_profiles.is_active', 1)
|
||||
->findAll();
|
||||
|
||||
// Fetch Partner Agent
|
||||
$data['partner_agent'] = db_connect()->table('partner_agent')
|
||||
->where('is_active', 1)
|
||||
->get()
|
||||
->getResultArray();
|
||||
|
||||
// Fetch ACM
|
||||
$data['ACM'] = $this->userModel
|
||||
->where('role', 3) // Assuming `role` is in `user_profiles`
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<style>
|
||||
/** CSS changes are not applying on the Client Onboarding screen . so i implement this CSS fixes . */
|
||||
#New_Ticket_modal .modal-dialog {
|
||||
/* #New_Ticket_modal .modal-dialog {
|
||||
max-width: 500px !important;
|
||||
margin: 1.75rem auto !important;
|
||||
}
|
||||
@ -9,13 +9,12 @@
|
||||
max-width: 500px !important;
|
||||
margin: 1.75rem auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
} */
|
||||
</style>
|
||||
|
||||
<div class="modal fade" id="New_Ticket_modal" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content" style="height: 200px !important;">
|
||||
<div class="modal-content"> <!-- style="height: 200px !important;" -->
|
||||
<div class="modal-header">
|
||||
<h4 class="modal-title" id="myCenterModalLabel"></h4>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
@ -33,12 +32,15 @@
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12 text-right">
|
||||
<!-- <div class="form-group col-md-12 text-end"> -->
|
||||
<!--
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12 text-right"><!- text-end ->
|
||||
<button type="button" class="btn btn-primary mt-1" onclick="submitToRedirectTicketNewUrl(this)">Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>-->
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-primary" onclick="submitToRedirectTicketNewUrl(this)">Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user