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
- Účetnictví
- Sklad
- PoS
- Project
- MRP
This question has been flagged
1
Odpovědět
4985
Zobrazení
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!
Přihlásit seRelated Posts | Odpovědi | Zobrazení | Aktivita | |
---|---|---|---|---|
Evaluation of python expression
Vyřešeno
|
|
1
čvc 17
|
9796 | |
create a getter for odoo 8
Vyřešeno
|
|
2
čvc 17
|
3939 | |
|
0
srp 16
|
3088 | ||
|
0
čvn 16
|
3061 | ||
|
0
srp 17
|
3152 |
@Axel Mendoza can you help me with the procedure?