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

Custom User Type for Subcontractor Field Techs with Limited Task View

Suscribirse

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

Se marcó esta pregunta
subcontractorsodoouserpermissionsportal-userFieldService
1 Responder
1617 Vistas
Avatar
RiverCity IT Pros

I'm currently setting up a workflow for my subcontractor field techs in Odoo and I'm looking for guidance on how to configure a user type for them. I want them to have access to the Tasks module, similar to how normal portal users do, but with one important limitation: I don't want them to be able to see the billing information (how much I am charging my clients for the tasks).

Is there a way to customize permissions or create a user type that restricts their access to sensitive billing information while still allowing them to view and update task details? Any advice or steps on how to implement this would be much appreciated.

Thanks in advance for your help!


0
Avatar
Descartar
Avatar
Gracious Joseph
Mejor respuesta

To configure a custom user type for your subcontractor field techs in Odoo with access to the Tasks module but restricted from viewing billing information, you can achieve this through access rights, record rules, and view customization. Here's a step-by-step guide:

1. Create a Custom User Group

You’ll need to create a new user group specifically for subcontractor field techs.

  1. Navigate to Groups Configuration:
    • Go to Settings > Users & Companies > Groups.
  2. Create a New Group:
    • Click Create and name the group, e.g., Subcontractor Field Tech.
    • Set Implied Groups to include only the minimum permissions they need (e.g., "Portal" or "User: Tasks").
  3. Assign the Group to the Subcontractor Users:
    • Go to Settings > Users & Companies > Users.
    • Assign the new group to the subcontractor users.

2. Restrict Access to Sensitive Fields

Billing-related fields in the Tasks module (e.g., planned_amount, total_cost) can be hidden for the subcontractors.

Option A: Using Security Rules

  1. Go to Technical Settings:
    • Activate developer mode: Settings > Activate Developer Mode.
    • Navigate to Settings > Technical > Security > Record Rules.
  2. Create a New Record Rule:
    • Model: project.task.
    • Name: Hide Billing Information for Subcontractors.
    • Domain: [] (applies globally to all records).
    • Rule:
      ['|', ('user_id', '=', user.id), ('create_uid', '=', user.id)]
      
      This ensures the subcontractor can only see tasks they are assigned to or created.
  3. Assign the Rule to the Subcontractor Group:
    • Set Groups to Subcontractor Field Tech.

Option B: Hide Billing Fields in Views

To hide billing-related fields in task forms and kanban views:

  1. Navigate to Task Form View:
    • Go to Settings > Technical > User Interface > Views.
    • Search for project.task.form or the specific view you want to modify.
  2. Modify the XML: Add the groups attribute to hide the billing fields for the subcontractor group:
    <field name="planned_amount" groups="base.group_user"/>
    <field name="total_cost" groups="base.group_user"/>
    
    The base.group_user ensures that only internal users (not subcontractors) see these fields.

3. Limit Task Visibility

If you want subcontractors to see only their assigned tasks:

  1. Create a Record Rule:
    • Model: project.task.
    • Name: Limit Tasks to Assigned Subcontractors.
    • Domain:
      ['|', ('user_id', '=', user.id), ('create_uid', '=', user.id)]
      
    • Assign this rule to the Subcontractor Field Tech group.
  2. Test the Rule:
    • Assign tasks to a subcontractor and ensure they can see only those tasks.

4. Simplify Their View

Subcontractors may not need access to all the details in the task form. Simplify their interface:

  1. Duplicate the Task Form View:
    • Go to Settings > Technical > User Interface > Views.
    • Duplicate the project.task.form view.
  2. Customize the View for Subcontractors:
    • Add groups="subcontractor_field_tech" to fields and sections you want them to see.
  3. Remove Billing-Related Fields:
    • Remove fields like planned_amount, total_cost, etc., from the subcontractor's form view.

5. Set Subcontractor User as Portal

If subcontractors don’t need full Odoo access but only a limited portal interface:

  1. Enable Portal Access:
    • Go to Contacts and find the subcontractor contact.
    • Click Grant Portal Access.
    • Assign them the Subcontractor Field Tech group.
  2. Restrict Portal Task View:
    • Go to Settings > Technical > Security > Access Control List.
    • Ensure Subcontractor Field Tech has limited access to the project.task model (e.g., read and write but no create/delete).

6. Test and Validate

  1. Log in as a subcontractor user to confirm:
    • Tasks are visible but billing fields are hidden.
    • Only assigned tasks are accessible.
    • They can update task details without seeing sensitive information.
  2. Adjust any access rules or views based on feedback.

7. Optional: Automate User Assignment

If you frequently add subcontractors, automate their group assignment:

  • Create a server action triggered on user creation to assign the Subcontractor Field Tech group.

Summary

By combining custom user groups, record rules, and view customizations, you can tailor the Odoo interface to meet your subcontractor field techs' needs. They’ll have access to their tasks while sensitive billing details remain hidden.

Let me know if you need detailed guidance on any step!

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
How to Manage Subcontractors as Users Without Odoo Backend Access or Extra Costs?
users subcontractors FieldService
Avatar
0
ago 24
1390
How to Restore a Deleted User Account Resuelto
user odoo userpermissions
Avatar
Avatar
Avatar
2
ene 23
6962
How to filter work in admin and portal use view in sale order
sale odoo portal-user
Avatar
0
abr 21
3567
How to customize the portal of Odoo Online ? Resuelto
online customize odoo portal-user
Avatar
Avatar
1
abr 25
3659
Odoo Portal user payment term selection
accounting payment odoo portal-user
Avatar
Avatar
Avatar
2
abr 24
2071
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