How can I take a folder of our product images and easily import them into our database with our products? We have 22,000+ products so doing them manually is not an option. I tried following this post: \how to import images for products in binary to the database but when I run the script it only gives the code for the first item in the list and the format refuses to work properly when importing. Is there another way to convert and import all of the images in? The images are all named (internal-reference).jpg so they can line up easily with the products. Using self hosted V10 enterprise on Ubuntu.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Бухоблік
- Склад
- PoS
- Project
- MRP
Це запитання позначене
3
Відповіді
8487
Переглядів
This seems quite good: https://www.odoo.com/de_DE/forum/hilfe-1/question/how-to-import-images-for-products-in-binary-to-the-database-1868
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
РеєстраціяRelated Posts | Відповіді | Переглядів | Дія | |
---|---|---|---|---|
How to import product images ?
Вирішено
|
|
3
лист. 24
|
14019 | |
|
12
груд. 23
|
39320 | ||
|
4
лют. 18
|
4574 | ||
|
2
трав. 25
|
697 | ||
|
1
лист. 24
|
1070 |
you can import it with an import csv where image is base64.encodestring(img.read())
how can I easily convert the images files to the base64 in the csv file?