Iam using odoo 13
I want to download the given below file from pythonprint(attachment._full_path(attachment.store_fname))It returns
/home/fawad/.local/share/Odoo/filestore/CDNSDB/bf/bfd009f500c057195ffde66fae64f92fa5f59b72
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilidad
- Inventario
- PoS
- Proyecto
- MRP
Se marcó esta pregunta
1
Responder
3342
Vistas
with open(get_resource_path('attachment_pdf2image', 'images/') + "test.pdf", "wb") as f:
f.write(base64.b64decode(attachment.datas))¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
Inscribirse
with open(get_resource_path('attachment_pdf2image', 'images/') + "test.pdf", "wb") as f:
f.write(base64.b64decode(attachment.datas))