Improve insurance insured details
This commit is contained in:
parent
c16f23c4a7
commit
6b25bb12b6
|
@ -759,4 +759,8 @@ $lang['insured_detail'] = "Insured detail";
|
||||||
$lang['remaining_amount'] = "Remaining amount";
|
$lang['remaining_amount'] = "Remaining amount";
|
||||||
$lang['insurance_infos'] = "Insurance information";
|
$lang['insurance_infos'] = "Insurance information";
|
||||||
$lang['payment_transaction_history'] = "Payment transaction history";
|
$lang['payment_transaction_history'] = "Payment transaction history";
|
||||||
|
$lang['reason'] = "Reason";
|
||||||
|
$lang['ADDITION_OF_BENEFICIARY'] = "Addition of beneficiary";
|
||||||
|
$lang['DELETION_OF_BENEFICIARY'] = "Deletion of beneficiary";
|
||||||
|
$lang['ACTIVATION'] = "Activation";
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -770,4 +770,8 @@ $lang['insured_detail'] = "Detail sur l'assuré";
|
||||||
$lang['remaining_amount'] = "Montant restant";
|
$lang['remaining_amount'] = "Montant restant";
|
||||||
$lang['insurance_infos'] = "Informations sur l'assurance";
|
$lang['insurance_infos'] = "Informations sur l'assurance";
|
||||||
$lang['payment_transaction_history'] = "Historique des transactions de paiements";
|
$lang['payment_transaction_history'] = "Historique des transactions de paiements";
|
||||||
|
$lang['reason'] = "Motif";
|
||||||
|
$lang['ADDITION_OF_BENEFICIARY'] = "Ajout d'ayant droit";
|
||||||
|
$lang['DELETION_OF_BENEFICIARY'] = "Suppression d'ayant droit";
|
||||||
|
$lang['ACTIVATION'] = "Activation";
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -170,7 +170,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php if($insurance->state == 'REMAINS') {?>
|
<?php if($insurance->state == 'ADDITION_OF_BENEFICIARY') {?>
|
||||||
<div class="col-lg-4 col-xs-6">
|
<div class="col-lg-4 col-xs-6">
|
||||||
<div class="small-box bg-blue-active">
|
<div class="small-box bg-blue-active">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
@ -321,7 +321,9 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>#</th>
|
<th>#</th>
|
||||||
|
<th><?= $this->lang->line('souscription_id'); ?></th>
|
||||||
<th><?= $this->lang->line('Montant'); ?></th>
|
<th><?= $this->lang->line('Montant'); ?></th>
|
||||||
|
<th><?= $this->lang->line('reason'); ?></th>
|
||||||
<th>Date</th>
|
<th>Date</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -333,7 +335,9 @@
|
||||||
|
|
||||||
echo "<tr>
|
echo "<tr>
|
||||||
<td>" . ($i+1) . "</td>
|
<td>" . ($i+1) . "</td>
|
||||||
|
<td>" . $row->insurance_subscription_id . "</td>
|
||||||
<td>" . $amount . "</td>
|
<td>" . $amount . "</td>
|
||||||
|
<td>" . $this->lang->line($row->reason). "</td>
|
||||||
<td>" . $row->created_at. "</td>";
|
<td>" . $row->created_at. "</td>";
|
||||||
?>
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -442,7 +446,7 @@
|
||||||
{
|
{
|
||||||
order: [[1, 'asc']],
|
order: [[1, 'asc']],
|
||||||
"columnDefs": [{
|
"columnDefs": [{
|
||||||
"targets": [2],
|
"targets": [4],
|
||||||
// "orderable": false,
|
// "orderable": false,
|
||||||
render: $.fn.dataTable.render.moment('YYYY-MM-DD HH:mm:ss', 'D MMMM YYYY HH:mm:ss', format)
|
render: $.fn.dataTable.render.moment('YYYY-MM-DD HH:mm:ss', 'D MMMM YYYY HH:mm:ss', format)
|
||||||
}],
|
}],
|
||||||
|
|
Loading…
Reference in New Issue