[FIX] point_of_sale: fixed yaml test, company_id field on bank statement lines is already defined in the module account

bzr revid: qdp-launchpad@tinyerp.com-20100916125505-uz5s80q5j1dc5rzy
This commit is contained in:
qdp-launchpad@tinyerp.com 2010-09-16 14:55:05 +02:00
parent ed6d745799
commit c4f4f475dd
1 changed files with 0 additions and 27 deletions

View File

@ -69,31 +69,4 @@ class account_cash_statement(osv.osv):
account_cash_statement()
class account_bank_statement_line(osv.osv):
def _default_company(self, cr, uid, context={}):
""" To get default company for the object"
@param self: The object pointer
@param cr: the current row, from the database cursor,
@param uid: the current users ID for security checks,
@param ids: List of bank statement ids
@param context: A standard dictionary for contextual values
@return: company
"""
user = self.pool.get('res.users').browse(cr, uid, uid, context=context)
if user.company_id:
return user.company_id.id
return self.pool.get('res.company').search(cr, uid, [('parent_id', '=', False)])[0]
_inherit = 'account.bank.statement.line'
_columns = {
'company_id':fields.many2one('res.company', 'Company', required=True),
}
_defaults = {
'company_id': _default_company,
}
account_bank_statement_line()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: