<?xml version="1.0" encoding="utf-8"?>
<Customers Version="4.10">
<Customer>
<CustomerExtId>769329</CustomerExtId>
<CustomerId>123</CustomerExtId>
</Customer>
<Customer>
<CustomerExtId>333329</CustomerExtId>
<CustomerId>1555</CustomerExtId>
</Customer>
</Customers>
- Forums
- nopCommerce Plugins
- Sync Plugin
- Import customers into nopcommerce by Sync plugin
Import customers into nopcommerce by Sync plugin
Josip
I have an issue with Customers who register online and NOP stores record in Cutomer sql table without ExtId. Is it possible to create xml that will update '<CustomerExtId>' like:
Support
1. You can create a copy of Customer script(just in case of Sync plugin updates)
2. Set ExtId(if needed) at the beginning of the Customer script
2. Set ExtId(if needed) at the beginning of the Customer script
UPDATE [dbo].[Customer][your_uniq_id] - unique identifier. For example: Id or Email
SET ExtId=CAST([your_uniq_id]as nvarchar(200))
WHERE Email IS NOT NULL AND ExtId IS NULL