Hi all !
I dont understand a short code in module Sale :
def _get_default_shop(self, cr, uid, context=None):
company_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.id
shop_ids = self.pool.get('sale.shop').search(cr, uid, [('company_id','=',company_id)], context=context)
if not shop_ids:
raise osv.except_osv(_('Error!'), _('There is no default shop for the current user\'s company!'))
return shop_ids[0]
I dont know its useful . The specific :
company_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.id
Someone can explain it to help me?? Thanks all