fix empty column export csv
This commit is contained in:
parent
65a243b7b4
commit
b9863a8397
|
@ -260,10 +260,7 @@ namespace controllers\internals;
|
||||||
{
|
{
|
||||||
$contacts = $this->get_model()->gets_for_user($id_user);
|
$contacts = $this->get_model()->gets_for_user($id_user);
|
||||||
|
|
||||||
$columns = [
|
$columns = [0, 1];
|
||||||
'contact_name',
|
|
||||||
'contact_number',
|
|
||||||
];
|
|
||||||
|
|
||||||
foreach ($contacts as $contact)
|
foreach ($contacts as $contact)
|
||||||
{
|
{
|
||||||
|
@ -280,16 +277,9 @@ namespace controllers\internals;
|
||||||
{
|
{
|
||||||
$datas = json_decode($contact['datas'], true);
|
$datas = json_decode($contact['datas'], true);
|
||||||
|
|
||||||
$line = [];
|
$line = [$contact['name'], $contact['number']];
|
||||||
foreach ($columns as $column)
|
foreach ($columns as $column)
|
||||||
{
|
{
|
||||||
if (isset($contact[$column]))
|
|
||||||
{
|
|
||||||
$line[] = $contact[$column];
|
|
||||||
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($datas[$column]))
|
if (isset($datas[$column]))
|
||||||
{
|
{
|
||||||
$line[] = $datas[$column];
|
$line[] = $datas[$column];
|
||||||
|
|
Loading…
Reference in New Issue