account_journal.py 496 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. # For copyright and license notices, see __openerp__.py file in module root
  4. # directory
  5. ##############################################################################
  6. from openerp import fields, models
  7. class account_journal(models.Model):
  8. _inherit = "account.journal"
  9. active = fields.Boolean('Active', default=True)
  10. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: