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í
    Food & Hospitality
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Guest House
    • Distributor nápojů
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Trades
    • Údržbář
    • IT hardware a podpora
    • Solar Energy Systems
    • Výrobce obuvi
    • Úklidové služby
    • HVAC Services
    Others
    • Nonprofit Organization
    • 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

Knowledge articles for potal users

Odebírat

Get notified when there's activity on this post

This question has been flagged
knowledgeportal-userarticlesworkspaceodoo16features
4 Odpovědi
5287 Zobrazení
Avatar
Matthias de Vries

Hello everyone,

Does enyone know if it is possible to grant portal users access to specific knowledge articles / workspaces in the knowledge app?

0
Avatar
Zrušit
Matthias de Vries
Autor

Thank you very much for your answer and your time.
However what I meant (and I had to be more clear about that) is that I could grant all portal users the right to read more or less like "Internal members".


Tom Rubino

this HAS to be possible. No one is going to manually add possibly thousands of customers one by one to each record. Just the ability to add groups would be best. This should be a top priority for the Knowledge app.

faOtools

Maybe, an alternative third-party module - https://apps.odoo.com/apps/modules/18.0/knowsystem - might be of interest. It lets you assign partner-related tags to articles. Thus, to grant portal access, it is necessary to apply an article tag that relates to the required contacts. In this way, it is possible to introduce different access levels, e.g. "Silver", "Gold", etc.

Avatar
Tom Rubino
Nejlepší odpověď

For those of you who have Studio access this can be accomplished by using an Automation Rule. (This uses python code, so if you are on SH they may charge you by the lines of code). 

For our purposes we want to have a customer knowledge base that is accessible to any user given portal access. (Currently we grant portal access)

The goal would be to automatically grant access to the knowledge base when portal access is granted.

To do this we create a single Workspace called "Customer Knowledge Base" then create a child structure below that. 

Once you have your initial workspace built, you will need the ID of this top level article. In Odoo 18 anyway you can see this ID just in the URL

Then create an automation rule on the User model that triggers "On save" when updating "Login" 

You could narrow this down more, but we are actually ok with this being applied to our internal users as well. 

Under action use "Execute Code" and use the following code.

partner_to_invite = record.partner_id

wiz_data = {
    'article_id': 69,
    'partner_ids': [(6, 0, [partner_to_invite.id])],
    'permission': 'read',
    'message': 'added via automation',
}

wiz = env['knowledge.invite'].create(wiz_data)
wiz.action_invite_members()

This is hard coded to the article ID which is our top level workspace as seen in the URL.

When a new contact is granted portal access, a new user is created and automatically added as read to the "Customer Knowledge Base" workspace. This in turn grants them access to all child articles as well as through the search functionality in the portal.



As additional articles are added the users will automatically inherit access.



0
Avatar
Zrušit
Avatar
Online Marketing AG
Nejlepší odpověď

Ich bin mir nicht sicher, ob Du bereits eine Lösung gefunden hast.
Wenn ich einen Artikel öffne (ich bin Administrator und im Entwicklermodus), kann ich nicht nur Benutzer einladen, sondern auch die Sichtbarkeit des Artikels auf „Jeder“ oder „Mitglied“ festlegen.

„Jeder“ gibt Rechte an... nun ja, jeden :)
Mit den Standardzugriffsrechten legt man fest, was jeder tun darf.



Hoffe, das hilft jemandem.

0
Avatar
Zrušit
Avatar
dvlmarketing@gmail.com
Nejlepší odpověď

That does not shpw any shared documents in the user's portal (it won;t allow me to share a screenshot). Portal just shows documents. Also, the shared link simply gives a "500: Internal server error" so they can't see it anyway. 

0
Avatar
Zrušit
Avatar
Hamid Ahmadimoghaddam
Nejlepší odpověď

yes, just with the "share" option on top right corner:


0
Avatar
Zrušit
Ricardo Gross

it is a manual job! every time you have a new portal user you have to insert it manually, it would be nice to have a publish option for portal users as it exists for internal members.

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
Optional Products are not shown to Portal users
portal-user odoo16features
Avatar
0
lis 23
1915
Form on customer portal ? Vyřešeno
portal-user odoo16features
Avatar
Avatar
1
zář 23
2806
Publish dashboard for customer
portal-user Dashboard odoo16features
Avatar
Avatar
1
dub 24
2098
Portal User, vendors to provide their prices, odoo16
purchase portal-user odoo16features
Avatar
0
srp 23
1968
Give a website portal user access to a document workspace
documents portal-user workspace
Avatar
Avatar
2
čvn 23
4103
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