diff --git a/addons/l10n_fr_pos_cert/models/account_bank_statement.py b/addons/l10n_fr_pos_cert/models/account_bank_statement.py index 194bf3d6324ccbc115c0483103782b955f32529e..744c2edad0644dcf31e3e615ebb7d37ce48be650 100644 --- a/addons/l10n_fr_pos_cert/models/account_bank_statement.py +++ b/addons/l10n_fr_pos_cert/models/account_bank_statement.py @@ -10,7 +10,7 @@ class AccountBankStatement(models.Model): def unlink(self): for statement in self: - if not statement.company_id._is_accounting_unalterable() or not statement.s.journal_id.pos_payment_method_ids: + if not statement.company_id._is_accounting_unalterable() or not statement.journal_id.pos_payment_method_ids: continue if statement.state != 'open': raise UserError(_('You cannot modify anything on a bank statement (name: %s) that was created by point of sale operations.') % (statement.name))