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
    • Textile
    • Kov
    • Nábytek
    • Jídlo
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • IT hardware a podpora
    • 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
    Browse all Industries
  • 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
    • Services for Partners
    • 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

How to hide Edit button for specific user in form issue?It's Urgent..Somebody Help me?

Odebírat

Get notified when there's activity on this post

This question has been flagged
userv7hideeditissue
3 Odpovědi
16312 Zobrazení
Avatar
alvin

I want to hide edit button in form issue for specific user. In this case , I want user only can create issue but can't edit any recorded issue. Only admin and project manager that able to Edit recorded issue. I have tried change in access control list and record rules but it's not working. I also have tried change access rights in models project.issue and unchecked write access for user. Then , user can't edit but also can't create. Any one can help me for this case?thank you.

Note : Sorry for asking same question, because this problem isn't solved yet since 4 days ago..

1
Avatar
Zrušit
Avatar
Nishant Kashyap
Nejlepší odpověď

You can make your record in two states :-1.)State="OPEN",2.)State="Submitted". Once you submitted the record then the creator of the record cannot edit it , then only Project Manager or the Admin can edit the record. Make a new Group "Can_Edit_Group" in the settings-->Users-->Groups.And add the project manager into it.

You need to add state and edit_group field in your _columns in your .py file.

_columns={
     'state':fields.selection([('open', 'Open'), ('submitted','Submitted'),],'Status', readonly=True),
     'edit_group':fields.many2one('res.groups', string='HR Manager Group'),
}

def _get_edit_group(self, cr, uid, context=None):
        all_groups=self.pool.get('res.groups')
        edit_group = all_groups.browse(cr, uid, all_groups.search(cr,uid,[('name','=','Can_Edit_Group')])[0]).id
        return edit_group

_defaults = {
    'edit_group':lambda self, cr, uid, context:self._get_edit_group( cr, uid, context=None)
}

def change_state(self, cr, uid, ids, context=None):
        self.write(cr, uid, ids, { 'state' : 'submitted' })
        return True

In XML add a button to change the record state on click. Put the button inside the header tag. If you are inheriting the View then do it using the Xpath else, put the header tag after you open the form tag.

<header>
<group attrs="{'invisible':[('state','=','submitted' )]}">
       <button name="change_state" string="Submit" type="object" states="open" class="oe_highlight"/>
</group>
      <field name="state" widget="statusbar" statusbar_visible="open,submitted"/>
<header>

In the record rule you can enter this rule: This will check if the state="submitted" and edit_group i.e the id of the group of whom users can edit the record are "in" the logged in user group.If this condition satisfy then the logged in user can edit the record else not.

['&',('state','=','submitted'),('edit_group','in',[g.id for g in user.groups_id])]

Give them all the access i.e check the boolean field read,write,create,delete and add the group into it i.e. add the Can_Edit_Group And don forget to add the your object and give record a name. And check the Active field.

I hope this is what you were looking for.

0
Avatar
Zrušit
Avatar
Simplify it!
Nejlepší odpověď

I've seen this question for a few days I though that you already have a solution.

I don't have so much time but this is going to help you. I hope that you know how to code.

def write(self, cr, uid, ids, datas = {}, context = {} ):
          if uid not in self.pool.get('res.users').search(cr, uid, [('login','in',['admin','grover'])]):
             return super(class_name, self).write(cr, uid, ids, datas, context)
      else:
             raise osv.except_osv('Error','You are not allowed to make changes!')

Right now admin and grover can't make changes. You can have 1 or more users on that list ['username1','username2','username3']

It's the easiest way. there are other ways to check groups but as I told you I don't have so much time right now.

0
Avatar
Zrušit
Simplify it!

Oh. this you have to do it inside your module, or if it's a native module inside the inherited module.

alvin
Autor

By the way sorry for I asked this question in this 4 days , because it's true..I'm not solve this problem yet.. I am a beginner in openerp..If you don't mind to help me again,. can you tell me how to code in function "if uid .....#check if user belongs to a certain group" above..in this case project user can't edit form issue..thank you for helping me

Simplify it!

I hope that can help you.

alvin
Autor

Big thanks Mr.Grover..hmm I copy your code and follow your instruction above..but it become can't connect to open erp..it's written "No Handler Found"..sorry for distrub you again..if you don't mind would you help me again?which file that I have to code?I already do in file project_issue.py Thank you very much mr Grover

alvin
Autor

Hai Mr.Grover..sorry for disturbing you again..hmmm if you don't mind to help me again..please response my comment above...because this project deadline in next tuesday so that I really need your help..thank you sir

Simplify it!

No Handler found happens when you can't connect to the server. Maybe you modified something that you shouldn't modify. The code above only can produce errors but in the server if has something wrong.

alvin
Autor

hmmm okei, but when the code above is removed my server is working again..hahaha..btw , thank you for helping me..:)

alvin
Autor

Can you help me where should i post that code? Is it in project_issue.py ?

Simplify it!

Yes, inside that file, inside the class that you want to modify

Avatar
alvin
Autor Nejlepší odpověď

any1 can help me?

-2
Avatar
Zrušit
Nishant Kashyap

Hey, If you want , you can make your edit button disable for some group of users, without hiding them .Will that will work for you ..?

alvin
Autor

yes, its ok.. can you help me?

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
Related Posts Odpovědi Zobrazení Aktivita
How to hide edit button in form issue for specific user??Really Need Help
user v7 hide button edit
Avatar
Avatar
Avatar
3
úno 18
9957
Please Help Me! It's Urgent (hide Edit button for specific user in form issue)
user v7 hide button
Avatar
Avatar
1
bře 15
5850
How to complete this python code?
python code user v7 issue
Avatar
0
bře 15
4542
template user
user v7
Avatar
Avatar
1
bře 15
13947
How to activate a created user? Vyřešeno
user v7
Avatar
Avatar
Avatar
2
led 24
13837
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