diff --git a/rma_repair/__manifest__.py b/rma_repair/__manifest__.py index c3f288cb..7d5afd9b 100644 --- a/rma_repair/__manifest__.py +++ b/rma_repair/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { "name": "RMA Repair", - "version": "15.0.2.0.0", + "version": "16.0.1.0.0", "license": "AGPL-3", "category": "RMA", "summary": "Links RMA with Repairs.", diff --git a/rma_repair/wizards/rma_order_line_make_repair.py b/rma_repair/wizards/rma_order_line_make_repair.py index 26176052..258886c0 100644 --- a/rma_repair/wizards/rma_order_line_make_repair.py +++ b/rma_repair/wizards/rma_order_line_make_repair.py @@ -94,7 +94,7 @@ class RmaLineMakeRepairItem(models.TransientModel): comodel_name="uom.uom", string="UoM", readonly=True ) out_route_id = fields.Many2one( - comodel_name="stock.location.route", + comodel_name="stock.route", string="Outbound Route", domain=[("rma_selectable", "=", True)], )