From f7dc2f1b41e1f40305b92dc2e8880d01b06575ad Mon Sep 17 00:00:00 2001 From: ahenriquez Date: Tue, 29 Oct 2019 10:43:37 +0100 Subject: [PATCH] [FIX]minor crap in several modules --- rma_purchase_analytic/wizards/rma_add_purchase.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rma_purchase_analytic/wizards/rma_add_purchase.py b/rma_purchase_analytic/wizards/rma_add_purchase.py index 7d79194e..9bce48e3 100644 --- a/rma_purchase_analytic/wizards/rma_add_purchase.py +++ b/rma_purchase_analytic/wizards/rma_add_purchase.py @@ -21,6 +21,8 @@ class RmaLineMakePurchaseOrder(models.TransientModel): @api.model def _prepare_purchase_order_line(self, po, item): - res = super(RmaLineMakePurchaseOrder, self)._prepare_purchase_order_line(po, item) + res = super( + RmaLineMakePurchaseOrder, self)._prepare_purchase_order_line( + po, item) res['account_analytic_id'] = item.line_id.analytic_account_id.id return res