675 lines
25 KiB
PHP
Executable File
675 lines
25 KiB
PHP
Executable File
<style>
|
|
.table th,
|
|
.table td {
|
|
padding: 8px;
|
|
}
|
|
|
|
table.dataTable tbody td {
|
|
padding: 4px 4px !important;
|
|
}
|
|
|
|
.col-12 {
|
|
|
|
max-width: 98% !important;
|
|
}
|
|
|
|
.dataTables_filter {
|
|
position: absolute;
|
|
}
|
|
|
|
.right-align-input {
|
|
text-align: right;
|
|
}
|
|
|
|
.center-align-input {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|
|
<div class="row" id="varience_filter">
|
|
|
|
<div class="col-12" style="margin-top: -12px;">
|
|
<div id="accordion" class="mb-3">
|
|
<div class="card mb-1">
|
|
<h5 class="m-1">
|
|
<a id="toggleIcon" class="text-dark float-right" data-toggle="collapse" href="#collapseOne"
|
|
aria-expanded="true">
|
|
<i id="icon" class="mdi mdi-chevron-down mr-1 text-primary" style="font-size: 28px;"></i>
|
|
</a>
|
|
</h5>
|
|
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
|
|
<div class="card-body">
|
|
<div class="form-group">
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-3">
|
|
<label for="client_branch">Client<span class="text-danger"></span></label>
|
|
<select class="form-control" id="client_id" name="client_id" onchange="getClientPolicyDataBasedOnClientAndInsuer()">
|
|
<option value="0">Select Client</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-md-3">
|
|
<label for="client_branch_id">Client Branch<span class="text-danger"></span></label>
|
|
<select class="form-control" id="client_branch_id" name="client_branch_id" onchange="getClientPolicyDataBasedOnClientAndInsuer()">
|
|
<option value="0">Select Client Branch</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-md-3">
|
|
<label for="insurer_id"> Insurer <span id="base_danger" class="text-danger"></span></label>
|
|
<select class="form-control" id="insurer_id" name="insurer_id" onchange="getClientPolicyDataBasedOnClientAndInsuer()" >
|
|
<option value="0" selected>Select Insurer</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-md-3">
|
|
<label for="insurer_branch_id"> Insurer Branch <span id="base_danger" class="text-danger"></span></label>
|
|
<select class="form-control" id="insurer_branch_id" name="insurer_branch_id" onchange="getClientPolicyDataBasedOnClientAndInsuer()">
|
|
<option value="0" selected>Select Insurer Branch</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-md-3">
|
|
<label for="email"> Policy Type <span class="text-danger"></span></label>
|
|
<select class="form-control" id="policy_type_id" name="policy_type_id" onchange="getClientPolicyDataBasedOnClientAndInsuer()">
|
|
<option value="0">Select Policy Type</option>
|
|
<?php
|
|
if (isset($policy_types) && count($policy_types)) {
|
|
foreach ($policy_types as $key => $value) {
|
|
echo "<option value='" . $value['id'] . "'>" . $value['policy_type'] . "</option>";
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-md-3">
|
|
<label for="client_policy_id"> Client Policy <span id="base_danger" class="text-danger"></span></label>
|
|
<select class="form-control" id="client_policy_id" name="client_policy_id" >
|
|
<option value="0" selected>Select client policy</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-md-3">
|
|
<label for="client_branch">Issuer<span class="text-danger">*</span></label>
|
|
<select class="form-control" id="issuer" name="issuer" required>
|
|
<option value="0">Select Issure</option>
|
|
<?php
|
|
if (isset($issuer) && count($issuer)) {
|
|
foreach ($issuer as $key => $value) {
|
|
echo "<option value=" . $key . ">" . $value . "</option>";
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-md-3">
|
|
<label>Date Type<span class="text-danger"></span></label>
|
|
<select class="form-control" id="date_type" name="date_type"
|
|
onchange="hideDateField()">
|
|
<option value="0">Select Date Type</option>
|
|
<?php
|
|
if (isset($date_type) && count($date_type)) {
|
|
foreach ($date_type as $key => $value) {
|
|
echo "<option value='" . $key . "'>" . $value . "</option>";
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-md-3" style="display: none;" id="date_div">
|
|
<label>Date<span class="text-danger"></span></label>
|
|
<div id="reportrange" class="form-control"
|
|
style="background: #fff; cursor: pointer; padding: 5px 10px; border: 1px solid #ccc; width: 100%">
|
|
<i class="fa fa-calendar"></i>
|
|
<span></span> <i class="fa fa-caret-down"></i>
|
|
</div>
|
|
<input type="hidden" id="startDate">
|
|
<input type="hidden" id="endDate">
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group text-right m-b-0">
|
|
<a href="<?= base_url("/policy_tranction/report/report-varience-list"); ?>"
|
|
class="btn btn-secondary" id="clear-filters">Clear</a>
|
|
<a href="<?= base_url("/policy_tranction/report/report-varience-list"); ?>"
|
|
class="btn btn-primary" id="get-emp-list"
|
|
onclick="fetchEmpolyeeList(event);">Submit</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12" id="varience_list">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="row" style="padding-bottom: 10px;">
|
|
<div class="col-6" style="align-self: center;">
|
|
<h4 style="position: relative;">Variance Report</h4>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="table-responsive">
|
|
<table id="scroll-horizontal-datatable" class="table w-100 nowrap">
|
|
<thead class="bg-light">
|
|
<tr>
|
|
<th>S.No</th>
|
|
<th>Client</th>
|
|
<th>Client Branch</th>
|
|
<th>Insurer</th>
|
|
<th>Insurer Branch</th>
|
|
<th>Policy</th>
|
|
<th>Endorsement No</th>
|
|
<th>Expected Amount</th>
|
|
<th>Statement Amount</th>
|
|
<th>Variance</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (isset($varience_list)) { ?>
|
|
<?php foreach($varience_list as $index => $row){ ?>
|
|
<tr>
|
|
<td><?= $index + 1 ?></td>
|
|
<td><?php echo $row['client_name']; ?></td>
|
|
<td><?php echo $row['client_branch_name']; ?></td>
|
|
<td><?php echo $row['insurer_name']; ?></td>
|
|
<td><?php echo $row['insurer_branch_name']; ?></td>
|
|
<td><?php echo $row['policy_type'] .' - '. $row['policy_no']; ?></td>
|
|
<td><?php echo $row['endorsement_no']; ?></td>
|
|
<td class="right-align-input"><?php echo $row['exp_amt']; ?></td>
|
|
<td class="right-align-input"><?php echo $row['statement_amount']; ?></td>
|
|
<td class="right-align-input"><?php echo $row['variance_amt']; ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
<?php } ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div>
|
|
</div>
|
|
</div>
|
|
</div><!-- end col -->
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
|
|
let client_list = [];
|
|
let branch_list = [];
|
|
let policy_list = [];
|
|
let insurer_list = [];
|
|
let insurer_branch_list = [];
|
|
|
|
// Datatable document ready
|
|
$(document).ready(function() {
|
|
|
|
var ticketsTable = $('#scroll-horizontal-datatable');
|
|
|
|
if (ticketsTable.length) {
|
|
ticketsTable.DataTable({
|
|
scrollX: true,
|
|
dom: "<'row'<'col-sm-6'f><'col-sm-6 text-right'B>>" + // Filter left, buttons right
|
|
"<'row'<'col-sm-12'tr>>" +
|
|
"<'row'<'col-sm-5'i><'col-sm-7'p>>", // Pagination at the bottom, without page length selector
|
|
buttons: [{
|
|
extend: 'csv',
|
|
text: 'CSV',
|
|
title: 'Policy-Tranction-BDS-List',
|
|
},
|
|
{
|
|
extend: 'excel',
|
|
text: 'Excel',
|
|
title: 'Policy-Tranction-BDS-List',
|
|
customize: function(xlsx) {
|
|
var sheet = xlsx.xl.worksheets['sheet1.xml'];
|
|
var total = 0;
|
|
|
|
// Find cells in column AB (28th column in Excel)
|
|
$('row c[r^="AB"]', sheet).each(function() {
|
|
var value = parseFloat($('v', this)
|
|
.text()); // Get the value inside the cell
|
|
if (!isNaN(value)) {
|
|
total += value;
|
|
}
|
|
});
|
|
|
|
// Get the last row index and append the total row
|
|
var lastRow = $('row:last', sheet);
|
|
var rowIndex = parseInt(lastRow.attr('r')) +
|
|
2; // Find the next row index
|
|
var totalRow = '<row r="' + rowIndex + '">' +
|
|
'<c t="inlineStr" r="AA' + rowIndex +
|
|
'"><is><t>Total</t></is></c>' + // Insert "Total" in AA
|
|
'<c t="n" r="AB' + rowIndex + '"><v>' + total.toFixed(2) +
|
|
'</v></c>' + // Insert sum in AB
|
|
'</row>';
|
|
|
|
// Append the new total row to the sheet
|
|
$(sheet).find('sheetData').append(totalRow);
|
|
}
|
|
}
|
|
|
|
],
|
|
language: {
|
|
search: "_INPUT_",
|
|
searchPlaceholder: "Search..."
|
|
},
|
|
paging: true, // Enable pagination
|
|
pageLength: 25 // Set default number of rows per page (optional)
|
|
});
|
|
} else {
|
|
console.error("Table not found.");
|
|
}
|
|
});
|
|
|
|
$(document).ready(function() {
|
|
getClientAndBranchAndPolicy()
|
|
getURLParams()
|
|
$('#client_id').select2();
|
|
$('#client_branch_id').select2();
|
|
$('#insurer_id').select2();
|
|
$('#insurer_branch_id').select2();
|
|
$('#client_policy_id').select2();
|
|
$('#policy_type_id').select2();
|
|
})
|
|
|
|
function fetchEmpolyeeList(event)
|
|
{
|
|
event.preventDefault(); // Prevent default action
|
|
|
|
var start_date = $('#startDate').val();
|
|
var end_date = $('#endDate').val();
|
|
var client_id = $('#client_id').val();
|
|
var insurer_id = $('#insurer_id').val();
|
|
var policy_type_id = $('#policy_type_id').val();
|
|
var date_type = $('#date_type').val();
|
|
var issuer = $('#issuer').val();
|
|
var client_branch_id = $('#client_branch_id').val();
|
|
var insurer_branch_id = $('#insurer_branch_id').val();
|
|
var client_policy_id = $('#client_policy_id').val();
|
|
|
|
console.log(start_date + '-' + end_date);
|
|
|
|
var queryParams = {
|
|
start_date: start_date,
|
|
end_date: end_date,
|
|
client_id: client_id,
|
|
insurer_id: insurer_id,
|
|
policy_type_id: policy_type_id,
|
|
date_type: date_type,
|
|
issuer: issuer,
|
|
client_branch_id: client_branch_id,
|
|
insurer_branch_id: insurer_branch_id,
|
|
client_policy_id: client_policy_id,
|
|
};
|
|
|
|
const queryString = objectToQueryString(queryParams);
|
|
const apiURL = $('#get-emp-list').attr('href') + "?" + queryString;
|
|
console.log(apiURL);
|
|
window.location.href = apiURL;
|
|
}
|
|
|
|
function objectToQueryString(obj) {
|
|
return Object.keys(obj).map(key => `${encodeURIComponent(key)}=${encodeURIComponent(obj[key])}`).join('&');
|
|
}
|
|
|
|
function getURLParams()
|
|
{
|
|
const url = new URL(window.location.href);
|
|
const params = new URLSearchParams(url.search);
|
|
|
|
const startDate = params.get('start_date') || 0; // Default to 0 if not found
|
|
const endDate = params.get('end_date') || 0; // Default to 0 if not found
|
|
const client_id = params.get('client_id') || 0; // Default to 0 if not found
|
|
const insurer_id = params.get('insurer_id') || 0; // Default to 0 if not found
|
|
const policy_type_id = params.get('policy_type_id') || 0; // Default to 0 if not found
|
|
const date_type = params.get('date_type') || 0; // Default to 0 if not found
|
|
const issuer = params.get('issuer') || 0; // Default to 0 if not found
|
|
const client_branch_id = params.get('client_branch_id') || 0; // Default to 0 if not found
|
|
const insurer_branch_id = params.get('insurer_branch_id') || 0; // Default to 0 if not found
|
|
const client_policy_id = params.get('client_policy_id') || 0; // Default to 0 if not found
|
|
|
|
hideDateField(date_type)
|
|
|
|
console.log('startDate', startDate)
|
|
console.log('endDate', endDate)
|
|
console.log('client_id', client_id)
|
|
console.log('insurer_id', insurer_id)
|
|
console.log('policy_type_id', policy_type_id)
|
|
console.log('date_type', date_type)
|
|
console.log('issuer', issuer)
|
|
console.log('client_branch_id', client_branch_id)
|
|
console.log('insurer_branch_id', insurer_branch_id)
|
|
console.log('client_policy_id', client_policy_id)
|
|
|
|
// Log the values or use them as needed
|
|
console.log('Start Date:', startDate);
|
|
console.log('End Date:', endDate);
|
|
|
|
if (startDate != 0 && endDate != 0) {
|
|
setTimeout(function(){
|
|
$('#start_date').val(startDate)
|
|
$('#end_date').val(endDate)
|
|
$('#client_id').val(client_id).change()
|
|
$('#insurer_id').val(insurer_id).change()
|
|
$('#policy_type_id').val(policy_type_id).change()
|
|
$('#date_type').val(date_type)
|
|
$('#issuer').val(issuer)
|
|
setTimeout(function(){
|
|
$('#client_branch_id').val(client_branch_id).change()
|
|
$('#insurer_branch_id').val(insurer_branch_id).change()
|
|
setTimeout(function(){
|
|
$('#client_policy_id').val(client_policy_id).change();
|
|
}, 1000);
|
|
}, 2000)
|
|
},2000)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$(function() {
|
|
|
|
const url = new URL(window.location.href);
|
|
const params = new URLSearchParams(url.search);
|
|
|
|
// Get start and end dates from URL parameters, or use default values
|
|
const startDateParam = params.get('start_date') || moment().subtract(29, 'days').format('DD-MM-YYYY');
|
|
const endDateParam = params.get('end_date') || moment().format('DD-MM-YYYY');
|
|
|
|
// Parse the dates to moment objects
|
|
var start = moment(startDateParam, 'DD-MM-YYYY');
|
|
var end = moment(endDateParam, 'DD-MM-YYYY');
|
|
|
|
// var start = moment().subtract(29, 'days');
|
|
// var end = moment();
|
|
|
|
function cb(start, end) {
|
|
$('#reportrange span').html(start.format('D-MM-YYYY') + ' - ' + end.format('D-MM-YYYY'));
|
|
$('#startDate').val(start.format('DD-MM-YYYY'));
|
|
$('#endDate').val(end.format('DD-MM-YYYY'));
|
|
}
|
|
|
|
$('#reportrange').daterangepicker({
|
|
startDate: start,
|
|
endDate: end,
|
|
ranges: {
|
|
'Today': [moment(), moment()],
|
|
'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
|
|
'Last 7 Days': [moment().subtract(6, 'days'), moment()],
|
|
'Last 30 Days': [moment().subtract(29, 'days'), moment()],
|
|
'This Month': [moment().startOf('month'), moment().endOf('month')],
|
|
'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month')
|
|
.endOf('month')
|
|
]
|
|
}
|
|
}, cb);
|
|
|
|
cb(start, end);
|
|
|
|
$('#clear-filters').on('click', function() {
|
|
// Reset all select dropdowns to the first option
|
|
$('#client_id').val('0').change();
|
|
$('#insurer_id').val('0').change();
|
|
$('#policy_type_id').val('0').change();
|
|
$('#date_type').val('0');
|
|
$('#issuer').val('0');
|
|
$('#date_div').hide()
|
|
|
|
// Reset the date range picker to default
|
|
$('#reportrange').data('daterangepicker').setStartDate(moment().subtract(29, 'days'));
|
|
$('#reportrange').data('daterangepicker').setEndDate(moment());
|
|
cb(start, end); // Update the displayed date range
|
|
});
|
|
|
|
});
|
|
|
|
function hideDateField(input = null) {
|
|
let val = $('#date_type').val();
|
|
|
|
if (input) {
|
|
val = input;
|
|
}
|
|
|
|
if (val != 0) {
|
|
$('#date_div').show()
|
|
} else {
|
|
$('#date_div').hide()
|
|
}
|
|
}
|
|
|
|
function sendPolicyTransactionID(event, pt_id) {
|
|
event.preventDefault(); // Prevent default action
|
|
|
|
console.log(pt_id);
|
|
|
|
var queryParams = {
|
|
pt_id: pt_id,
|
|
};
|
|
|
|
const queryString = objectToQueryString(queryParams);
|
|
const apiURL = $('#get-policy-list').attr('href') + "?" + queryString;
|
|
console.log(apiURL);
|
|
window.location.href = apiURL;
|
|
}
|
|
|
|
// -------------------------------------------------------------------------------------------------
|
|
|
|
//featch client, client branch, insurer, insurer branch and client policy list data
|
|
function getClientAndBranchAndPolicy()
|
|
{
|
|
$.ajax({
|
|
url: '<?= base_url("/util/getClientAndBranchAndPolicy") ?>',
|
|
type: "GET",
|
|
dataType: 'json',
|
|
success: function(res) {
|
|
|
|
console.log('getClientAndBranchAndPolicy', res);
|
|
if(res.status == true){
|
|
client_list = res.client_data;
|
|
branch_list = res.branch_data;
|
|
policy_list = res.policy_data;
|
|
insurer_list = res.insurer_data;
|
|
insurer_branch_list = res.insurer_branch_data;
|
|
appendClients(res.client_data);
|
|
appendInsurer(res.insurer_data);
|
|
}else{
|
|
console.log('No data found');
|
|
}
|
|
|
|
},
|
|
error: function(xhr, status, error) {
|
|
console.error(xhr.responseText);
|
|
console.error(status, error);
|
|
}
|
|
});
|
|
}
|
|
|
|
//append clients for filter
|
|
function appendClients(data)
|
|
{
|
|
$('#client_id').empty();
|
|
|
|
$('#client_id').append($('<option>', {
|
|
value: '',
|
|
text: 'Select Client'
|
|
}));
|
|
|
|
$.each(data, function(index, item) {
|
|
var option = $('<option>', {
|
|
value: item.id,
|
|
text: item.client_name,
|
|
'data-cn': item.client_name,
|
|
'data-ct': item.client_type,
|
|
class: (item.client_type == 1) ? 'group' : (item.client_type == 2) ? 'individual' : ''
|
|
});
|
|
|
|
$('#client_id').append(option);
|
|
});
|
|
|
|
}
|
|
|
|
//append clients branch for filter
|
|
function appendBranch(data)
|
|
{
|
|
|
|
$('#client_branch_id').empty();
|
|
|
|
$('#client_branch_id').append($('<option>', {
|
|
value: '',
|
|
text: 'Select Branch'
|
|
}));
|
|
|
|
$.each(data, function(index, item) {
|
|
|
|
var option = $('<option>', {
|
|
value: item.id,
|
|
text: item.branch_name
|
|
});
|
|
$('#client_branch_id').append(option);
|
|
});
|
|
}
|
|
|
|
//append insurer for filter
|
|
function appendInsurer(data)
|
|
{
|
|
$('#insurer_id').empty();
|
|
|
|
$('#insurer_id').append($('<option>', {
|
|
value: '',
|
|
text: 'Select Insurer'
|
|
}));
|
|
|
|
$.each(data, function(index, item) {
|
|
var option = $('<option>', {
|
|
value: item.id,
|
|
text: item.name,
|
|
});
|
|
|
|
$('#insurer_id').append(option);
|
|
});
|
|
|
|
}
|
|
|
|
//append insurer branch for filter
|
|
function appendInsurerBranch(data)
|
|
{
|
|
|
|
$('#insurer_branch_id').empty();
|
|
|
|
$('#insurer_branch_id').append($('<option>', {
|
|
value: '',
|
|
text: 'Select Insurer Branch'
|
|
}));
|
|
|
|
$.each(data, function(index, item) {
|
|
|
|
var option = $('<option>', {
|
|
value: item.id,
|
|
text: item.branch_name
|
|
});
|
|
$('#insurer_branch_id').append(option);
|
|
});
|
|
}
|
|
|
|
//append client policy for filter
|
|
function appendPolicies(data)
|
|
{
|
|
// console.log('appendPolicies', data);
|
|
// console.log('appendPolicies', $('#client_policy_id'));
|
|
|
|
$('#client_policy_id').empty();
|
|
$('#client_policy_id').append($('<option>', {
|
|
value: '',
|
|
text: 'Select Policy',
|
|
}));
|
|
|
|
$.each(data, function(index, item) {
|
|
var option = $('<option>', {
|
|
value: item.id,
|
|
text: item.policy_type + '-' + item.policy_no,
|
|
});
|
|
$('#client_policy_id').append(option);
|
|
});
|
|
}
|
|
|
|
// -------------------------------------------------------------------------------------------------
|
|
|
|
//client branch and insurer branch onchange document ready function
|
|
$(document).ready(function(){
|
|
|
|
$('#client_id').change(function(){
|
|
|
|
let client_id = $(this).val();
|
|
console.log('client_id', client_id);
|
|
|
|
if(branch_list != '') {
|
|
// console.log(branch_list[client_id]);
|
|
let data = branch_list[client_id];
|
|
appendBranch(data);
|
|
}
|
|
|
|
})
|
|
|
|
$('#insurer_id').change(function(){
|
|
|
|
let insurer_id = $(this).val();
|
|
console.log('insurer_id', insurer_id);
|
|
|
|
if(insurer_branch_list != '') {
|
|
// console.log(insurer_branch_list[insurer_id]);
|
|
let data = insurer_branch_list[insurer_id];
|
|
appendInsurerBranch(data);
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
//get policy list based on the client, client_branch, insurer, insurer_branch and policy type
|
|
function getClientPolicyDataBasedOnClientAndInsuer(){
|
|
|
|
let client_id = $('#client_id').val() ?? 0;
|
|
let client_branch_id = $('#client_branch_id').val() ?? 0;
|
|
let insurer_id = $('#insurer_id').val() ?? 0;
|
|
let insurer_branch_id = $('#insurer_branch_id').val() ?? 0;
|
|
let policy_type_id = $('#policy_type_id').val() ?? 0;
|
|
|
|
let url = '<?= base_url('util/getClientPolicyDataBasedOnClientAndInsuer/') ?>';
|
|
|
|
let requestData = {
|
|
client_id: client_id,
|
|
client_branch_id: client_branch_id,
|
|
insurer_id: insurer_id,
|
|
insurer_branch_id: insurer_branch_id,
|
|
policy_type_id: policy_type_id,
|
|
};
|
|
|
|
sendAjaxRequestForGlobal(url, 'GET', requestData, function(response) {
|
|
console.log('Data fetched successfully:', response);
|
|
|
|
if (response.status === true) {
|
|
|
|
appendPolicies(response.data)
|
|
|
|
} else {
|
|
toastr.warning(response.message, 'Warning');
|
|
}
|
|
}, function(xhr, status, error) {
|
|
console.error('Error fetching data:', error);
|
|
console.error(xhr.responseText);
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|