Base UBL

base_ubl
REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/19.0/base_ubl
VERSION
VERSION 1.0.0
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion, Camptocamp, Onestein
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion, Camptocamp, Onestein
COMMITTERS
COMMITTERSOCA-git-bot, oca-ci, Maksym Yankin
WEBSITE
WEBSITEhttps://github.com/OCA/edi
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 19:40:48
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - base
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES Not have
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION
This is the base module for the implementation of the [Universal
Business Language (UBL)](http://ubl.xml.org/) standard. The UBL standard
became the [ISO/IEC
19845](http://www.iso.org/iso/catalogue_detail.htm?csnumber=66370)
standard in January 2016 (cf the [official
announce](http://www.prweb.com/releases/2016/01/prweb13186919.htm)).

This module contains methods to generate and parse UBL files. This
module doesn't do anything useful by itself, but it is used by several
other modules:

- *purchase_order_ubl* that generate UBL purchase orders,
- *sale_order_import_ubl* that imports UBL sale orders.
- *account_invoice_import_ubl* that imports UBL invoices,

Code Analysis

Views touched (0)

No views found for this module.

Models touched (1)

New fields (0)

No new fields.

Public methods (0)

No public methods.

REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/18.0/base_ubl
VERSION
VERSION 1.0.0
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion, Camptocamp, Onestein
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion, Camptocamp, Onestein
COMMITTERS
COMMITTERSWeblate, OCA-git-bot, Simone Orsi, oca-ci
WEBSITE
WEBSITEhttps://github.com/OCA/edi
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 19:30:12
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - base
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES Not have
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION
This is the base module for the implementation of the [Universal
Business Language (UBL)](http://ubl.xml.org/) standard. The UBL standard
became the [ISO/IEC
19845](http://www.iso.org/iso/catalogue_detail.htm?csnumber=66370)
standard in January 2016 (cf the [official
announce](http://www.prweb.com/releases/2016/01/prweb13186919.htm)).

This module contains methods to generate and parse UBL files. This
module doesn't do anything useful by itself, but it is used by several
other modules:

- *purchase_order_ubl* that generate UBL purchase orders,
- *sale_order_import_ubl* that imports UBL sale orders.
- *account_invoice_import_ubl* that imports UBL invoices,

Code Analysis

Views touched (0)

No views found for this module.

Models touched (1)

New fields (0)

No new fields.

Public methods (0)

No public methods.

REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/17.0/base_ubl
VERSION
VERSION 1.0.1
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion, Onestein
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion, Onestein
COMMITTERS
COMMITTERSOCA-git-bot, Simone Orsi, oca-ci, Wodran Van de Sande
WEBSITE
WEBSITEhttps://github.com/OCA/edi
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 19:20:05
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/community-data-files:
    - uom_unece
    - account_tax_unece
    - base_unece
OCA/edi:
    - pdf_helper
odoo/odoo:
    - uom
    - base
    - account
    - base_setup
    - web
    - onboarding
    - product
    - mail
    - bus
    - web_tour
    - analytic
    - portal
    - web_editor
    - http_routing
    - auth_signup
    - digest
    - resource
    - base_vat
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES Not have
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION
This is the base module for the implementation of the [Universal
Business Language (UBL)](http://ubl.xml.org/) standard. The UBL standard
became the [ISO/IEC
19845](http://www.iso.org/iso/catalogue_detail.htm?csnumber=66370)
standard in January 2016 (cf the [official
announce](http://www.prweb.com/releases/2016/01/prweb13186919.htm)).

This module contains methods to generate and parse UBL files. This
module doesn't do anything useful by itself, but it is used by several
other modules:

- *purchase_order_ubl* that generate UBL purchase orders,
- *sale_order_import_ubl* that imports UBL sale orders.
- *account_invoice_import_ubl* that imports UBL invoices,

Code Analysis

Views touched (0)

No views found for this module.

Models touched (1)

New fields (0)

No new fields.

Public methods (10)
  • embed_xml_in_pdf(self, xml_string, xml_filename, pdf_content=None, pdf_file=None)
    @api.model
    2 possible uses: a) use the pdf_content argument, which has the binary of the PDF -> it will return the new PDF binary with the embedded XML (used for qweb-pdf reports) b) OR use the pdf_file argument, which has the full path to the original PDF file -> it will re-write this file with the new PDF (used for py3o reports, *_ubl_py3o modules in this repo)
  • get_xml_files_from_pdf(self, pdf_file)
    Returns a dict with key = filename, value = XML file obj
  • ubl_parse_address(self, address_node, ns)
    @api.model
  • ubl_parse_customer_party(self, party_node, ns)
    @api.model
  • ubl_parse_delivery(self, delivery_node, ns)
    @api.model
  • ubl_parse_delivery_details(self, delivery_node, ns)
    @api.model
  • ubl_parse_incoterm(self, delivery_term_node, ns)
  • ubl_parse_party(self, party_node, ns)
    @api.model
  • ubl_parse_product(self, line_node, ns)
  • ubl_parse_supplier_party(self, party_node, ns)
    @api.model
REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/16.0/base_ubl
VERSION
VERSION 1.2.1
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion, Onestein
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion, Onestein
COMMITTERS
COMMITTERSJacques-Etienne Baudoux, Weblate, OCA-git-bot, oca-ci, bosd, Goncalo Brito
WEBSITE
WEBSITEhttps://github.com/OCA/edi
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:53:46
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/community-data-files:
    - uom_unece
    - account_tax_unece
    - base_unece
OCA/edi:
    - pdf_helper
odoo/odoo:
    - uom
    - base
    - account
    - base_setup
    - web
    - product
    - mail
    - bus
    - web_tour
    - analytic
    - portal
    - web_editor
    - http_routing
    - auth_signup
    - digest
    - resource
    - base_vat
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES Not have
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (0)

No views found for this module.

Models touched (1)

New fields (0)

No new fields.

Public methods (10)
  • embed_xml_in_pdf(self, xml_string, xml_filename, pdf_content=None, pdf_file=None)
    @api.model
    2 possible uses: a) use the pdf_content argument, which has the binary of the PDF -> it will return the new PDF binary with the embedded XML (used for qweb-pdf reports) b) OR use the pdf_file argument, which has the full path to the original PDF file -> it will re-write this file with the new PDF (used for py3o reports, *_ubl_py3o modules in this repo)
  • get_xml_files_from_pdf(self, pdf_file)
    Returns a dict with key = filename, value = XML file obj
  • ubl_parse_address(self, address_node, ns)
    @api.model
  • ubl_parse_customer_party(self, party_node, ns)
    @api.model
  • ubl_parse_delivery(self, delivery_node, ns)
    @api.model
  • ubl_parse_delivery_details(self, delivery_node, ns)
    @api.model
  • ubl_parse_incoterm(self, delivery_term_node, ns)
  • ubl_parse_party(self, party_node, ns)
    @api.model
  • ubl_parse_product(self, line_node, ns)
  • ubl_parse_supplier_party(self, party_node, ns)
    @api.model
REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/15.0/base_ubl
VERSION
VERSION 1.0.1
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion, Onestein
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion, Onestein
COMMITTERS
COMMITTERSWeblate, OCA-git-bot, oca-ci, Atte Isopuro
WEBSITE
WEBSITEhttps://github.com/OCA/edi
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:46:34
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/community-data-files:
    - uom_unece
    - account_tax_unece
    - base_unece
odoo/odoo:
    - uom
    - base
    - account
    - base_setup
    - web
    - product
    - mail
    - bus
    - web_tour
    - analytic
    - portal
    - web_editor
    - http_routing
    - auth_signup
    - digest
    - resource
    - base_vat
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES PyPDF2
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (0)

No views found for this module.

Models touched (1)

New fields (0)

No new fields.

Public methods (10)
  • embed_xml_in_pdf(self, xml_string, xml_filename, pdf_content=None, pdf_file=None)
    @api.model
    2 possible uses: a) use the pdf_content argument, which has the binary of the PDF -> it will return the new PDF binary with the embedded XML (used for qweb-pdf reports) b) OR use the pdf_file argument, which has the full path to the original PDF file -> it will re-write this file with the new PDF (used for py3o reports, *_ubl_py3o modules in this repo)
  • get_xml_files_from_pdf(self, pdf_file)
    Returns a dict with key = filename, value = XML file obj
  • ubl_parse_address(self, address_node, ns)
    @api.model
  • ubl_parse_customer_party(self, party_node, ns)
    @api.model
  • ubl_parse_delivery(self, delivery_node, ns)
    @api.model
  • ubl_parse_delivery_details(self, delivery_node, ns)
    @api.model
  • ubl_parse_incoterm(self, delivery_term_node, ns)
  • ubl_parse_party(self, party_node, ns)
    @api.model
  • ubl_parse_product(self, line_node, ns)
  • ubl_parse_supplier_party(self, party_node, ns)
    @api.model
REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/14.0/base_ubl
VERSION
VERSION 1.8.2
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion, Onestein
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion, Onestein
COMMITTERS
COMMITTERSOCA Transbot, Luis Escobar, oca-travis, Weblate, OCA-git-bot, Simone Orsi, bosd, FerranCforgeFlow, Hai Lang, Raul, Tran Thanh Phuc, oca-git-bot, Robin Conjour
WEBSITE
WEBSITEhttps://github.com/OCA/edi
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:40:59
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/community-data-files:
    - uom_unece
    - account_tax_unece
    - base_unece
OCA/edi:
    - pdf_helper
odoo/odoo:
    - uom
    - base
    - account
    - base_setup
    - web
    - product
    - mail
    - bus
    - web_tour
    - analytic
    - portal
    - web_editor
    - http_routing
    - auth_signup
    - digest
    - resource
    - base_vat
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES pypdf>=3.1.0,<5.0
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (0)

No views found for this module.

Models touched (1)

New fields (0)

No new fields.

Public methods (10)
  • embed_xml_in_pdf(self, xml_string, xml_filename, pdf_content=None, pdf_file=None)
    @api.model
    2 possible uses: a) use the pdf_content argument, which has the binary of the PDF -> it will return the new PDF binary with the embedded XML (used for qweb-pdf reports) b) OR use the pdf_file argument, which has the full path to the original PDF file -> it will re-write this file with the new PDF (used for py3o reports, *_ubl_py3o modules in this repo)
  • get_xml_files_from_pdf(self, pdf_file)
    Returns a dict with key = filename, value = XML file obj
  • ubl_parse_address(self, address_node, ns)
    @api.model
  • ubl_parse_customer_party(self, party_node, ns)
    @api.model
  • ubl_parse_delivery(self, delivery_node, ns)
    @api.model
  • ubl_parse_delivery_details(self, delivery_node, ns)
    @api.model
  • ubl_parse_incoterm(self, delivery_term_node, ns)
  • ubl_parse_party(self, party_node, ns)
    @api.model
  • ubl_parse_product(self, line_node, ns)
  • ubl_parse_supplier_party(self, party_node, ns)
    @api.model
REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/13.0/base_ubl
VERSION
VERSION 2.5.1
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion, Onestein
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion, Onestein
COMMITTERS
COMMITTERSAlexis de Lattre, Jacques-Etienne Baudoux, Enric Tobella, Lois Rilo, OCA Transbot, Thierry Ducrest, oca-travis, Weblate, OCA-git-bot, Tom Blauwendraat, Simone Orsi, Jaume Bernaus, FerranCforgeFlow, RaulOForgeFlow
WEBSITE
WEBSITEhttps://github.com/OCA/edi
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:34:13
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/community-data-files:
    - uom_unece
    - account_tax_unece
    - base_unece
odoo/odoo:
    - uom
    - base
    - account
    - base_setup
    - web
    - product
    - mail
    - bus
    - web_tour
    - analytic
    - portal
    - web_editor
    - http_routing
    - auth_signup
    - digest
    - resource
    - base_vat
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES Not have
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (0)

No views found for this module.

Models touched (1)

New fields (0)

No new fields.

Public methods (10)
  • embed_xml_in_pdf(self, xml_string, xml_filename, pdf_content=None, pdf_file=None)
    @api.model
    2 possible uses: a) use the pdf_content argument, which has the binary of the PDF -> it will return the new PDF binary with the embedded XML (used for qweb-pdf reports) b) OR use the pdf_file argument, which has the full path to the original PDF file -> it will re-write this file with the new PDF (used for py3o reports, *_ubl_py3o modules in this repo)
  • get_xml_files_from_pdf(self, pdf_file)
    Returns a dict with key = filename, value = XML file obj
  • ubl_parse_address(self, address_node, ns)
    @api.model
  • ubl_parse_customer_party(self, party_node, ns)
    @api.model
  • ubl_parse_delivery(self, delivery_node, ns)
    @api.model
  • ubl_parse_delivery_details(self, delivery_node, ns)
    @api.model
  • ubl_parse_incoterm(self, delivery_term_node, ns)
  • ubl_parse_party(self, party_node, ns)
    @api.model
  • ubl_parse_product(self, line_node, ns)
  • ubl_parse_supplier_party(self, party_node, ns)
    @api.model
REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/12.0/base_ubl
VERSION
VERSION 1.1.2
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion
COMMITTERS
COMMITTERSAlexis de Lattre, mreficent, OCA Transbot, Miquel Raïch, oca-travis, OCA-git-bot, Davor Bojkić
WEBSITE
WEBSITEhttps://github.com/OCA/edi
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:29:18
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/community-data-files:
    - uom_unece
    - account_tax_unece
    - base_unece
OCA/partner-contact:
    - base_vat_sanitized
odoo/odoo:
    - uom
    - base
    - account
    - base_setup
    - web
    - product
    - decimal_precision
    - mail
    - bus
    - web_tour
    - analytic
    - portal
    - http_routing
    - digest
    - base_vat
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES PyPDF2
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (0)

No views found for this module.

Models touched (1)

New fields (0)

No new fields.

Public methods (9)
  • embed_xml_in_pdf(self, xml_string, xml_filename, pdf_content=None, pdf_file=None)
    @api.model
    2 possible uses: a) use the pdf_content argument, which has the binary of the PDF -> it will return the new PDF binary with the embedded XML (used for qweb-pdf reports) b) OR use the pdf_file argument, which has the path to the original PDF file -> it will re-write this file with the new PDF (used for py3o reports, *_ubl_py3o modules in this repo)
  • get_xml_files_from_pdf(self, pdf_file)
    Returns a dict with key = filename, value = XML file obj
  • ubl_parse_address(self, address_node, ns)
    @api.model
  • ubl_parse_customer_party(self, customer_party_node, ns)
    @api.model
  • ubl_parse_delivery(self, delivery_node, ns)
    @api.model
  • ubl_parse_incoterm(self, delivery_term_node, ns)
  • ubl_parse_party(self, party_node, ns)
    @api.model
  • ubl_parse_product(self, line_node, ns)
  • ubl_parse_supplier_party(self, customer_party_node, ns)
    @api.model
REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/11.0/base_ubl
VERSION
VERSION 1.0.0
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion
COMMITTERS
COMMITTERSAndrea, OCA Transbot, oca-travis, OCA-git-bot, OCA Git Bot
WEBSITE
WEBSITEhttps://github.com/oca/edi/
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:23:57
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/community-data-files:
    - product_uom_unece
    - account_tax_unece
    - base_unece
OCA/partner-contact:
    - base_vat_sanitized
odoo/odoo:
    - product
    - base
    - decimal_precision
    - mail
    - base_setup
    - web
    - bus
    - web_tour
    - account
    - analytic
    - web_planner
    - portal
    - http_routing
    - base_vat
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES PyPDF2
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (0)

No views found for this module.

Models touched (1)

New fields (0)

No new fields.

Public methods (9)
  • embed_xml_in_pdf(self, xml_string, xml_filename, pdf_content=None, pdf_file=None)
    @api.model
    2 possible uses: a) use the pdf_content argument, which has the binary of the PDF -> it will return the new PDF binary with the embedded XML (used for qweb-pdf reports) b) OR use the pdf_file argument, which has the path to the original PDF file -> it will re-write this file with the new PDF (used for py3o reports, *_ubl_py3o modules in this repo)
  • get_xml_files_from_pdf(self, pdf_file)
    Returns a dict with key = filename, value = XML file obj
  • ubl_parse_address(self, address_node, ns)
    @api.model
  • ubl_parse_customer_party(self, customer_party_node, ns)
    @api.model
  • ubl_parse_delivery(self, delivery_node, ns)
    @api.model
  • ubl_parse_incoterm(self, delivery_term_node, ns)
  • ubl_parse_party(self, party_node, ns)
    @api.model
  • ubl_parse_product(self, line_node, ns)
  • ubl_parse_supplier_party(self, customer_party_node, ns)
    @api.model
REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/10.0/base_ubl
VERSION
VERSION 1.1.0
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion
COMMITTERS
COMMITTERSAlexis de Lattre, Pedro M. Baeza, GitHub, Laurent Mignon (ACSONE), OCA Transbot, oca-travis, OCA-git-bot
WEBSITE
WEBSITEhttp://www.akretion.com
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:19:56
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/community-data-files:
    - product_uom_unece
    - account_tax_unece
    - base_unece
OCA/partner-contact:
    - base_vat_sanitized
odoo/odoo:
    - product
    - base
    - decimal_precision
    - mail
    - base_setup
    - web_kanban
    - web
    - bus
    - web_tour
    - report
    - account
    - analytic
    - web_planner
    - base_vat
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES PyPDF2
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (0)

No views found for this module.

Models touched (0)

No models found for this module.

REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/9.0/base_ubl
VERSION
VERSION 1.0.0
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion
COMMITTERS
COMMITTERSHolger Brunn
WEBSITE
WEBSITEhttp://www.akretion.com
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:15:20
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/community-data-files:
    - product_uom_unece
    - account_tax_unece
    - base_unece
OCA/partner-contact:
    - base_vat_sanitized
odoo/odoo:
    - product
    - base
    - decimal_precision
    - mail
    - base_setup
    - web_kanban
    - web
    - bus
    - report
    - account
    - analytic
    - web_tip
    - web_planner
    - base_vat
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES PyPDF2
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (0)

No views found for this module.

Models touched (0)

No models found for this module.

REPOSITORY
REPOSITORYOCA/edi
GIT
GIThttps://github.com/OCA/edi.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/edi/tree/8.0/base_ubl
VERSION
VERSION 1.1.0
CATEGORY
CATEGORYHidden
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), Akretion
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), Akretion
COMMITTERS
COMMITTERSAlexis de Lattre, Pedro M. Baeza, OCA Transbot, Adrien Peiffer (ACSONE), David Beal, oca-travis, OCA-git-bot, houssine
WEBSITE
WEBSITEhttp://www.akretion.com
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:11:22
ODOO DEPENDENCIES
ODOO DEPENDENCIES OCA/community-data-files:
    - product_uom_unece
    - account_tax_unece
    - base_unece
OCA/partner-contact:
    - base_vat_sanitized
odoo/odoo:
    - product
    - base
    - decimal_precision
    - mail
    - base_setup
    - web_kanban
    - web
    - report
    - account
    - analytic
    - board
    - edi
    - email_template
    - base_vat
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES PyPDF2
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (1)
XML IDNameModelTypeStatus
view_company_form res.company xpath Inherits base.view_company_form
Models touched (0)

No models found for this module.