Initial commit: OCA Edi packages (42 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:05 +02:00
commit df976c03db
2184 changed files with 571602 additions and 0 deletions

View file

@ -0,0 +1,3 @@
* Simone Orsi <simone.orsi@camptocamp.com>
* Alexis de Lattre <alexis.delattre@akretion.com>
* Jacques-Etienne Baudoux (BCIM) <je@bcim.be>

View file

@ -0,0 +1 @@
Technical module to share PDF utils.

View file

@ -0,0 +1,11 @@
Inside Odoo env::
res = env["pdf.helper"].pdf_get_xml_files(pdf_filecontent)
new_pdf_filecontent = env["pdf.helper"].pdf_embed_xml(pdf_filecontent, filename, xml)
Outside Odoo env::
from odoo.addons.pdf_helper.utils import PDFParser
[...]
res = PDFParser(pdf_filecontent).get_xml_files()