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?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Бухоблік
- Склад
- PoS
- Project
- MRP
Це запитання позначене
1
Відповісти
4871
Переглядів
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.
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 | Відповіді | Переглядів | Дія | |
---|---|---|---|---|
Evaluation of python expression
Вирішено
|
|
1
лип. 17
|
9612 | |
create a getter for odoo 8
Вирішено
|
|
2
лип. 17
|
3813 | |
|
0
серп. 16
|
2987 | ||
|
0
черв. 16
|
2936 | ||
|
0
серп. 17
|
3054 |
@Axel Mendoza can you help me with the procedure?