Skip to content

Commit d8e630b

Browse files
[MIG] delivery_carrier_agency: Migration to 17.0
1 parent c560a57 commit d8e630b

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

delivery_carrier_agency/README.rst

+3
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ Contributors
6161
------------
6262

6363
- Florian da Costa <florian.dacosta@akretion.com>
64+
- `Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>`__
65+
66+
- Bhavesh Heliconia
6467

6568
Maintainers
6669
-----------

delivery_carrier_agency/__manifest__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
{
55
"name": "Delivery Carrier Agency",
66
"summary": "Add a model for Carrier Agencies",
7-
"version": "16.0.1.0.0",
7+
"version": "17.0.1.0.0",
88
"category": "Delivery",
99
"website": "https://github.com/OCA/delivery-carrier",
1010
"author": "Akretion,Odoo Community Association (OCA)",
1111
"license": "AGPL-3",
1212
"application": False,
1313
"installable": True,
1414
"depends": [
15-
"delivery",
15+
"stock_delivery",
1616
],
1717
"data": [
1818
"security/ir.model.access.csv",
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
- Florian da Costa \<<florian.dacosta@akretion.com>\>
2+
- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)
3+
- Bhavesh Heliconia

delivery_carrier_agency/static/description/index.html

+4
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,10 @@ <h2><a class="toc-backref" href="#toc-entry-3">Authors</a></h2>
407407
<h2><a class="toc-backref" href="#toc-entry-4">Contributors</a></h2>
408408
<ul class="simple">
409409
<li>Florian da Costa &lt;<a class="reference external" href="mailto:florian.dacosta&#64;akretion.com">florian.dacosta&#64;akretion.com</a>&gt;</li>
410+
<li><a class="reference external" href="https://www.heliconia.io">Heliconia Solutions Pvt. Ltd.</a><ul>
411+
<li>Bhavesh Heliconia</li>
412+
</ul>
413+
</li>
410414
</ul>
411415
</div>
412416
<div class="section" id="maintainers">

delivery_carrier_agency/tests/test_carrier_agency.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
22

3-
from odoo.tests.common import TransactionCase
3+
from odoo.addons.base.tests.common import BaseCommon
44

55

6-
class TestCarrierAgency(TransactionCase):
6+
class TestCarrierAgency(BaseCommon):
77
def test_get_carrier_agency(self):
88
"""Test finding the correct account for a picking"""
99
chicago_wh = self.env.ref("stock.stock_warehouse_shop0")

delivery_carrier_agency/views/delivery_carrier_agency_view.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<field
3232
name="carrier_ids"
3333
widget="many2many_tags"
34-
attrs="{'invisible': [('delivery_type', '=', False)]}"
34+
invisible="not delivery_type"
3535
domain="[('delivery_type', '=', delivery_type)]"
3636
/>
3737
<field name="warehouse_ids" widget="many2many_tags" />

0 commit comments

Comments
 (0)