[MIG] account_rec_set_partner: for Odoo 13.0

This commit is contained in:
Connor Christian
2020-11-02 13:36:08 -05:00
committed by Jared Kipe
parent 769ba234c0
commit da9486bdc1
2 changed files with 1 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
'name': 'Reconcile Model Set Partner', 'name': 'Reconcile Model Set Partner',
'version': '12.0.1.0.0', 'version': '13.0.1.0.0',
'author': 'Hibou Corp. <hello@hibou.io>', 'author': 'Hibou Corp. <hello@hibou.io>',
'category': 'Accounting', 'category': 'Accounting',
'summary': 'Reconcile Model can now set the Partner when matched.', 'summary': 'Reconcile Model can now set the Partner when matched.',

View File

@@ -12,7 +12,6 @@ class AccountReconcileModel(models.Model):
write off if the rule has a "set_partner_id" and the statement write off if the rule has a "set_partner_id" and the statement
line does not have a partner set. line does not have a partner set.
""" """
@api.multi
def _apply_rules(self, st_lines, excluded_ids=None, partner_map=None): def _apply_rules(self, st_lines, excluded_ids=None, partner_map=None):
''' Apply criteria to get candidates for all reconciliation models. ''' Apply criteria to get candidates for all reconciliation models.
:param st_lines: Account.bank.statement.lines recordset. :param st_lines: Account.bank.statement.lines recordset.