I am trying to inherit "account.bank.statement.line" model. For this i am writing a below code.
******************************************************************
class account_bank_statement_line(osv.osv):
_inherit = 'account.bank.statement.line'
_columns= {
'rental_statement_id': fields.many2one('rental.vehicle.contract','Contract payment', ondelete='cascade'),
}
***********************************************************************
and when i update my model i get this error :
Do u have account module included in "depends" __openerp__.py?