i download product details from openerp. In that csv file i get image in binary format. When i try to upload data again some of the rows showing padding error ( Incorrect padding ). How to s solve this issue?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客戶關係
- e-Commerce
- 會計
- 庫存
- PoS
- Project
- MRP
此問題已被標幟
1
回覆
10983
瀏覽次數
When exporting images directly from PostgreSQL, convert PostgreSQL's bytea format to base64 using the following in the query:
select encode("product_product"."image",'base64') as "image" from "product_product";
Using .decode('base64') in Python will not work because the data first needs to be decoded from PostgreSQL's bytea format.
See also https://www.odoo.com/forum/help-1/question/export-external-id-directly-from-database-67297
相關帖文 | 回覆 | 瀏覽次數 | 活動 | |
---|---|---|---|---|
|
1
3月 18
|
3551 | ||
|
1
3月 16
|
3473 | ||
|
2
3月 15
|
10913 | ||
|
1
3月 15
|
9102 | ||
|
0
2月 23
|
2400 |
its a base64 decode error. i try to decode binary image value to .decode('base64') it show same error. how to solve this ?