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

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

Odebírat

Get notified when there's activity on this post

This question has been flagged
accountingproductformusergrouptabs
1 Odpovědět
5920 Zobrazení
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
Zrušit
Avatar
Ludo - 21South
Nejlepší odpověď

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
Zrušit
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.

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 show only some products depending on user login? Vyřešeno
product user group permission
Avatar
Avatar
Avatar
2
lis 22
9553
deactivate "Sale Price" in Product
product form
Avatar
Avatar
Avatar
3
lis 18
4103
Error: Please define stock output account for this product
accounting product
Avatar
Avatar
1
bře 15
5493
Access permission tab user
user tabs
Avatar
Avatar
1
bře 15
5845
How Does Odoo Handle Foreign Exchanges Rates for Stock valuation layers? Vyřešeno
accounting product valuation
Avatar
1
říj 25
3615
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