Add registration date when export "Etat Solde"
This commit is contained in:
parent
d6285afcea
commit
4facfe4f6c
|
@ -623,5 +623,6 @@ $lang['settings_updated'] = "Update settings";
|
|||
$lang['steps_map_loading'] = "Number of agents geolocated by steps on the map";
|
||||
$lang['sms_notifications'] = "SMS notifications";
|
||||
$lang['advertising'] = "Advertising";
|
||||
|
||||
$lang['registration_date'] = "Registration date";
|
||||
$lang['sponsor'] = 'Sponsor'
|
||||
?>
|
||||
|
|
|
@ -635,4 +635,6 @@ $lang['settings_updated'] = "Mise à jour des paramètres";
|
|||
$lang['steps_map_loading'] = "Nombre d'agents géolocalisés par pas sur la carte";
|
||||
$lang['sms_notifications'] = "Notifications par SMS";
|
||||
$lang['advertising'] = "Publicité";
|
||||
$lang['registration_date'] = "Date d'inscription";
|
||||
$lang['sponsor'] = 'Parrain';
|
||||
?>
|
||||
|
|
|
@ -107,10 +107,11 @@
|
|||
<th><?= $this->lang->line('Telephone') ?></th>
|
||||
<th><?= $this->lang->line('code membre') ?></th>
|
||||
<th>Agent</th>
|
||||
<th>Parrain</th>
|
||||
<th><?=$this->lang->line('sponsor')?></th>
|
||||
<?php if ($this->session->userdata('category') != 'super') { ?>
|
||||
<th align='center'>Action</th>
|
||||
<?php } ?>
|
||||
<th><?=$this->lang->line('registration_date')?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -141,12 +142,14 @@
|
|||
</button>
|
||||
</td>
|
||||
<?php } ?>
|
||||
<td><?= $row->agent_registration_date?></td>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php
|
||||
} else {
|
||||
|
@ -157,7 +160,6 @@
|
|||
}
|
||||
?>
|
||||
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
@ -268,6 +270,16 @@
|
|||
moment.updateLocale(moment.locale(format), {invalidDate: ""}); // Blank text when is invalid date
|
||||
var table = $('#transactions').DataTable({
|
||||
"aaSorting": [[0, "asc"]],
|
||||
"columnDefs": [
|
||||
{
|
||||
targets: [8],
|
||||
render: $.fn.dataTable.render.moment('YYYY-MM-DD HH:mm:ss', 'D MMMM YYYY HH:mm:ss', format),
|
||||
},
|
||||
{
|
||||
"targets": [8],
|
||||
"visible": false
|
||||
}
|
||||
],
|
||||
dom: 'Bfrtip',
|
||||
"buttons": [
|
||||
'pageLength',
|
||||
|
|
Loading…
Reference in New Issue