Merge branch 'master' of https://github.com/brkcvn/akaunting into form-elements

This commit is contained in:
Burak Civan 2022-06-30 18:26:01 +03:00
commit 44db041525
4 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,6 @@ class Vendors extends Export
'currency_code', 'currency_code',
'reference', 'reference',
'enabled', 'enabled',
'user_id',
]; ];
} }
} }

View File

@ -35,7 +35,6 @@ class Customers extends Export
'currency_code', 'currency_code',
'reference', 'reference',
'enabled', 'enabled',
'user_id',
]; ];
} }
} }

View File

@ -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;
} }

View File

@ -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;
} }