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č

Knowledge articles for potal users

Naroči se

Get notified when there's activity on this post

This question has been flagged
knowledgeportal-userarticlesworkspaceodoo16features
4 Odgovori
5417 Prikazi
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
Opusti
Matthias de Vries
Avtor

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
Best Answer

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
Opusti
Avatar
Online Marketing AG
Best Answer

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
Opusti
Avatar
dvlmarketing@gmail.com
Best Answer

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
Opusti
Avatar
Hamid Ahmadimoghaddam
Best Answer

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


0
Avatar
Opusti
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!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Optional Products are not shown to Portal users
portal-user odoo16features
Avatar
0
nov. 23
1940
Form on customer portal ? Solved
portal-user odoo16features
Avatar
Avatar
1
sep. 23
2879
Publish dashboard for customer
portal-user Dashboard odoo16features
Avatar
Avatar
1
apr. 24
2189
Portal User, vendors to provide their prices, odoo16
purchase portal-user odoo16features
Avatar
0
avg. 23
2039
Give a website portal user access to a document workspace
documents portal-user workspace
Avatar
Avatar
2
jun. 23
4187
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