Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Knowledge articles for potal users

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
knowledgeportal-userarticlesworkspaceodoo16features
4 Risposte
5445 Visualizzazioni
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
Abbandona
Matthias de Vries
Autore

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
Risposta migliore

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
Abbandona
Avatar
Online Marketing AG
Risposta migliore

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
Abbandona
Avatar
dvlmarketing@gmail.com
Risposta migliore

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
Abbandona
Avatar
Hamid Ahmadimoghaddam
Risposta migliore

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


0
Avatar
Abbandona
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.

Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
Optional Products are not shown to Portal users
portal-user odoo16features
Avatar
0
nov 23
1957
Form on customer portal ? Risolto
portal-user odoo16features
Avatar
Avatar
1
set 23
2892
Publish dashboard for customer
portal-user Dashboard odoo16features
Avatar
Avatar
1
apr 24
2218
Portal User, vendors to provide their prices, odoo16
purchase portal-user odoo16features
Avatar
0
ago 23
2049
Give a website portal user access to a document workspace
documents portal-user workspace
Avatar
Avatar
2
giu 23
4229
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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