Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

restrict activate/archive Button to special group

Odebírat

Get notified when there's activity on this post

This question has been flagged
4 Odpovědi
10496 Zobrazení
Avatar
Jack

how can i restrict the activate/archive Button (right top of the Products-Detail-Page) to a specifiv group?

i just could use xpath to make it invisible but i tried to set readonly to //button[@name='toggle_active'] and also //button[@name='toggle_active']  but it seems not to work.


any help?


0
Avatar
Zrušit
Avatar
Avinash Nk
Nejlepší odpověď

Hi Jack,

You can add the group directly to a button.

Check this example code.

<button name="toggle_active" groups="base.group_no_one" type="object" class="oe_stat_button" icon="fa-archive">
    <field name="active" widget="boolean_button" options="{"terminology": "archive"}"/>
</button>

Here instead of groups="base.group_no_one" you can use your group.


Thanks

0
Avatar
Zrušit
Jack
Autor

but how can i simply make it readonly for non authorized users? they should see that it is currently archived but they should not be able to reactivate it. the readonly attribute did not work for me

Avinash Nk

For fields, you can't make it readonly for some groups directly like doing for models. you can only hide them.

There are indirect ways. you can do this by inherit the write function and checking the condition as per your need.

Avatar
Ibrahim Boudmir
Nejlepší odpověď

Hi, 

This is actually possible regardless of what Avinash says. The idea is to add the attribute disabled="true" to your button. 

In order to do that ( since it's based on conditions like the specific group ), you will need to follow these steps : 

1- Js : call the FormController and specifically function renderButtons.
2- The conditions you need to check are : your model because if not it these changes would apply on all toggle_active buttons. 
3- RPC call to check the user's groups in python side ( very simple solution ). The function call will return True is user has group ( to whom the button won't be 'clickable' )
4- in JS, if result, then :  point your button with a specific class in XML to be easily identified and then : $('.o-your-class-here').prop('disabled', true);
​

All these steps are a little bit complicated to put together. So even it's true to be possible, you may consider just Hiding the button with groups. It's much easier.

Upvote if this helps.
Regards.

1
Avatar
Zrušit
Avatar
Vasilis Zartilas
Nejlepší odpověď

Inherited the 'active' field and add groups and specify which groups you want to have access to it.

(Note: For Action -> Archive)

For example:

from odoo import api, fields, models

class HrAppraisalInherited(models.Model):
   _inherit = "hr.appraisal"

   active = fields.Boolean(groups="hr.group_hr_manager")
0
Avatar
Zrušit
Avatar
fudo
Nejlepší odpověď

Please try this:

https://www.linkedin.com/pulse/how-hide-archiveunarchive-dropdown-specific-users-groups-yadav/?trk=articles_directory

This need a bit of modify to work in odoo 15 and above, but it's the correct way

0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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