Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Security problem

Subscriure's

Get notified when there's activity on this post

This question has been flagged
securityrulesodoo8.0
1 Respondre
4629 Vistes
Avatar
Dr Obx

Guys,

I added a groups, security rules and on one machine it works but on another one it doesen't.

ir.model.access.csv

<pre>

"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"

"user_configurator","user_configurator","model_configurator","imerge_group_user",1,0,0,0

"manager_configurator","manager_configurator","model_configurator","imerge_group_manager",1,1,1,1

</pre>

security_menu.xml

<pre>

<?xml version="1.0" encoding="UTF-8"?>

<openerp>

<data>

<record model='ir.ui.menu' id='security_menu'>

<field name='groups_id' eval="[(4, ref('imerge_group_manager')),(4, ref('imerge_group_user'))]"/>

</record>

<record model='ir.ui.menu' id='security_list_menu1'>

<field name='groups_id' eval="[(4, ref('imerge_group_manager')),(4, ref('imerge_group_user'))]"/>

</record>

<record model='ir.ui.menu' id='security_list_menu2'>

<field name='groups_id' eval="[(4, ref('imerge_group_manager')),(4, ref('imerge_group_user'))]"/>

</record>

</data>

</openerp>

</pre>

security.xml

<pre>

<?xml version="1.0" encoding="UTF-8"?>

<openerp>

<data>

<record model='ir.module.category' id='security_module_category'>

<field name='name'>Title generator</field>

<field name='sequence'>10</field>

</record>

<record id='imerge_group_manager' model='res.groups'>

<field name='name'>Manager</field>

<field name='category_id' eval='security_module_category'/>

<field name="users" eval="[(4, ref('base.user_root'))]"/>

</record>

<record id='imerge_group_user' model='res.groups'>

<field name='name'>User</field>

<field name='category_id' eval='security_module_category'/>

<field name="users" eval="[(4, ref('base.user_root'))]"/>

</record>

</data>

</openerp>

</pre>

Can anyone tell me what I've done wrong ?

I'm getting this error:

Exception: Module loading iMerge failed: file iMerge/security/ir.model.access.csv could not be processed:

Line 1 : No matching record found for external id 'imerge_group_user' in field 'Group'

0
Avatar
Descartar
Avatar
Axel Mendoza
Best Answer

Check the order of the files in the data entry of the __openerp__.py dict, the file that define the group imerge_group_user need to be defined first than where the record id imerge_group_user is used in menus or ir.model.access csv entries

1
Avatar
Descartar
Dr Obx
Autor

OMG silly Me :) Thank you Axel Problem solved :)

Axel Mendoza

Happy to help

Dr Obx
Autor

I just did not knew that the order is so important :) Now I know :) Thank you again :)

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
Setting up rules' Access Right in xml,csv files
security xml rules
Avatar
1
de des. 22
26059
Manage Security
security modules rules
Avatar
2
de juny 20
3599
[8] How to inherit or delete rule Solved
security rules odoo
Avatar
Avatar
Avatar
2
de des. 19
16106
custom module menus are hidden to all users other than admin
security menuitem rules
Avatar
Avatar
1
de set. 16
21569
How to create rule to display only subordinates leave records in openerp
security rules groups
Avatar
Avatar
1
de març 15
8519
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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