Skip to content

Commit

Permalink
[MIG] product_route_profile: Migration to 15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bosd committed Oct 31, 2023
1 parent cb7e217 commit ab4e002
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion product_route_profile/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"name": "Product Route Profile",
"summary": "Add Route profile concept on product",
"version": "14.0.1.0.3",
"version": "15.0.1.0.0",
"category": "Warehouse",
"website": "https://github.com/OCA/stock-logistics-warehouse",
"author": "Akretion, Odoo Community Association (OCA)",
Expand Down
2 changes: 1 addition & 1 deletion product_route_profile/models/route_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class RouteProfile(models.Model):
_name = "route.profile"
_description = "Route Profile"

name = fields.Char("Name")
name = fields.Char()
company_id = fields.Many2one(
comodel_name="res.company",
default=lambda self: self.env.company.id,
Expand Down
2 changes: 1 addition & 1 deletion product_route_profile/tests/test_product_route_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from odoo.tests.common import SavepointCase


class TestProductRouteProfile(SavepointCase):
class TestProductRouteProfile(TransactionCase):
@classmethod
def setUpClass(cls):
super(TestProductRouteProfile, cls).setUpClass()
Expand Down

0 comments on commit ab4e002

Please sign in to comment.