Skip to content

Commit 3013863

Browse files
committed
[MIG] edi_voxel_sale_order_import_oca: Migration to 16.0
1 parent f8e8791 commit 3013863

File tree

9 files changed

+21
-1
lines changed

9 files changed

+21
-1
lines changed

edi_voxel_sale_order_import_oca/README.rst

+5
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ Authors
8989
~~~~~~~
9090

9191
* Tecnativa
92+
* Guavana
9293

9394
Contributors
9495
~~~~~~~~~~~~
@@ -99,6 +100,10 @@ Contributors
99100
* Pedro M. Baeza
100101
* Sergio Teruel
101102

103+
* `Guavana <https://guavana.com>`_:
104+
105+
* Leonardo J. Caballero G.
106+
102107
Maintainers
103108
~~~~~~~~~~~
104109

edi_voxel_sale_order_import_oca/__manifest__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# Copyright 2019 Tecnativa - Ernesto Tejeda
2+
# Copyright 2024, 2025 Guavana - Leonardo J. Caballero G.
23
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
34

45
{
56
"name": "Voxel sale order oca",
67
"summary": "Import sale order from Voxel.",
78
"version": "16.0.1.0.1",
89
"category": "Sale",
9-
"author": "Tecnativa, Odoo Community Association (OCA)",
10+
"author": "Tecnativa, Guavana, Odoo Community Association (OCA)",
1011
"website": "https://github.com/OCA/edi",
1112
"license": "AGPL-3",
1213
"depends": [

edi_voxel_sale_order_import_oca/models/res_company.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2019 Tecnativa - Ernesto Tejeda
2+
# Copyright 2024, 2025 Guavana - Leonardo J. Caballero G.
23
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
34

45
from odoo import fields, models

edi_voxel_sale_order_import_oca/models/res_config_settings.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2019 Tecnativa - Ernesto Tejeda
2+
# Copyright 2024, 2025 Guavana - Leonardo J. Caballero G.
23
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
34

45
from odoo import fields, models

edi_voxel_sale_order_import_oca/models/sale_order.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2019 Tecnativa - Ernesto Tejeda
2+
# Copyright 2024, 2025 Guavana - Leonardo J. Caballero G.
23
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
34

45
import logging

edi_voxel_sale_order_import_oca/readme/CONTRIBUTORS.rst

+4
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
* Ernesto Tejeda
44
* Pedro M. Baeza
55
* Sergio Teruel
6+
7+
* `Guavana <https://guavana.com>`_:
8+
9+
* Leonardo J. Caballero G.

edi_voxel_sale_order_import_oca/static/description/index.html

+5
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,7 @@ <h1><a class="toc-backref" href="#toc-entry-4">Credits</a></h1>
432432
<h2><a class="toc-backref" href="#toc-entry-5">Authors</a></h2>
433433
<ul class="simple">
434434
<li>Tecnativa</li>
435+
<li>Guavana</li>
435436
</ul>
436437
</div>
437438
<div class="section" id="contributors">
@@ -443,6 +444,10 @@ <h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
443444
<li>Sergio Teruel</li>
444445
</ul>
445446
</li>
447+
<li><a class="reference external" href="https://guavana.com">Guavana</a>:<ul>
448+
<li>Leonardo J. Caballero G.</li>
449+
</ul>
450+
</li>
446451
</ul>
447452
</div>
448453
<div class="section" id="maintainers">

edi_voxel_sale_order_import_oca/views/res_company_views.xml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<!-- Copyright 2019 Tecnativa - Ernesto Tejeda
3+
Copyright 2024, 2025 Guavana - Leonardo J. Caballero G.
34
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
45
<odoo>
56
<record id="view_company_form" model="ir.ui.view">

edi_voxel_sale_order_import_oca/views/res_config_settings_views.xml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<!-- Copyright 2019 Tecnativa - Ernesto Tejeda
3+
Copyright 2024, 2025 Guavana - Leonardo J. Caballero G.
34
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
45
<odoo>
56
<record id="res_config_settings_view_form" model="ir.ui.view">

0 commit comments

Comments
 (0)