diff --git a/rma_sale/__manifest__.py b/rma_sale/__manifest__.py index 4e2b0802..f31780f2 100644 --- a/rma_sale/__manifest__.py +++ b/rma_sale/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Return Merchandise Authorization Management - Link with Sales", "summary": "Sale Order - Return Merchandise Authorization (RMA)", - "version": "13.0.1.2.0", + "version": "13.0.1.2.1", "development_status": "Production/Stable", "category": "RMA", "website": "https://github.com/OCA/rma", diff --git a/rma_sale/wizard/sale_order_rma_wizard.py b/rma_sale/wizard/sale_order_rma_wizard.py index 77871d00..99270219 100644 --- a/rma_sale/wizard/sale_order_rma_wizard.py +++ b/rma_sale/wizard/sale_order_rma_wizard.py @@ -140,6 +140,8 @@ class SaleOrderLineRmaWizard(models.TransientModel): and r.sale_line_id.order_id == record.order_id ) ) + else: + record.move_id = False @api.depends("order_id") def _compute_allowed_product_ids(self):