Skip to content

Commit

Permalink
Merge pull request #43 from onesteinbv/11_mig_base_ubl
Browse files Browse the repository at this point in the history
[11.0][MIG] base_ubl: port to V11
  • Loading branch information
pedrobaeza committed Jul 4, 2018
2 parents a00499f + 246fe53 commit 54f6e23
Show file tree
Hide file tree
Showing 130 changed files with 138,589 additions and 0 deletions.
59 changes: 59 additions & 0 deletions base_ubl/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

========
Base UBL
========

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,

Usage
=====

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/226/11.0

Bug Tracker
===========

Bugs are tracked on `GitHub Issues
<https://github.com/OCA/edi/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.

Credits
=======

Contributors
------------

* Alexis de Lattre <alexis.delattre@akretion.com>
* Andrea Stirpe <a.stirpe@onestein.nl>

Maintainer
----------

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

This module is maintained by the OCA.

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

To contribute to this module, please visit https://odoo-community.org.
3 changes: 3 additions & 0 deletions base_ubl/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from . import models
19 changes: 19 additions & 0 deletions base_ubl/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# © 2016-2017 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
'name': 'Base UBL',
'version': '11.0.1.0.0',
'category': 'Hidden',
'license': 'AGPL-3',
'summary': 'Base module for Universal Business Language (UBL)',
'author': 'Akretion,Odoo Community Association (OCA)',
'website': 'https://github.com/oca/edi/',
'depends': [
'product_uom_unece',
'account_tax_unece',
'base_vat_sanitized',
],
'external_dependencies': {'python': ['PyPDF2']},
'installable': True,
}
731 changes: 731 additions & 0 deletions base_ubl/data/xsd-2.0/common/CCTS_CCT_SchemaModule-2.0.xsd

Large diffs are not rendered by default.

Loading

0 comments on commit 54f6e23

Please sign in to comment.