[IMP] account: inhetrit from mail.thread
authorTurkesh Patel (Open ERP) <tpa@tinyerp.com>
Mon, 7 May 2012 12:07:07 +0000 (17:37 +0530)
committerTurkesh Patel (Open ERP) <tpa@tinyerp.com>
Mon, 7 May 2012 12:07:07 +0000 (17:37 +0530)
bzr revid: tpa@tinyerp.com-20120507120707-dgwdaum3wjzb8mi8

addons/account/account_bank_statement.py

index 5601179..a320f6d 100644 (file)
@@ -127,6 +127,7 @@ class account_bank_statement(osv.osv):
     _order = "date desc, id desc"
     _name = "account.bank.statement"
     _description = "Bank Statement"
+    _inherit = ['mail.thread']
     _columns = {
         'name': fields.char('Name', size=64, required=True, states={'draft': [('readonly', False)]}, readonly=True, help='if you give the Name other then /, its created Accounting Entries Move will be with same name as statement name. This allows the statement entries to have the same references than the statement itself'), # readonly for account_cash_statement
         'date': fields.date('Date', required=True, states={'confirm': [('readonly', True)]}, select=True),