Browse Source
base_jsonify: cleanups
base_jsonify: cleanups
remove copyrights from init and update copyrightspull/1472/head
committed by
Simone Orsi
11 changed files with 91 additions and 101 deletions
-
7base_jsonify/README.rst
-
5base_jsonify/__init__.py
-
5base_jsonify/__manifest__.py
-
12base_jsonify/demo/export_demo.xml
-
5base_jsonify/models/__init__.py
-
4base_jsonify/models/ir_export.py
-
4base_jsonify/models/ir_exports_line.py
-
32base_jsonify/models/models.py
-
4base_jsonify/tests/__init__.py
-
12base_jsonify/tests/test_get_parser.py
-
4base_jsonify/tests/test_ir_exports_line.py
@ -1,7 +1,2 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2016 Akretion (http://www.akretion.com) |
|||
# Sébastien BEAU <sebastien.beau@akretion.com> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
|
|||
from . import models |
@ -1,12 +1,13 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2016 Akretion (http://www.akretion.com) |
|||
# © 2017 Akretion (http://www.akretion.com) |
|||
# Sébastien BEAU <sebastien.beau@akretion.com> |
|||
# Raphaël Reverdy <raphael.reverdy@akretion.com> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
{ |
|||
"name": "Base Jsonify", |
|||
"summary": "Base module that provide the jsonify method on all object", |
|||
"version": "8.0.1.0.0", |
|||
"version": "10.0.1.0.0", |
|||
"category": "Uncategorized", |
|||
"website": "https://odoo-community.org/", |
|||
"author": "Akretion, Odoo Community Association (OCA)", |
@ -1,11 +1,7 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<openerp> |
|||
<data> |
|||
|
|||
<record id="ir_exp_partner" model="ir.exports"> |
|||
<odoo> |
|||
<record id="ir_exp_partner" model="ir.exports"> |
|||
<field name="name">Partner Export</field> |
|||
<field name="resource">res.partner</field> |
|||
</record> |
|||
|
|||
</data> |
|||
</openerp> |
|||
</record> |
|||
</odoo> |
@ -1,9 +1,4 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2016 Akretion (http://www.akretion.com) |
|||
# Sébastien BEAU <sebastien.beau@akretion.com> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
|
|||
from . import models |
|||
from . import ir_export |
|||
from . import ir_exports_line |
@ -1,7 +1,3 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2016 Akretion (http://www.akretion.com) |
|||
# Sébastien BEAU <sebastien.beau@akretion.com> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import test_get_parser |
|||
from . import test_ir_exports_line |
Write
Preview
Loading…
Cancel
Save
Reference in new issue