You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
666 B

  1. # -*- coding: utf-8 -*-
  2. # This file is part of OpenERP. The COPYRIGHT file at the top level of
  3. # this module contains the full copyright notices and license terms.
  4. from openerp import models, fields
  5. class AccountJournal(models.Model):
  6. _inherit = "account.journal"
  7. no_bank_statement = fields.Boolean(
  8. string="No Bank Statement",
  9. help="Select if you do not want bank statements created. It basically "
  10. "makes this a dummy method because it will no longer make any impact "
  11. "on your accounts. One use case might be when you want to sell "
  12. "products only by issuing an Invoice without registering any payments."
  13. )