Skip to content

Commit 1202834

Browse files
committed
[MIG] edi_account_invoice_import_ubl: Migration to 16.0
1 parent cfc997e commit 1202834

File tree

10 files changed

+558
-0
lines changed

10 files changed

+558
-0
lines changed
+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
======================
2+
EDI Invoice import UBL
3+
======================
4+
5+
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6+
!! This file is generated by oca-gen-addon-readme !!
7+
!! changes will be overwritten. !!
8+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9+
10+
.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
11+
:target: https://odoo-community.org/page/development-status
12+
:alt: Alpha
13+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
14+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
15+
:alt: License: AGPL-3
16+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fedi-lightgray.png?logo=github
17+
:target: https://github.com/OCA/edi/tree/14.0/edi_account_invoice_import_ubl
18+
:alt: OCA/edi
19+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
20+
:target: https://translation.odoo-community.org/projects/edi-14-0/edi-14-0-edi_account_invoice_import_ubl
21+
:alt: Translate me on Weblate
22+
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
23+
:target: https://runbot.odoo-community.org/runbot/226/14.0
24+
:alt: Try me on Runbot
25+
26+
|badge1| |badge2| |badge3| |badge4| |badge5|
27+
28+
This module plugs account_invoice_import_ubl into EDI machinery.
29+
30+
.. IMPORTANT::
31+
This is an alpha version, the data model and design can change at any time without warning.
32+
Only for development or testing purpose, do not use in production.
33+
`More details on development status <https://odoo-community.org/page/development-status>`_
34+
35+
**Table of contents**
36+
37+
.. contents::
38+
:local:
39+
40+
Bug Tracker
41+
===========
42+
43+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/edi/issues>`_.
44+
In case of trouble, please check there if your issue has already been reported.
45+
If you spotted it first, help us smashing it by providing a detailed and welcomed
46+
`feedback <https://github.com/OCA/edi/issues/new?body=module:%20edi_account_invoice_import_ubl%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
47+
48+
Do not contact contributors directly about support or help with technical issues.
49+
50+
Credits
51+
=======
52+
53+
Authors
54+
~~~~~~~
55+
56+
* ForgeFlow
57+
58+
Contributors
59+
~~~~~~~~~~~~
60+
61+
* Lois Rilo <lois.rilo@forgeflow.com>
62+
63+
Maintainers
64+
~~~~~~~~~~~
65+
66+
This module is maintained by the OCA.
67+
68+
.. image:: https://odoo-community.org/logo.png
69+
:alt: Odoo Community Association
70+
:target: https://odoo-community.org
71+
72+
OCA, or the Odoo Community Association, is a nonprofit organization whose
73+
mission is to support the collaborative development of Odoo features and
74+
promote its widespread use.
75+
76+
.. |maintainer-simahawk| image:: https://github.com/simahawk.png?size=40px
77+
:target: https://github.com/simahawk
78+
:alt: simahawk
79+
80+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
81+
82+
|maintainer-simahawk|
83+
84+
This module is part of the `OCA/edi <https://github.com/OCA/edi/tree/14.0/edi_account_invoice_import_ubl>`_ project on GitHub.
85+
86+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

edi_account_invoice_import_ubl/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2022 ForgeFlow S.L. (https://www.forgeflow.com)
2+
# @author: Lois Rilo <lois.rilo@forgeflow.com>
3+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
4+
5+
{
6+
"name": "EDI Invoice import UBL",
7+
"summary": "Plug account_invoice_import_ubl into EDI machinery",
8+
"version": "16.0.1.0.0",
9+
"development_status": "Alpha",
10+
"license": "AGPL-3",
11+
"website": "https://github.com/OCA/edi-framework",
12+
"author": "ForgeFlow, Odoo Community Association (OCA)",
13+
"maintainers": ["LoisRForgeFlow"],
14+
"depends": [
15+
"edi_ubl_oca",
16+
"edi_account_invoice_import",
17+
"account_invoice_import_ubl",
18+
],
19+
"auto_install": True,
20+
"data": ["data/edi_exchange_type.xml"],
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<odoo>
3+
<record id="edi_exchange_type_invoice_ubl" model="edi.exchange.type">
4+
<field name="name">UBL import invoice</field>
5+
<field name="code">ubl_import_invoice</field>
6+
<field name="backend_type_id" ref="edi_ubl_oca.edi_backend_type_ubl" />
7+
<field name="direction">input</field>
8+
<field name="exchange_file_ext">xml</field>
9+
<field name="advanced_settings_edit">
10+
components:
11+
process:
12+
usage: input.process.account.invoice
13+
</field>
14+
</record>
15+
</odoo>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* Lois Rilo <lois.rilo@forgeflow.com>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module plugs account_invoice_import_ubl into EDI machinery.
Loading

0 commit comments

Comments
 (0)