Merge branch 'master' of https://github.com/brkcvn/akaunting into form-elements
This commit is contained in:
commit
44db041525
@ -35,7 +35,6 @@ class Vendors extends Export
|
|||||||
'currency_code',
|
'currency_code',
|
||||||
'reference',
|
'reference',
|
||||||
'enabled',
|
'enabled',
|
||||||
'user_id',
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,6 @@ class Customers extends Export
|
|||||||
'currency_code',
|
'currency_code',
|
||||||
'reference',
|
'reference',
|
||||||
'enabled',
|
'enabled',
|
||||||
'user_id',
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,7 @@ class Vendors extends Import
|
|||||||
|
|
||||||
$row['type'] = 'vendor';
|
$row['type'] = 'vendor';
|
||||||
$row['country'] = !empty($country) ? $country : null;
|
$row['country'] = !empty($country) ? $country : null;
|
||||||
|
$row['user_id'] = null;
|
||||||
|
|
||||||
return $row;
|
return $row;
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,7 @@ class Customers extends Import
|
|||||||
|
|
||||||
$row['type'] = 'customer';
|
$row['type'] = 'customer';
|
||||||
$row['country'] = !empty($country) ? $country : null;
|
$row['country'] = !empty($country) ? $country : null;
|
||||||
|
$row['user_id'] = null;
|
||||||
|
|
||||||
return $row;
|
return $row;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user