| 123456789101112131415161718 | # -*- coding: utf-8 -*-################################################################################## Author      : Acespritech Solutions Pvt. Ltd. (<www.acespritech.com>)# Copyright(c): 2012-Present Acespritech Solutions Pvt. Ltd.# All Rights Reserved.## This program is copyright property of the author mentioned above.# You can`t redistribute it and/or modify it.##################################################################################from openerp import models, fields, api, _class account_journal(models.Model):    _inherit = 'account.journal'    shortcut_key = fields.Char('Shortcut Key')
 |