diff --git a/account_banking_reconciliation/README.rst b/account_banking_reconciliation/README.rst index 18d82c87..6dfd81ae 100644 --- a/account_banking_reconciliation/README.rst +++ b/account_banking_reconciliation/README.rst @@ -179,9 +179,9 @@ Contributors ------------ * Nova Point Group -* Balaji Kannan -* Bhavesh Odedra -* Sandeep Mangukiya +* Balaji Kannan +* Bhavesh Odedra +* Sandeep Mangukiya Funders ------- @@ -189,7 +189,7 @@ Funders The development of this module has been financially supported by: * Nova Point Group -* Ursa Information Systems +* Open Source Integrators Maintainer ---------- diff --git a/account_banking_reconciliation/__manifest__.py b/account_banking_reconciliation/__manifest__.py index 5f623842..490a049b 100644 --- a/account_banking_reconciliation/__manifest__.py +++ b/account_banking_reconciliation/__manifest__.py @@ -8,7 +8,7 @@ "version": "10.0.1.0.0", "license": "AGPL-3", "category": "Accounting and Financial Management", - "author": "NovaPoint Group LLC, Ursa Information Systems, " + "author": "NovaPoint Group LLC, Open Source Integrators, " "Odoo Community Association (OCA)", "website": "https://github.com/OCA/account-reconcile", "depends": [ diff --git a/account_banking_reconciliation/models/account_banking_reconciliation.py b/account_banking_reconciliation/models/account_banking_reconciliation.py index 0fac83f3..df52f916 100644 --- a/account_banking_reconciliation/models/account_banking_reconciliation.py +++ b/account_banking_reconciliation/models/account_banking_reconciliation.py @@ -45,7 +45,8 @@ class BankAccRecStatement(models.Model): @api.multi def copy(self, default=None): self.ensure_one() - if default is None: default = {} + if default is None: + default = {} default.update({'credit_move_line_ids': [], 'debit_move_line_ids': [], 'name': ''}) @@ -61,7 +62,6 @@ class BankAccRecStatement(models.Model): def unlink(self): """Reset the related account.move.line to be re-assigned later to statement.""" - statement_line_obj = self.env['bank.acc.rec.statement.line'] self.check_group() # Check if user is allowed to perform the action for statement in self: statement_lines = \