account.py 626 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. #################################################################################
  3. # Author : Acespritech Solutions Pvt. Ltd. (<www.acespritech.com>)
  4. # Copyright(c): 2012-Present Acespritech Solutions Pvt. Ltd.
  5. # All Rights Reserved.
  6. #
  7. # This program is copyright property of the author mentioned above.
  8. # You can`t redistribute it and/or modify it.
  9. #
  10. #################################################################################
  11. from openerp import models, fields, api, _
  12. class account_journal(models.Model):
  13. _inherit = 'account.journal'
  14. shortcut_key = fields.Char('Shortcut Key')