Otaksone Posted September 29, 2016 Share Posted September 29, 2016 Hi guys, i have a ecommerce with 2000 products...my problem is that i want export my products on ebay but missing the EAN code, how can i insert a casual ean code into my 2000 products quicly? Thank you Link to comment Share on other sites More sharing options...
shokinro Posted September 29, 2016 Share Posted September 29, 2016 You can consider to use SQL to update database directly if you have EAN data mapping between product and EAN code For example UPDATE ps_product set ean13 = 'xxxxxxxxxx' where id_product = 1; UPDATE ps_product set ean13 = 'yyyyyyyyyy' where id_product = 2; .... Link to comment Share on other sites More sharing options...
Otaksone Posted September 29, 2016 Author Share Posted September 29, 2016 hi, thank you...i can generate a ean code for all product? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now