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 restrict the Employee from viewing the customer and vendor bill and payments and they only can do is they can genrate and create the new bills

Suscribirse

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

Se marcó esta pregunta
purchaseaccounting
4 Respuestas
1139 Vistas
Avatar
Muhammad Shameel

Kindly provide me the solution

0
Avatar
Descartar
Avatar
Muhammad Shameel
Autor Mejor respuesta

kindly provide me this with screen shots as well


0
Avatar
Descartar
Avatar
Muhammad Shameel
Autor Mejor respuesta

It seems working for only customer bills menu but not for customer payments and vendors payments i want to hide that menu too kindly show me the way

0
Avatar
Descartar
Avatar
Waqas Mustafa
Mejor respuesta

In Odoo, create a custom security group (e.g., Limited Billing Access) and add record rules on account.move and account.payment to restrict visibility to only the records created by the user ([('create_uid', '=', user.id)]).

This lets employees create and view only their own bills/payments, while hiding others.

1- Create a new security group

Go to Settings → Technical → Security → Groups

Create a new group:

Name: Limited Billing Access

Category: Accounting & Finance



2- Add Record Rules

Go to Settings → Technical → Security → Record Rules

Create these two:

(A) Restrict viewing bills/payments:

Name: Restrict Bills & Payments Visibility

Object: account.move

Domain: [('create_uid', '=', user.id)]

Groups: Limited Billing Access

Permissions: Read ✅ Write ✅ Create ✅ Delete ✅

This means users will only see bills/invoices they created. 


(B) Restrict access to payments:

Name: Restrict Payments Visibility

Object: account.payment

Domain: [('create_uid', '=', user.id)]

Groups: Limited Billing Access

Permissions: Read ✅ Write ✅ Create ✅ Delete ✅

This ensures they can record or create payments for their own entries only.

Assign the group

Go to Settings → Users → (Select User)

→ Under “Access Rights” → Enable Limited Billing Access

Make sure the user does not have:

  • Accountant
  • Billing Manager
  • Adviser roles
    (these override record rules)



0
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Mejor respuesta

Hi,

To restrict employees from viewing customer and vendor bills or payments while still allowing them to create new bills, you can achieve this using Odoo’s access control and record rules. First, create a new user group called **“Bill Creation Only”** under *Settings → Users & Companies → Groups*. Then, adjust access control for the models **`account.move`** and **`account.payment`** under *Settings → Technical → Security → Access Control Lists*. Give this group create and write access for `account.move`, but no access for `account.payment`. Next, add a record rule for the `account.move` model with the domain `[('create_uid', '=', user.id)]` so that employees can only see bills they created themselves. For payments, create another record rule with the domain `[(0, '=', 1)]` to hide all payment records. Finally, assign this new group to the employee users and make sure they are not part of the Accountant or Advisor groups, which would override these restrictions. Optionally, you can hide accounting menus such as “Payments” and “Customer Invoices” by setting group visibility on those menu items. This setup ensures employees can generate and manage only their own bills without accessing financial records or payments of others.


Hope it helps.



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
Configuracion de odoo 18 para trabajar con anticipos de ordenes de compra (Localizacion USA)
purchase accounting
Avatar
0
nov 25
135
Can I allow user to enter line-item extended price for Vendor Bills? Odoo 19
purchase accounting
Avatar
Avatar
Avatar
2
nov 25
313
ODOO 18.3 create vendor bill, upload vendor bill Resuelto
purchase accounting
Avatar
Avatar
Avatar
2
oct 25
1044
odoo18 down payment
purchase accounting
Avatar
Avatar
Avatar
3
oct 25
2791
How can I manage Landed Costs in company currency?
purchase accounting
Avatar
Avatar
1
sept 25
868
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