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

Adding accounting tab of product.form to a group in v7?

Suscribirse

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

Se marcó esta pregunta
accountingproductformusergrouptabs
1 Responder
5938 Vistas
Avatar
Sean Samborski

I need to give access to users to view and edit the product accounts in the accounting tab on product.form. I have created the group with access rights account.account and account.type. I have added the following views:

  1. product.normal.form.inherit
  2. product.normal.form.return
  3. product.normal.form.return
  4. product.template.product.form.inherit
  5. product.template.stock.property.form.inherit

These are the only views I can find with accounting properties. Regardless, my users cannot view the accounting tab on the product form. What do I need to add to the group in order to see this tab?

 

EDIT: Well I just found out that adding the views to the group doesn't just give that group access, it also REMOVES access to everyone else. That seems counterproductive in an add state. You can't add without removing? Not a good design. That aside, I guess I have to find another way to add this accounting tab to a group.

0
Avatar
Descartar
Avatar
Ludo - 21South
Mejor respuesta

On the tab XML view, you can use the groups-attribute. That hides the tab for anyone not in the specified group and is often used on buttons throughout Odoo. The syntax is as follows:

<field name="company_id" groups="base.group_multi_company"/>

This will hide the company_id field for anyone not in the multi-company group. You should check if that is the case on any of the views you mentioned.

0
Avatar
Descartar
Sean Samborski
Autor

Ok. I do see that on the accounting code. Is it possible to do an addition or is it only one? Ie can I add my group to that line without removing the old one?

Sean Samborski
Autor

How do you find the right name for the group? I see the ID for my group, but the view is calling group groups="account.group_account_user". I can only assume that is the Accountant group as they are the only default group allowed to view this tab, but I do not know how to get that name for the group I've created.

Ludo - 21South

Alright, first things first. In your custom modules you should only be able to override the entire "groups-attribute". So instead of adding groups, you create the entire definition again. Secondly, when trying to identify groups head over to the code for the account module. Find the directory named "security". Inside that there should be an XML file which contains the group names as well as their ID. In my case I found a record with the name tag "Accountant" and the XML-ID being "group_account_user". You can use that in your case. Note: In most cases you need the dot-notation to distinguish the difference in modules. So groups should become something like groups="account.group_account_user", where account is the module that you found the group definition in.

¿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 show only some products depending on user login? Resuelto
product user group permission
Avatar
Avatar
Avatar
2
nov 22
9561
deactivate "Sale Price" in Product
product form
Avatar
Avatar
Avatar
3
nov 18
4107
Error: Please define stock output account for this product
accounting product
Avatar
Avatar
1
mar 15
5512
Access permission tab user
user tabs
Avatar
Avatar
1
mar 15
5858
How Does Odoo Handle Foreign Exchanges Rates for Stock valuation layers? Resuelto
accounting product valuation
Avatar
1
oct 25
3651
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