From 1c64e6d8470aa4fdf57fed6a04fb344f8aa67374 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 28 Oct 2021 09:40:21 +0200 Subject: [PATCH] [IMP] account_credit_control: Remove confusing attributes As explained in https://github.com/OCA/account-financial-tools/pull/1143#issuecomment-926841349, those attributes are not correct, so let's remove them for not confusing people thinking that they are the proper ones. --- account_credit_control/models/credit_control_run.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/account_credit_control/models/credit_control_run.py b/account_credit_control/models/credit_control_run.py index 4bd4ee2e1..b5d4b096d 100644 --- a/account_credit_control/models/credit_control_run.py +++ b/account_credit_control/models/credit_control_run.py @@ -27,8 +27,6 @@ class CreditControlRun(models.Model): policy_ids = fields.Many2many( 'credit.control.policy', - rel="credit_run_policy_rel", - id1='run_id', id2='policy_id', string='Policies', readonly=True, states={'draft': [('readonly', False)]},