MERGE_UAT_MINIOR_ISSUES

This commit is contained in:
Ubuntu 2026-05-04 12:08:58 +05:30
commit 2ee7d21b3e
10 changed files with 19 additions and 6 deletions

View File

@ -4664,6 +4664,9 @@ class EmployeeRestController extends AdminController
$employeeController = new EmployeeController();
$responce = $employeeController->employeesUplodWithEvents($post_data);
// print_r($responce); die;
if ($responce['status']) {
$this->giveNotificationToClientsAccountManager($post_data);
}
return $responce;

View File

@ -1520,6 +1520,8 @@ class EmployeeServiceController extends AdminController
if(count($employee_data_group_by_family ?? []) && isset($params['batch_file_id'])){
$r = Jobs::addJob(['job_name' => 'updateEmployeeDataFromTpa','payload' => ['file_id' => $file_id, 'batch_file_id' => $params['batch_file_id']]]);
$r = Jobs::addJob(['job_name' => 'reconTpaApiDataWithEmployeepolicies','payload' => ['file_id' => $params['batch_file_id']]]);
$r = Jobs::addJob(['job_name' => 'initializeDeletionProcessForTpaApiData','payload' => ['file_id' => $params['batch_file_id']]]);
$this->myLogger->logme("info", 'Batch file id {batch_file_id} processed successfully', ['batch_file_id' => $params['batch_file_id']]);
}

View File

@ -2165,7 +2165,7 @@ class LeadsController extends BaseController
} // dd($data);
$lead_data = [];
if (in_array((int) $rfq_data['lead_type'], [1, 3], true)) {
if (in_array((int) $rfq_data['lead_type'], [1], true)) {
if (in_array($rfq_data['policy_type_id'], [2, 3, 4, 5])) {
$lead_data = [

View File

@ -3061,6 +3061,11 @@ if (!function_exists('validate_date_value')) {
if (!function_exists('validate_mobile_value')) {
function validate_mobile_value($value)
{
if(empty($value))
{
return ['status' => true, 'error' => null];
}
if (preg_match('/^[0-9]{10}$/', $value)) {
return ['status' => true, 'error' => null];
}

View File

@ -618,6 +618,7 @@
<input type="file" class="form-control" id="${fileId}" name="file_upload[]" accept=".pdf,.jpg,.jpeg,.png" required
data-parsley-required-message="File is required."
data-parsley-claimfileext-message="Only PDF, JPG, JPEG, and PNG files are allowed.">
<small class="text-muted"> Allowed: PDF, JPG, JPEG, PNG. </small>
</div>
<div class="form-group col-md-2" style="position: relative; top: 28px;">
<a class="btn btn-danger waves-effect waves-light" onclick="removeHTMLInput(this)" style="background-color: #BD0707;">

View File

@ -5,6 +5,7 @@
<div class="col-lg-12">
<div class="card" id="collapseOne">
<div class="card-body">
<small class="text-danger"> * Allowed: PDF, JPG, JPEG, PNG. </small>
<div class="table-responsive">
<table data-custom-table-css="second-table" id="kyc_table" class="table table-sm mb-0">
<thead>

View File

@ -113,7 +113,7 @@
<body>
<main class="error-wrapper">
<img class="error-image" src="<?= base_url()."public"; ?>/assets/images/errors/403_illustration.jpeg" alt="403 access denied">
<img class="error-image" src="<?= base_url()."public"; ?>/assets/images/errors/403_illustration.png" alt="403 access denied">
<h1 class="error-title">ACCESS DENIED</h1>
<p class="error-subtitle">
<?= isset($message) && !empty($message) ? $message : "You don't have permission to access this page." ?>

View File

@ -1229,7 +1229,7 @@ function nonebAddFileUploadHtml() {
var row = document.createElement('div');
row.className = 'form-row dynamic-form-row';
row.innerHTML = '<div class="form-group col-md-5"><label>Document Name <span class="text-danger">*</span></label><input type="text" class="form-control" name="docs_name[]" placeholder="Enter file name" required></div>' +
'<div class="form-group col-md-5"><label>Choose File <span class="text-danger">*</span></label><input type="file" class="form-control" name="file_upload[]" accept=".pdf,.jpg,.jpeg,.png" required></div>' +
'<div class="form-group col-md-5"><label>Choose File <span class="text-danger">*</span></label><input type="file" class="form-control" name="file_upload[]" accept=".pdf,.jpg,.jpeg,.png" required><small class="text-muted"> Allowed: PDF, JPG, JPEG, PNG. </small></div>' +
'<div class="form-group col-md-2" style="position:relative;top:28px;"><a class="btn btn-danger btn-sm" onclick="nonebRemoveHTMLInput(this)"><i class="mdi mdi-delete"></i></a></div>';
container.appendChild(row);
}

View File

@ -449,7 +449,7 @@
</div>
<input type="file" id="Question_title_fileInput" style="display: none;">
<small class="text-danger"> * Allowed: PDF, JPG, JPEG, PNG. </small>
<table data-custom-table-css="table" id="attachment_table_common" class="table table-sm mb-0" style="margin-top: 30px;">
<thead>
<tr>
@ -537,7 +537,7 @@
</div>
<input type="file" id="Question_title_fileInput" style="display: none;">
<small class="text-danger"> * Allowed: PDF, JPG, JPEG, PNG. </small>
<table data-custom-table-css="table" id="attachment_table" class="table table-sm mb-0" style="margin-top: 30px;">
<thead>
<tr>
@ -642,7 +642,7 @@
<input type="file" id="Question_title_fileInput" style="display: none;">
<small class="text-danger"> * Allowed: PDF, JPG, JPEG, PNG. </small>
<table data-custom-table-css="table" id="attachment_table_reminder" class="table table-sm mb-0" style="margin-top: 30px;">
<thead>
<tr>
@ -738,6 +738,7 @@
<input type="file" id="Question_title_fileInput" style="display: none;">
<small class="text-danger"> * Allowed: PDF, JPG, JPEG, PNG. </small>
<table data-custom-table-css="table" id="attachment_table_ecard" class="table table-sm mb-0" style="margin-top: 30px;">
<thead>
<tr>

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB