Skip to content

Commit 55feea8

Browse files
committed
Merge PR #264 into 19.0
Signed-off-by simahawk
2 parents eba8214 + f0775a0 commit 55feea8

13 files changed

Lines changed: 627 additions & 0 deletions

File tree

edi_ubl_oca/README.rst

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
.. image:: https://odoo-community.org/readme-banner-image
2+
:target: https://odoo-community.org/get-involved?utm_source=readme
3+
:alt: Odoo Community Association
4+
5+
=======
6+
EDI UBL
7+
=======
8+
9+
..
10+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
11+
!! This file is generated by oca-gen-addon-readme !!
12+
!! changes will be overwritten. !!
13+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14+
!! source digest: sha256:3bf0f612deb36be3bb61f248844c9d3ac07556f1d97fda309b459306dde7f3b6
15+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16+
17+
.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
18+
:target: https://odoo-community.org/page/development-status
19+
:alt: Alpha
20+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
21+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
22+
:alt: License: AGPL-3
23+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fedi--framework-lightgray.png?logo=github
24+
:target: https://github.com/OCA/edi-framework/tree/19.0/edi_ubl_oca
25+
:alt: OCA/edi-framework
26+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
27+
:target: https://translation.odoo-community.org/projects/edi-framework-19-0/edi-framework-19-0-edi_ubl_oca
28+
:alt: Translate me on Weblate
29+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
30+
:target: https://runboat.odoo-community.org/builds?repo=OCA/edi-framework&target_branch=19.0
31+
:alt: Try me on Runboat
32+
33+
|badge1| |badge2| |badge3| |badge4| |badge5|
34+
35+
Provide basic configuration for UBL with EDI framework.
36+
37+
.. IMPORTANT::
38+
This is an alpha version, the data model and design can change at any time without warning.
39+
Only for development or testing purpose, do not use in production.
40+
`More details on development status <https://odoo-community.org/page/development-status>`_
41+
42+
**Table of contents**
43+
44+
.. contents::
45+
:local:
46+
47+
Bug Tracker
48+
===========
49+
50+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/edi-framework/issues>`_.
51+
In case of trouble, please check there if your issue has already been reported.
52+
If you spotted it first, help us to smash it by providing a detailed and welcomed
53+
`feedback <https://github.com/OCA/edi-framework/issues/new?body=module:%20edi_ubl_oca%0Aversion:%2019.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
54+
55+
Do not contact contributors directly about support or help with technical issues.
56+
57+
Credits
58+
=======
59+
60+
Authors
61+
-------
62+
63+
* Camptocamp
64+
65+
Contributors
66+
------------
67+
68+
- Simone Orsi <simone.orsi@camptocamp.com>
69+
70+
- `Trobz <https://trobz.com>`__:
71+
72+
- Thien Vo <thienvh@trobz.com>
73+
74+
Other credits
75+
-------------
76+
77+
The migration of this module from 14.0 to 16.0 was financially supported
78+
by Camptocamp
79+
80+
Maintainers
81+
-----------
82+
83+
This module is maintained by the OCA.
84+
85+
.. image:: https://odoo-community.org/logo.png
86+
:alt: Odoo Community Association
87+
:target: https://odoo-community.org
88+
89+
OCA, or the Odoo Community Association, is a nonprofit organization whose
90+
mission is to support the collaborative development of Odoo features and
91+
promote its widespread use.
92+
93+
.. |maintainer-simahawk| image:: https://github.com/simahawk.png?size=40px
94+
:target: https://github.com/simahawk
95+
:alt: simahawk
96+
97+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
98+
99+
|maintainer-simahawk|
100+
101+
This module is part of the `OCA/edi-framework <https://github.com/OCA/edi-framework/tree/19.0/edi_ubl_oca>`_ project on GitHub.
102+
103+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

edi_ubl_oca/__init__.py

Whitespace-only changes.

edi_ubl_oca/__manifest__.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2021 Camptocamp SA
2+
# @author: Simone Orsi <simone.orsi@camptocamp.com>
3+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
4+
5+
{
6+
"name": "EDI UBL",
7+
"summary": """Define EDI backend type for UBL.""",
8+
"version": "19.0.1.0.0",
9+
"development_status": "Alpha",
10+
"license": "AGPL-3",
11+
"website": "https://github.com/OCA/edi-framework",
12+
"author": "Camptocamp,Odoo Community Association (OCA)",
13+
"maintainers": ["simahawk"],
14+
"depends": ["edi_core_oca"],
15+
"data": [
16+
"data/edi_backend_type.xml",
17+
],
18+
"demo": [
19+
"demo/edi_backend_demo.xml",
20+
],
21+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<odoo>
3+
<record id="edi_backend_type_ubl" model="edi.backend.type">
4+
<field name="name">UBL</field>
5+
<field name="code">ubl</field>
6+
</record>
7+
</odoo>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<odoo>
3+
<record id="edi_backend_ubl_demo" model="edi.backend">
4+
<field name="name">UBL backend demo</field>
5+
<field name="backend_type_id" ref="edi_backend_type_ubl" />
6+
</record>
7+
</odoo>

edi_ubl_oca/i18n/edi_ubl_oca.pot

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
#
4+
msgid ""
5+
msgstr ""
6+
"Project-Id-Version: Odoo Server 18.0\n"
7+
"Report-Msgid-Bugs-To: \n"
8+
"Last-Translator: \n"
9+
"Language-Team: \n"
10+
"MIME-Version: 1.0\n"
11+
"Content-Type: text/plain; charset=UTF-8\n"
12+
"Content-Transfer-Encoding: \n"
13+
"Plural-Forms: \n"

edi_ubl_oca/i18n/it.po

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
#
4+
msgid ""
5+
msgstr ""
6+
"Project-Id-Version: Odoo Server 16.0\n"
7+
"Report-Msgid-Bugs-To: \n"
8+
"Last-Translator: Automatically generated\n"
9+
"Language-Team: none\n"
10+
"Language: it\n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: \n"
14+
"Plural-Forms: nplurals=2; plural=n != 1;\n"

edi_ubl_oca/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"

edi_ubl_oca/readme/CONTRIBUTORS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- Simone Orsi \<<simone.orsi@camptocamp.com>\>
2+
3+
- [Trobz](https://trobz.com):
4+
5+
> - Thien Vo \<<thienvh@trobz.com>\>

edi_ubl_oca/readme/CREDITS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
The migration of this module from 14.0 to 16.0 was financially supported
2+
by Camptocamp

0 commit comments

Comments
 (0)