I am receiving a blob datatype from sqlite db via web service. How can I use it in odoo to store it in the postgresql table. What kind of field should I use to achieve this scenario?
Этот вопрос был отмечен
1
Ответить
6893
Представления
Hi #Anand Prasanth
You need to use an Odoo binary field that will create in PostgreSQL a field of type bytea. Make sure that you are serializing the content as base64 before save it in the webservice.
Не оставайтесь в стороне – присоединяйтесь к обсуждению!
Создайте аккаунт сегодня, чтобы получить доступ к эксклюзивным функциям и стать частью нашего замечательного сообщества!
Регистрация| Похожие посты | Ответы | Просмотры | Активность | |
|---|---|---|---|---|
|
|
1
июл. 17
|
12289 | ||
|
create a getter for odoo 8
Решено
|
|
2
июл. 17
|
5434 | |
|
|
0
авг. 16
|
4689 | ||
|
|
0
июн. 16
|
4678 | ||
|
|
0
авг. 17
|
4484 |
@Axel Mendoza can you help me with the procedure?