/
2024.2 [b2b] Customer Import from NetSuite

2024.2 [b2b] Customer Import from NetSuite





The Customer Import process is initiated by NetSuite after creation or updating the Customer Entity. The Import is processed by RocketWeb/NetSuiteCustomerImport/Model/Process/Import/Customer.php. The system looks for a customer object by netsuite_interanal_id or email. If no Customer found - a new object is created. 

Transform Customer into Magento Format

The \RocketWeb\NetSuiteCustomerImport\Model\Mapper\Customer::getMagentoFormat() set/update all required fields:

  • Email

  • FirstName

  • MiddleName

  • LastName

  • StoreId

  • CustomerGroupId (using Store Config value)

  • WebsiteId

  • netsuite_internal_id

  • last_import_date

Addresses object creation mapping is processed in separate classes  RocketWeb/NetSuiteCustomerImport/Model/Mapper/Customer/Address.php and RocketWeb/NetSuiteCustomerImport/Model/Mapper/Customer/Address/Map.php. There is a possibility to set specific address fields to be required, see: Customer Import Settings. For each of the required fields from the list mentioned above, there is a possibility to configure a default value that will be set in case the required field is empty in NetSuite (see: RocketWeb/NetSuiteCustomerImport/etc/config.xml)

New Customers Password handling

If the Customer is new and does not exist in the Magento system, it will set custom attribute imported_pwd_not_set for Customer. When such a Customer will try to login or create a new Customer with the same email they will be notified that they are already registered and they should reset the password to get access to the personal account. After the password is reset flag imported_pwd_not_set is changed to false. This logic is responsible for 2 plugins:  RocketWeb/NetSuiteCustomerImport/Plugin/PasswordResetPlugin.php and RocketWeb/NetSuiteCustomerImport/Plugin/MessageManagerInterfacePlugin.php. If there is a need to modify the warning message that is shown for Customer you should take a look at next templates: RocketWeb/NetSuiteCustomerImport/view/frontend/templates/messages/customerRegistrationButPasswordNotSet.phtmlRocketWeb/NetSuiteCustomerImport/view/frontend/templates/messages/customerLoginButPasswordNotSet.phtml

 Saving Processes

Before saving $magentoCustomer object we need to set flag netsuite_skip_customer_export to avoid Customer Export to NetSuite process be started. The flag is checked in RocketWeb/NetSuiteCustomer/Observer/CustomerSaveObserver.php.







Related content