Contact import user_id column always set null

This commit is contained in:
Cüneyt Şentürk 2022-06-30 11:59:15 +03:00
parent 6d4adf58f5
commit e6bb24bdca
2 changed files with 2 additions and 0 deletions

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