FIX_code Reverted

This commit is contained in:
venba-Inspriron-3558 2025-11-29 14:45:06 +05:30
parent 8389afbf5a
commit 91c0547d8f
2 changed files with 16 additions and 8 deletions

View File

@ -244,6 +244,12 @@
->where('user_profiles.is_active', 1) ->where('user_profiles.is_active', 1)
->findAll(); ->findAll();
// Fetch Partner Agent
$data['partner_agent'] = db_connect()->table('partner_agent')
->where('is_active', 1)
->get()
->getResultArray();
// Fetch ACM // Fetch ACM
$data['ACM'] = $this->userModel $data['ACM'] = $this->userModel
->where('role', 3) // Assuming `role` is in `user_profiles` ->where('role', 3) // Assuming `role` is in `user_profiles`

View File

@ -1,6 +1,6 @@
<style> <style>
/** CSS changes are not applying on the Client Onboarding screen . so i implement this CSS fixes . */ /** 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; max-width: 500px !important;
margin: 1.75rem auto !important; margin: 1.75rem auto !important;
} }
@ -9,13 +9,12 @@
max-width: 500px !important; max-width: 500px !important;
margin: 1.75rem auto !important; margin: 1.75rem auto !important;
} }
} } */
</style> </style>
<div class="modal fade" id="New_Ticket_modal" tabindex="-1" role="dialog" aria-hidden="true"> <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-dialog modal-dialog-centered">
<div class="modal-content" style="height: 200px !important;"> <div class="modal-content"> <!-- style="height: 200px !important;" -->
<div class="modal-header"> <div class="modal-header">
<h4 class="modal-title" id="myCenterModalLabel"></h4> <h4 class="modal-title" id="myCenterModalLabel"></h4>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
@ -33,12 +32,15 @@
</select> </select>
</div> </div>
</div> </div>
<div class="form-row"> <!--
<div class="form-group col-md-12 text-right"> <div class="form-row">
<!-- <div class="form-group col-md-12 text-end"> --> <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> <button type="button" class="btn btn-primary mt-1" onclick="submitToRedirectTicketNewUrl(this)">Submit</button>
</div> </div>
</div> </div>-->
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" onclick="submitToRedirectTicketNewUrl(this)">Submit</button>
</div> </div>
</div> </div>
</div> </div>