Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

How to make all branches for user active automatically after login his account?

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
development
3 Respuestas
289 Vistas
Avatar
شركة مهارات للتقنية وتنمية الموارد البشرية

How do I implement this scenario? I have a user (sales representative) with multiple branches or companies. I want this user to log in fully without needing to manually activate all the branches. I don't want the user to have to manually activate each company every time they log in. They might forget because a client interested in an opportunity who registers with the service wants it to be visible to all branches. If you haven't activated all the branches, it will only appear and request the branch from the parent company, which is activated by default.

0
Avatar
Descartar
Chris TRINGHAM

See the answer here: https://www.odoo.com/forum/help-1/can-i-set-the-company-with-a-url-278756

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Mejor respuesta

Hi,


To give a sales representative seamless access to multiple Odoo companies without manual switching, grant them access to all relevant companies in their user settings under "Allowed Companies" and set a default company. The crucial step is to modify or create a record rule for opportunities (crm.lead) using the IN operator in the domain filter. This allows the sales representative to see opportunities from all their allowed companies simultaneously, without needing to switch between them.

The recommended domain filter is ['|', ('company_id', '=', False), ('company_id', 'in', user.company_ids.ids)]. Test thoroughly to ensure the record rules work correctly and prioritize security when modifying them. This approach ensures opportunities are visible across all relevant companies, improving efficiency and preventing missed leads.


Hope it helps

0
Avatar
Descartar
شركة مهارات للتقنية وتنمية الموارد البشرية
Autor

That's correct, but I want the opportunities recorded by the sales representative to show the contact data to That's correct, but I want the opportunities registered by the sales representative to show the contact information to the regular user responsible for sales or invoicing. This would allow them to see all contacts from any branch within the sales representative's authorized branches.

For example, the sales representative is authorized to access branches A, B, and C, but by default, the parent company is active. However, the sales user only has branch B, so the contacts created by the sales representative won't appear as opportunities because they were created within the parent company.

Thanks

Avatar
شركة مهارات للتقنية وتنمية الموارد البشرية
Autor Mejor respuesta

Thank you for help me.

My question is about salesperson. Each salesperson has a record of interested clients as direct opportunities and they are registered in the contact application. However, if the salesperson is only registered with one company, the other branches cannot find the client data registered by the representative. Therefore, the data only appears in the representative's virtual branch, and the representatives are registered for the company as a whole.



0
Avatar
Descartar
Avatar
Masoud
Mejor respuesta

Odoo’s multi‑company logic is designed so each user has a default company and can manually switch or activate others. There isn’t a built‑in option to “auto‑activate all companies” at login, because Odoo enforces company boundaries for security and data segregation.

If you want a sales rep to always see opportunities across all branches without toggling, you have two main approaches:

  • Access rights: Give the user access to all companies and configure their default company. They’ll still need to activate others if they want to work across them in the UI.

  • Customization: Extend the login/session logic so all companies are activated automatically for that user. This usually means overriding the res.users context or writing a small module that sets allowed_company_ids at login.

by default Odoo requires manual activation for multi‑company users. To bypass that, you’d need a small customization that auto‑loads all allowed companies into the user’s session or creating such access rights that cover your need about this matter.

0
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
MrpBom _skip_bom_line skips line of product that has two multi-choice attribute values when both are selected in Apply to variant
development
Avatar
Avatar
1
nov 25
215
How to create a new field have 2 related field by developer mode
development
Avatar
Avatar
2
oct 25
547
i face one error while edit my website
development
Avatar
0
oct 25
661
How to add market price of the product to the Odoo 18 Community POS receipt?
development
Avatar
0
oct 25
584
Unable to create views in my custom module or an application Resuelto
development
Avatar
Avatar
2
oct 25
6751
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now