Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

[8] record visible only to followers and who created them

Naroči se

Get notified when there's activity on this post

This question has been flagged
followerusersrecord_rulesprivacy
4 Odgovori
7825 Prikazi
Avatar
mauro anelli

Hi all,

i need to make a record rule for purchase order and manufacturing order that show record only to the one who create the record and those who is added as followers

for user own record i set a record rule with  [('create_uid', '=', user.id)] and works fine.

i'm struggling with the followers rule , something like [('message_is_follower','=', [user.id])] but don't work.
any suggestion?


thanks

0
Avatar
Opusti
Hilar Andikkadavath

you need message_partner_id ?

Avatar
Mayank Gosai
Best Answer

Hello Mauro,

Try this :

[('message_is_follower','=',1)]

Thanks,

Mayank Gosai

2
Avatar
Opusti
Avatar
Sunny Sheth
Best Answer

Hello in Odoo V10,

use for show record which is created by user and also he is a set follower in other record,

at my side bolow code[domain in rule] work perfectly.

['|',('create_uid','=',user.id),('message_partner_ids', 'in', [user.partner_id.id])]

1
Avatar
Opusti
mauro anelli
Avtor

this is what i got

Traceback (most recent call last):

File "/usr/lib/python2.7/dist-packages/openerp/http.py", line 546, in _handle_exception

return super(JsonRequest, self)._handle_exception(exception)

File "/usr/lib/python2.7/dist-packages/openerp/http.py", line 583, in dispatch

result = self._call_function(**self.params)

File "/usr/lib/python2.7/dist-packages/openerp/http.py", line 319, in _call_function

return checked_call(self.db, *args, **kwargs)

File "/usr/lib/python2.7/dist-packages/openerp/service/model.py", line 118, in wrapper

return f(dbname, *args, **kwargs)

File "/usr/lib/python2.7/dist-packages/openerp/http.py", line 316, in checked_call

return self.endpoint(*a, **kw)

File "/usr/lib/python2.7/dist-packages/openerp/http.py", line 812, in __call__

return self.method(*args, **kw)

File "/usr/lib/python2.7/dist-packages/openerp/http.py", line 412, in response_wrap

response = f(*args, **kw)

File "/usr/lib/python2.7/dist-packages/openerp/addons/web/controllers/main.py", line 878, in load_needaction

return request.session.model('ir.ui.menu').get_needaction_data(menu_ids, request.context)

File "/usr/lib/python2.7/dist-packages/openerp/http.py", line 917, in proxy

result = meth(cr, request.uid, *args, **kw)

File "/usr/lib/python2.7/dist-packages/openerp/api.py", line 268, in wrapper

return old_api(self, *args, **kwargs)

File "/usr/lib/python2.7/dist-packages/openerp/addons/base/ir/ir_ui_menu.py", line 345, in get_needaction_data

res[menu.id]['needaction_counter'] = obj._needaction_count(cr, uid, dom, context=context)

File "/usr/lib/python2.7/dist-packages/openerp/api.py", line 268, in wrapper

return old_api(self, *args, **kwargs)

File "/usr/lib/python2.7/dist-packages/openerp/addons/base/ir/ir_needaction.py", line 64, in _needaction_count

res = self.search(cr, uid, (domain or []) + dom, limit=100, order='id DESC', context=context)

File "/usr/lib/python2.7/dist-packages/openerp/api.py", line 268, in wrapper

return old_api(self, *args, **kwargs)

File "/usr/lib/python2.7/dist-packages/openerp/models.py", line 1650, in search

return self._search(cr, user, args, offset=offset, limit=limit, order=order, context=context, count=count)

File "/usr/lib/python2.7/dist-packages/openerp/api.py", line 268, in wrapper

return old_api(self, *args, **kwargs)

File "/usr/lib/python2.7/dist-packages/openerp/models.py", line 4688, in _search

self._apply_ir_rules(cr, user, query, 'read', context=context)

File "/usr/lib/python2.7/dist-packages/openerp/api.py", line 268, in wrapper

return old_api(self, *args, **kwargs)

File "/usr/lib/python2.7/dist-packages/openerp/models.py", line 4553, in _apply_ir_rules

rule_where_clause, rule_where_clause_params, rule_tables = rule_obj.domain_get(cr, uid, self._name, mode, context=context)

File "/usr/lib/python2.7/dist-packages/openerp/api.py", line 268, in wrapper

return old_api(self, *args, **kwargs)

File "/usr/lib/python2.7/dist-packages/openerp/addons/base/ir/ir_rule.py", line 155, in domain_get

query = self.pool[model_name]._where_calc(cr, SUPERUSER_ID, dom, active_test=False)

File "/usr/lib/python2.7/dist-packages/openerp/api.py", line 268, in wrapper

return old_api(self, *args, **kwargs)

File "/usr/lib/python2.7/dist-packages/openerp/models.py", line 4498, in _where_calc

e = expression.expression(cr, user, domain, self, context)

File "/usr/lib/python2.7/dist-packages/openerp/osv/expression.py", line 662, in __init__

self.parse(cr, uid, context=context)

File "/usr/lib/python2.7/dist-packages/openerp/osv/expression.py", line 830, in parse

raise ValueError("Invalid field %r in leaf %r" % (left, str(leaf)))

ValueError: Invalid field 'message_partner_ids' in leaf "<osv.ExtendedLeaf: ('message_partner_ids', 'in', [489]) on purchase_order (ctx: )>"

Sunny Sheth

Sorry for not mention Version,

my code working with Odoo V10.

Thanks.

Sunny Sheth

in your case maybe work below example,

['|', ('user_id', '=', user.id), ('message_follower_ids', '=', user.partner_id.id)]

Avatar
mauro anelli
Avtor Best Answer

try [('message_is_follower','=',1)] but don't works
it shows every records

this works

[('message_follower_ids', 'in', [user.partner_id.id])]

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

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Record Rule for User Only Seeing Their Own Contact Entry
users record_rules user_management
Avatar
Avatar
1
nov. 21
3328
Allow a user to access only records that were created by him Solved
users create record_rules
Avatar
Avatar
1
jun. 20
12470
How do we prevent users from viewing contacts assigned to other salespersons
users contacts record_rules access rights
Avatar
0
jul. 24
4
Limit products to company assigned to user in multi-company Odoo 9 Solved
users record_rules products erp
Avatar
Avatar
1
dec. 21
10450
how to make a user access certain employees' timesheets
users manager record_rules v14
Avatar
Avatar
1
sep. 21
3417
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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