diff --git a/app/Config/Routes.php b/app/Config/Routes.php index b4380b4b..7917751a 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -254,9 +254,7 @@ $routes->group("/api", ["filter" => "authJWT"], function ($routes) { $routes->post("getId", "RestAuthenticationController::getUserIdFromToken"); }); -$routes->get("/getEmployeeProfile", "EmployeeRestController::getEmployeeProfile/$1"); -$routes->post("/editEmployeeProfile", "EmployeeRestController::editEmployeeProfile"); -$routes->post("/calculatePremium", "EmployeeRestController::calculatePremium"); + @@ -288,11 +286,14 @@ $routes->group("employeeRest", ["filter" => "authJWT"], function ($routes) { $routes->get("getEmployeeOldPolicy", "EmployeeRestController::getEmployeeOldPolicy"); $routes->get("getEmployeeActiveOrInactivePolicy", "EmployeeRestController::getEmployeeActiveOrInactivePolicy"); + $routes->get("getFEContent", "EmployeeRestController::getFEContent"); + $routes->get("getAdvertisementImage", "EmployeeRestController::getAdvertisementImage"); }); $routes->post("sendEmail", "EmployeeRestController::send_email"); + diff --git a/app/Controllers/EmpDataServiceController.php b/app/Controllers/EmpDataServiceController.php index 3c7b8860..1b3fa587 100644 --- a/app/Controllers/EmpDataServiceController.php +++ b/app/Controllers/EmpDataServiceController.php @@ -146,19 +146,20 @@ class EmpDataServiceController extends BaseController $totals = round($totals, 2); - $this->removeOldExportInfoFromBatchFile($export_data); - - if (!empty($cash_balance)) { if ((int) $cash_balance['balance'] < (int) $totals) { - + $this->myLogger->logme('error', 'Inception export failed due to insufficient deposit amount.'); + $this->myLogger->logme('error', 'Inception export failed due to insufficient deposit amount. CASH BALANCE : {balance} and TOTAL AMOUNT : {total}', ['balance' => $cash_balance['balance'], 'total' => $totals]); return 0; } } + $this->removeOldExportInfoFromBatchFile($export_data); + + // Log the count of exported data $count = count($objects); $export_data['count'] = $count; diff --git a/app/Controllers/EmployeeController.php b/app/Controllers/EmployeeController.php index 644c97ff..61c66278 100644 --- a/app/Controllers/EmployeeController.php +++ b/app/Controllers/EmployeeController.php @@ -974,6 +974,14 @@ class EmployeeController extends AdminController '{INSURER_BRANCH}' =>$value['insurer_branch_city'], '{RELATION}' =>$value['relationship'], '{TPA_LOGO}' => base_url() . 'public/uploads/logo/' . $value['tpa_logo'], + '{MEDI_USER}' => base_url() . 'public/e_card_imgs/medi_uesr.jpg', + '{MEDI_INSURER}' => base_url() . 'public/e_card_imgs/Magma.png', + '{MEDI_BARCODE}' => base_url() . 'public/e_card_imgs/borcode.jpeg', + '{QR_ANDROID}' => base_url() . 'public/e_card_imgs/android.png', + '{QR_IOS}' => base_url() . 'public/e_card_imgs/ios.png', + '{QR_ANDROID_2}' => base_url() . 'public/e_card_imgs/play_store.png', + '{QR_IOS_2}' => base_url() . 'public/e_card_imgs/appstore.png', + ]; // Replace placeholders with values in HTML content @@ -1198,6 +1206,14 @@ class EmployeeController extends AdminController '{BACK_CARD}' => base_url() . 'public/uploads/template_bg/' . $tpa_id['back_card'], '{TPA_LOGO}' => base_url() . 'public/uploads/logo/' . $tpa_id['tpa_logo'], '{INSURER_LOGO}' => base_url() . 'public/assets/images/sample_logo_3.png', + '{MEDI_USER}' => base_url() . 'public/e_card_imgs/medi_uesr.jpg', + '{MEDI_INSURER}' => base_url() . 'public/e_card_imgs/Magma.png', + '{MEDI_BARCODE}' => base_url() . 'public/e_card_imgs/borcode.jpeg', + '{QR_ANDROID}' => base_url() . 'public/e_card_imgs/android.png', + '{QR_IOS}' => base_url() . 'public/e_card_imgs/ios.png', + '{QR_ANDROID_2}' => base_url() . 'public/e_card_imgs/play_store.png', + '{QR_IOS_2}' => base_url() . 'public/e_card_imgs/appstore.png', + ]; // Get the values to replace the placeholders diff --git a/app/Controllers/EmployeeRestController.php b/app/Controllers/EmployeeRestController.php index b6fbcf86..a14aac42 100644 --- a/app/Controllers/EmployeeRestController.php +++ b/app/Controllers/EmployeeRestController.php @@ -25,6 +25,9 @@ use App\Models\PolicyPremium2Model; use App\Models\PolicyTypeModel; use App\Models\NotificationModel; use App\Models\UserModel; +use App\Models\FEContentModel; +use App\Models\AddImgModel; + use App\Controllers\Jobs ; use App\Controllers\JobWorker ; @@ -57,6 +60,8 @@ class EmployeeRestController extends AdminController protected $policyTypeModel; protected $notificationModel; protected $userModel; + protected $feContentModel; + protected $addImgModel; public function __construct() { @@ -76,6 +81,8 @@ class EmployeeRestController extends AdminController $this->policyTypeModel = new PolicyTypeModel(); $this->notificationModel = new NotificationModel(); $this->userModel = new UserModel(); + $this->feContentModel = new FEContentModel(); + $this->addImgModel = new AddImgModel(); } @@ -355,7 +362,7 @@ class EmployeeRestController extends AdminController $Gender = $this->employeeModel->where('emp_code',$empCode)->where('relationship','Self')->get()->getRow()->gender; if($Gender == 'M'){ return 'F'; }else{ return 'M'; } } -} + } private function convertDateFormatYMD($dateString) { @@ -1363,16 +1370,17 @@ public function getAddOnPolicy() ->where('client_branch_id',$this->request->getGet('client_branch_id')) ->where('is_addon_value',1)->findAll(); - + $clientPolicy = $this->clientPolicyModel->where('client_id',$this->request->getGet('client_id')) ->where('client_branch_id',$this->request->getGet('client_branch_id')) ->where('policy_status', 1) ->findAll(); - + if(count($clientPolicy)) { $band = $this->employeeModel->where('is_active', 1 )->where('emp_code',$this->request->getGet('emp_code'))->where('client_id',$this->request->getGet('client_id'))->where('client_branch_id',$this->request->getGet('client_branch_id'))->where('family_floater_key','self')->get()->getRow()->band; + $PolicyData = []; foreach ($clientPolicy as $key => $array) { $responce = []; @@ -1388,9 +1396,16 @@ public function getAddOnPolicy() $uniqueData[] = $item; } }else{ - if (!in_array($item['si'], $siValues)) { - $uniqueData[] = $item; - $siValues[] = $item['si']; + if (!in_array($item['si'], $siValues) ) { + + if ($item['policy_grid_id'] == 11 && ($item['max_si'] != 0 || $item['max_si'] != null)) { + $uniqueData[] = $item; + $siValues[] = $item['si']; + }else if($item['policy_grid_id'] != 11){ + $uniqueData[] = $item; + $siValues[] = $item['si']; + } + } } @@ -2136,41 +2151,20 @@ function policyTermsFiter($terms , $type) $gmc = [ "sum_insured" => "Sum Insured", - "member_count" => "Elders Count:", - "other_member_min_age" => "Min Age:", - "other_member_max_age" => "Min Age:", "waiverofpreexistingdiseases" => "Waiver of Pre-existing Diseases", + "maternitycoverage" => "Maternity Coverage", + "babyday1cover" => "Baby Day 1 Cover", "9monthwaitingperiodwaived" => "9-month waiting Period –waived", "coverfromthedateofjoining" => "Cover from the date of Joining", "waiverof1,2,3&4thyearexclusions" => "Waiver of 1, 2, 3 & 4th year Exclusions", "waiverof30dayswaitingperiod" => "Waiver of 30 days waiting period", "prehospitalizationcover" => "Pre Hospitalization Cover", - "congenitaldiseasesinternal" => "Congenital Diseases - Internal", "copayzonewisecopay" => "Co-Pay/Zone wise Co Pay", - "bioabsorbablestenttoriclensmultifocallens" => "Bio absorbable stent / Toric lens/ Multi Focal lens", "roomrentlimit" => "Room Rent Limit", - "proportionatedeductionclause" => "Proportionate Deduction Clause", - "nursingallowance" => "Nursing Allowance", "ailmentcapping" => "Ailment capping", - "ambulancecharges" => "Ambulance Charges", - "airambulance" => "Air Ambulance", - "familytransportationbenefit" => "Family Transportation Benefit", - "reasonableandcustomarycharges" => "Reasonable and Customary Charges", - "daycaretreatment" => "Day Care Treatment", - "ayudhtreatmentcover" => "AYUSH treatment cover", - "armdcovered" => "ARMD Covered", - "suminsuredenhancement" => "Sum Insured enhancement", - "automaticsuminsuredreinstatement" => "Automatic Sum Insured reinstatement", - "additionalsicknessbenefit" => "Additional Sickness Benefit", - "lasiksurgery" => "Lasik Surgery", - "midterminclusion" => "Mid Term inclusion", - "capd" => "CAPD", - "organdonorexpenses" => "Organ donor expenses", - "moderntreatmentsasperirdai" => "Modern treatments as per IRDAI", - "days_of_discharge" => "Claim Intimation Clause", - "days_from_dod" => "Claim Submission", - "cataract" => "Cataract" ]; + + $finalarray = []; if($type == 'gpa'){ @@ -2203,4 +2197,46 @@ private function convertDateFormatDisplay($dateString) } } +public function getFEContent() +{ + try { + + $feContentData = $this->feContentModel->findAll(); + if (count($feContentData) > 0) { + + return $this->respond(['status' => 'success','code' => 200,'data' => $feContentData ],200); + + } else { + + return $this->respond(['status' => 'failed','code' => 404,'data' => 'No Data'],404); + } + } catch (\Throwable $th) { + return $this->respond(['status' => 'failed','code' => 500,'data' => $th],500); + } +} + +public function getAdvertisementImage() +{ + try { + + $img = $this->addImgModel->where('is_active',1)->findAll(); + + if (count($img) > 0) { + $data=[]; + foreach ($img as $key => $value) { + $url = base_url('public/uploads/add_image_upload/').$value['name']; + array_push($data,$url); + } + + return $this->respond(['status' => 'success','code' => 200,'data' => $data ],200); + + } else { + + return $this->respond(['status' => 'failed','code' => 404,'data' => 'No Data'],404); + } + } catch (\Throwable $th) { + return $this->respond(['status' => 'failed','code' => 500,'data' => $th],500); + } +} + } \ No newline at end of file diff --git a/app/Models/AddImgModel.php b/app/Models/AddImgModel.php new file mode 100644 index 00000000..130da9f6 --- /dev/null +++ b/app/Models/AddImgModel.php @@ -0,0 +1,21 @@ + \ No newline at end of file diff --git a/app/Models/FEContentModel.php b/app/Models/FEContentModel.php new file mode 100644 index 00000000..c1b572d3 --- /dev/null +++ b/app/Models/FEContentModel.php @@ -0,0 +1,25 @@ + \ No newline at end of file diff --git a/app/Views/UserList.php b/app/Views/UserList.php index bb51b99d..219eb11c 100644 --- a/app/Views/UserList.php +++ b/app/Views/UserList.php @@ -44,7 +44,7 @@ table.dataTable tbody td {

User List

-
+
diff --git a/app/Views/client_policy.php b/app/Views/client_policy.php index 18d6ee36..34a1cd9e 100644 --- a/app/Views/client_policy.php +++ b/app/Views/client_policy.php @@ -1018,7 +1018,7 @@ 80: "Eighty", 90: "Ninety" }; - + function convertNumberToWords(number) { if (number === 0) { return numberWords[number]; @@ -1027,22 +1027,34 @@ let word = ''; if (number >= 10000000) { - word += convertNumberToWords(Math.floor(number / 10000000)) + " Crore "; + const crore = Math.floor(number / 10000000); + if (crore > 0) { + word += convertNumberToWords(crore) + " Crore "; + } number %= 10000000; } if (number >= 100000) { - word += convertNumberToWords(Math.floor(number / 100000)) + " Lakh "; + const lakh = Math.floor(number / 100000); + if (lakh > 0) { + word += convertNumberToWords(lakh) + " Lakh "; + } number %= 100000; } if (number >= 1000) { - word += convertNumberToWords(Math.floor(number / 1000)) + " Thousand "; + const thousand = Math.floor(number / 1000); + if (thousand > 0) { + word += convertNumberToWords(thousand) + " Thousand "; + } number %= 1000; } if (number >= 100) { - word += convertNumberToWords(Math.floor(number / 100)) + " Hundred "; + const hundred = Math.floor(number / 100); + if (hundred > 0) { + word += convertNumberToWords(hundred) + " Hundred "; + } number %= 100; } @@ -1059,44 +1071,66 @@ return word.trim(); } + function convertCommaNumberToWords(input) { + let number; if (input instanceof HTMLElement) { const inputValue = input.value; - number = parseInt(inputValue.replace(/,/g, ''), 10); - var convert_word_value = convertNumberToWords(number); - - if (input.nextElementSibling !== null) { - input.nextElementSibling.textContent = convert_word_value; - } + number = parseFloat(inputValue.replace(/,/g, ''), 10); } else { - number = parseInt(input.replace(/,/g, ''), 10); + number = parseFloat(input.replace(/,/g, ''), 10); } - var convert_word_value = convertNumberToWords(number); - return convert_word_value; + const [integerPart, decimalPart] = number.toFixed(2).split('.'); + const integerWord = convertNumberToWords(parseInt(integerPart, 10)); + let result = `${integerWord}`; + + console.log('decimalPart',decimalPart) + console.log('decimalPart',typeof decimalPart) + + if (decimalPart != '00' && decimalPart != undefined) { + result += ` and `; + let decimalWord = convertNumberToWords(parseInt(decimalPart, 10)) + result += `${decimalWord}` + result += ` Paisa`; + } + + return result.trim(); } + function onlyNumbers(event) { var charcode; charcode = event.which || event.keyCode; - if (charcode >= 48 && charcode <= 57) return true; + if (charcode >= 48 && charcode <= 57 || charcode == 46) return true; return false; } function formatNumber(input, maxLength) { - // console.log("input", input); + console.log("input", input); + console.log("input value", input.value); + maxLength = 16; - let value = input.value.replace(/\D/g, ''); // Remove non-numeric characters + let value = input.value.replace(/[^\d.]/g, ''); // Remove non-numeric characters + console.log('Remove non-numeric characters', value) + // Limit the number of digits value = value.slice(0, maxLength); + console.log('Limited value', value); + // Format the number with commas using Indian numbering system - value = Number(value).toLocaleString('en-IN'); - input.value = value; + value = parseFloat(value).toLocaleString("en-IN",{ + maximumFractionDigits: 2 + }); + + console.log('formetted value', value); + + input.value = (value); basicPayMultiple(input) if (input.id == 'gpa_si') { diff --git a/app/Views/insurer_basic_info.php b/app/Views/insurer_basic_info.php index a6671c62..8ba9dcc2 100644 --- a/app/Views/insurer_basic_info.php +++ b/app/Views/insurer_basic_info.php @@ -60,8 +60,6 @@ input:checked + .slider:before { } - -
diff --git a/app/Views/insurer_list.php b/app/Views/insurer_list.php index 9a24b1de..0487ca37 100644 --- a/app/Views/insurer_list.php +++ b/app/Views/insurer_list.php @@ -6,7 +6,7 @@

Insurer List

- diff --git a/app/Views/kyc_list.php b/app/Views/kyc_list.php index a4bb712a..ec460a28 100644 --- a/app/Views/kyc_list.php +++ b/app/Views/kyc_list.php @@ -6,7 +6,7 @@

KYC List

- diff --git a/app/Views/login.php b/app/Views/login.php index e6519f06..580a9a0e 100644 --- a/app/Views/login.php +++ b/app/Views/login.php @@ -30,6 +30,18 @@ a:hover { cursor: pointer; } + + + /* .auth-fluid { + position: relative; + display: flex; + align-items: center; + min-height: 100vh; + flex-direction: row; + align-items: stretch; + background: url("/assets/images/login_bg.png") center !important; + background-size: cover; + } */ diff --git a/app/Views/policy_grid.php b/app/Views/policy_grid.php index dc1747d7..f69a7648 100644 --- a/app/Views/policy_grid.php +++ b/app/Views/policy_grid.php @@ -309,7 +309,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -319,13 +319,13 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
- +
@@ -343,17 +343,17 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
- +
- +
@@ -371,13 +371,13 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
- +
@@ -387,18 +387,18 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
- +
- +
@@ -417,12 +417,12 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
- +
`; @@ -438,12 +438,12 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
- +
@@ -462,7 +462,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -476,7 +476,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -497,7 +497,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -510,7 +510,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -530,7 +530,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -544,7 +544,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -565,7 +565,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -578,7 +578,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -600,7 +600,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -609,7 +609,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -629,12 +629,12 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
- +
`; @@ -650,7 +650,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -663,7 +663,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -683,7 +683,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -692,12 +692,12 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
- +
@@ -717,7 +717,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -735,7 +735,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -755,7 +755,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -781,7 +781,7 @@ function addGridHTML(event = false, data = false, ui_type = false, si_or_bp = fa
- +
@@ -1065,13 +1065,14 @@ $('body').on('click', '.btnPolicyModel', function() { var additional_relationship = null; var premium_type_for_sec_rr = [] var premium_type_for_primary_rr = [] + var first = 0; if (res.premiumData && res.premiumData.length > 0) { $.each(res.premiumData, function(index, item) { if (item.rack_rate_type == 0 || policy_type_string == 'GPA') { policy_grid_id_value = item.policy_grid_id; - secondary = item.policy_grid_id; + first = item.policy_grid_id; premium_type_for_primary_rr.push(item.premium_type); } else if (item.rack_rate_type == 1) { @@ -1223,16 +1224,32 @@ $('body').on('click', '.btnPolicyModel', function() { } - $(`input[name="${id_for_trigger}_si[]"]`).each(function() { + console.log('id_for_trigger', id_for_trigger) + console.log('temp_for_premiumData', temp_for_premiumData) + console.log('temp_for_premiumData', temp_for_premiumData[0]) + + + $(`input[name="${first}_si[]"]`).each(function() { // console.log($(this)); $(this).trigger('keyup'); }); - $(`input[name="${id_for_trigger}_premium[]"]`).each(function() { + $(`input[name="${first}_premium[]"]`).each(function() { // console.log($(this)); $(this).trigger('keyup'); }); + $(`input[name="${secondary}_si[]"]`).each(function() { + // console.log($(this)); + $(this).trigger('keyup'); + }); + + $(`input[name="${secondary}_premium[]"]`).each(function() { + // console.log($(this)); + $(this).trigger('keyup'); + }); + + }, error: function(xhr, status, error) { console.error(xhr.responseText); @@ -1514,12 +1531,12 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) { html = `
- +
- +
@@ -1542,13 +1559,13 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
- +
@@ -1568,12 +1585,12 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
- +
@@ -1598,7 +1615,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1614,7 +1631,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1627,7 +1644,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1650,7 +1667,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1665,7 +1682,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1678,7 +1695,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1693,7 +1710,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1702,7 +1719,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1717,7 +1734,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1726,7 +1743,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1741,7 +1758,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1754,7 +1771,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1769,7 +1786,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1778,12 +1795,12 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
- +
@@ -1797,7 +1814,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1815,7 +1832,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1829,7 +1846,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
@@ -1855,7 +1872,7 @@ function appendGridtHtml(ui_type = false, secondary = 0, data = false) {
- +
diff --git a/app/Views/policy_type_list.php b/app/Views/policy_type_list.php index 3bea931d..2318324f 100644 --- a/app/Views/policy_type_list.php +++ b/app/Views/policy_type_list.php @@ -6,7 +6,7 @@

Policy Type List

- diff --git a/app/Views/tpa_basic_info.php b/app/Views/tpa_basic_info.php index 401a9e11..f0b976b1 100644 --- a/app/Views/tpa_basic_info.php +++ b/app/Views/tpa_basic_info.php @@ -31,7 +31,7 @@
- +
diff --git a/app/Views/tpa_list.php b/app/Views/tpa_list.php index cdba3ab7..9df0a1c0 100644 --- a/app/Views/tpa_list.php +++ b/app/Views/tpa_list.php @@ -6,7 +6,7 @@

TPA List

- diff --git a/app/Views/view_deposit.php b/app/Views/view_deposit.php index 0e2c6854..222c7929 100644 --- a/app/Views/view_deposit.php +++ b/app/Views/view_deposit.php @@ -87,13 +87,13 @@

Transaction Details

-
+
- diff --git a/public/e_card_imgs/Magma.png b/public/e_card_imgs/Magma.png new file mode 100644 index 00000000..16dc853f Binary files /dev/null and b/public/e_card_imgs/Magma.png differ diff --git a/public/e_card_imgs/android.png b/public/e_card_imgs/android.png new file mode 100644 index 00000000..6d4448bb Binary files /dev/null and b/public/e_card_imgs/android.png differ diff --git a/public/e_card_imgs/appstore.png b/public/e_card_imgs/appstore.png new file mode 100644 index 00000000..39736cfd Binary files /dev/null and b/public/e_card_imgs/appstore.png differ diff --git a/public/e_card_imgs/barcode.jpg b/public/e_card_imgs/barcode.jpg new file mode 100644 index 00000000..b5732bca Binary files /dev/null and b/public/e_card_imgs/barcode.jpg differ diff --git a/public/e_card_imgs/borcode.jpeg b/public/e_card_imgs/borcode.jpeg new file mode 100644 index 00000000..a00aab42 Binary files /dev/null and b/public/e_card_imgs/borcode.jpeg differ diff --git a/public/e_card_imgs/ios.png b/public/e_card_imgs/ios.png new file mode 100644 index 00000000..0de01751 Binary files /dev/null and b/public/e_card_imgs/ios.png differ diff --git a/public/e_card_imgs/medi_uesr.jpg b/public/e_card_imgs/medi_uesr.jpg new file mode 100644 index 00000000..6e68ed25 Binary files /dev/null and b/public/e_card_imgs/medi_uesr.jpg differ diff --git a/public/e_card_imgs/niva_babu.jpg b/public/e_card_imgs/niva_babu.jpg new file mode 100644 index 00000000..72d4464e Binary files /dev/null and b/public/e_card_imgs/niva_babu.jpg differ diff --git a/public/e_card_imgs/play_store.png b/public/e_card_imgs/play_store.png new file mode 100644 index 00000000..2ceade23 Binary files /dev/null and b/public/e_card_imgs/play_store.png differ diff --git a/writable/e_card_template/fhpl_tpa.html b/writable/e_card_template/fhpl_tpa.html index e476dddb..a074425b 100644 --- a/writable/e_card_template/fhpl_tpa.html +++ b/writable/e_card_template/fhpl_tpa.html @@ -59,9 +59,9 @@ -
+

TERMS AND CONDITIONS:

-
+
  1. This card is generated as per the details given by your employer/HR. Incase of any errors in the details you may confirm the same through your employer for making required corrections.
  2. diff --git a/writable/e_card_template/hcl.html b/writable/e_card_template/hcl.html deleted file mode 100644 index 7bc7ddd3..00000000 --- a/writable/e_card_template/hcl.html +++ /dev/null @@ -1,68 +0,0 @@ - - -
    -
    - -
    -
    {INSURER_NAME}
    - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
POLICY NO:{TPA_ID}
Name:{NAME}
Gender:{NAME}
age:{AGE}
Employee code:{EMP_ID}
Corporate name:{CORPORATE_NAME}
Valid form:{POLICY_DATE}
- -
- -
- -
-
Terms&conditions
-
    -
  • Submit this card & photo ID for availing cashless insurrer empanelled hospitals
  • -
  • Cashless facility is subject to approved by TPA as per policy terms and conditions
  • -
  • Validdity of this card is subject to valid policy renewal of policy
  • -
-
- - -
- - - - - \ No newline at end of file diff --git a/writable/e_card_template/phs_tpa.html b/writable/e_card_template/phs_tpa.html index 2180891c..00e4e45a 100644 --- a/writable/e_card_template/phs_tpa.html +++ b/writable/e_card_template/phs_tpa.html @@ -3,25 +3,25 @@
- +
- + - + - + - + - +
Haamira Banu{NAME}
Xoriant Solutions Pvt Ltd{CORPORATE_NAME}
Dob : 02/05/2000EMP ID : 73496Dob : {DOB}EMP ID : {EMP_ID}
PHS ID : MBHI CHE 38728183 XSP EPHS ID : {TPA_ID}
Valid upto : 31/01/2024Valid upto : {POLICY_DATE}
@@ -47,9 +47,9 @@
- + - +
Mobile App
diff --git a/writable/e_card_template/vh_tpa.html b/writable/e_card_template/vh_tpa.html index 79279c59..8009cc09 100644 --- a/writable/e_card_template/vh_tpa.html +++ b/writable/e_card_template/vh_tpa.html @@ -3,7 +3,7 @@
-
+
{INSURER_NAME}
@@ -60,9 +60,6 @@
  • imidiate intimation to vidal health is must incase of any hospitalisation
  • Download the vidal health mobile app from android iOS to get an E-Card check your policy claim status, Hospital list and more, Give a missed call to 022-4892-6099 from your registered mobile number, or visit www.vidalhealthpa.com,or scan << Qr code on corner >>
  • -
    - -
    24x7 help line no
    @@ -96,8 +93,8 @@
    -
    -
    +
    +