Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Guest House
    • Distributeur de boissons
    • Hotel
    Real Estate
    • Real Estate Agency
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consulting
    • Accounting Firm
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Solar Energy Systems
    • Cordonnier
    • Services de nettoyage
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

How to create or expose a CRM portal view so that portal users can access and view CRM records (leads/opportunities) securely, just like they can view sales or invoices?

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
record_rulescontrollersdevelopperguidecrm_leadportal-user
2 Réponses
323 Vues
Avatar
Elijah Nyendwa

Context

I’m developing a custom Odoo module (v18) to extend the portal functionality for CRM, similar to how portal users can access Sales Orders or Invoices by default.

The goal is for portal users (non-internal, unlicensed) to:

  • View and create CRM leads from the portal (/crm/my)
  • Move leads through stages
  • Have those leads visible to internal sales users inside the CRM pipeline.

Goal

Portal users can:

  • Log in and see a “My Leads” section in their portal dashboard
  • Create and update their leads through a form view
  • Move their leads through stages

Internal users can:

  • View all leads, including those created by portal users, inside the CRM module

 Current Behavior

  • Portal users can create leads — they show up under /crm/my and are stored in the database.
  • Leads do not appear in the internal CRM pipeline, even when searching by record ID.
  • In the backend, the Salesperson field (user_id) only shows internal users — not portal ones.
  • The “My Leads” menu item also does not appear in the portal homepage, even though it’s defined in XML.
  • Currently, the only way to reach the leads list is by manually entering the route /crm/my.

 Implementation Overview

1️Portal Menu XML

<template id="inherit_portal_active_warning_my_home" inherit_id="portal.portal_my_home" name="Custom Portal Menus" priority="25" customize_show="True"> <xpath expr="//div[hasclass('o_portal_docs')]" position="inside"> <t t-call="portal.portal_docs_entry"> <t t-set="icon" t-value="'/crm/static/description/icon.png'"/> <t t-set="title">My Leads</t> <t t-set="url" t-value="'/crm/my'"/> <t t-set="text">View and create new leads</t> <t t-set="placeholder_count" t-value="'lead_count'"/> </t> </xpath> </template>

Expected behavior: “My Leads” should appear on the portal dashboard.

Actual behavior: It does not appear, though other portal menu entries do.

2️Custom Portal Group

<record id="group_portal_crm" model="res.groups"> <field name="name">Portal User - CRM Access</field> <field name="category_id" ref="base.module_category_hidden"/> </record>

3️Record Rules for CRM Lead Access

<!-- Portal users: can see their own or linked partner leads --> <record id="rule_crm_lead_portal_user" model="ir.rule"> <field name="name">CRM Lead: portal user allowed leads</field> <field name="model_id" ref="crm.model_crm_lead"/> <field name="domain_force">['|', ('partner_id','child_of', user.commercial_partner_id.id), ('create_uid', '=', user.id)]</field> <field name="groups" eval="[(4, ref('base.group_portal'))]"/> <field name="perm_read" eval="True"/> <field name="perm_write" eval="True"/> <field name="perm_create" eval="True"/> <field name="perm_unlink" eval="False"/> </record> <!-- Internal users: can see all leads --> <record id="rule_crm_lead_internal_all" model="ir.rule"> <field name="name">CRM Lead: internal users see all</field> <field name="model_id" ref="crm.model_crm_lead"/> <field name="domain_force">[(1, '=', 1)]</field> <field name="groups" eval="[(4, ref('sales_team.group_sale_salesman'))]"/> <field name="perm_read" eval="True"/> <field name="perm_write" eval="True"/> <field name="perm_create" eval="True"/> <field name="perm_unlink" eval="True"/> </record>

Leads created by portal users appear fine on the portal side

Internal users still cannot see those same leads in the CRM pipeline.

4️Controller Snippet

From controllers/crm_lead.py:

@http.route(['/portal/crm_lead/create'], type='http', auth='user', methods=['POST'], csrf=False) def portal_crm_create(self, **post): user = request.env.user vals = { 'name': post.get('name') or 'New Lead', 'contact_name': post.get('contact_name') or '', 'email_from': post.get('email_from') or '', 'type': post.get('type') or 'lead', 'user_id': user.id, # Assign to portal user 'partner_id': user.partner_id.id, } lead = request.env['crm.lead'].create(vals) return request.redirect('/crm/my')

Lead is created successfully

 Does not show up under the CRM app, even for Admin or Sales users.

 Problem Summary

  1. Portal-created leads exist in the database but are invisible in the CRM backend.
  2. The “My Leads” portal menu does not appear on the dashboard.
  3. Salesperson field (user_id) only lists internal users — cannot assign a portal user.

 My Questions

  1. How can I properly expose CRM leads to portal users so that:
    • Portal users can see and manage only their own leads,
    • Internal users can view all leads (including portal-created ones)?
  2. Why might the “My Leads” entry from my custom XML not appear on the portal homepage?
  3. Is there a safe way to allow portal users to be linked to leads (or even selectable in the Salesperson field) without converting them to internal users and consuming extra licenses?
  4. Are there specific wizards, views, or filters (like the user_id domain) in Odoo CRM that restrict visibility to internal users which I should override?
0
Avatar
Ignorer
Avatar
Ray Carnes (ray)
Meilleure réponse

We already provide this functionality via the Resellers App:

https://www.odoo.com/documentation/18.0/applications/sales/crm/track_leads/resellers.html


Resellers use their Portal Account to (1) indicate they are interested in a Lead (which converts it into an Opportunity)


Then (2) update the information about Opportunities:


Resellers and Employees can then work on the same Lead / Opportunity together to support a Channel Sales model.


Also, look into the difference between a Lead and an Opportunity. They are both stored in the same model / table but Leads are only available from the Leads Menu, and only when the Leads feature is activated:

0
Avatar
Ignorer
Elijah Nyendwa
Auteur

ah, thanks very much

is it possible to extend the functionality where partners can themselves create leads assigned to themselves?

Ray Carnes (ray)

Create a Website Form that submits to create a Lead - just be sure it populates the Assigned Partner field.

Ray Carnes (ray)

They already have the option to Create an Opportunity so most people just do that.

Avatar
Codesphere Tech
Meilleure réponse

Hello,
Please check this third party app
https://apps.odoo.com/apps/modules/18.0/tk_portal_partner_leads

0
Avatar
Ignorer
Elijah Nyendwa
Auteur

hi so i downloaded your module,

either i dont know exactly how it works or its not working

I created a portal user and logged in and i could create a lead

EXCEPT that record is never created, doesnt appear in odoo CRM, doesnt even apear on the portal of my leads

Codesphere Tech

It is not developed by us.

Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
How to restrict portal access records Résolu
record_rules portal-user odoo17EE
Avatar
Avatar
2
nov. 24
2310
Odoo15 Show Quotes, Sales Order, Invoices for all companies for a portal user
record_rules multicompany portal-user
Avatar
Avatar
1
janv. 24
2054
Controller giving 404 Error
controllers
Avatar
Avatar
Avatar
2
août 25
3286
Controller not working Résolu
controllers
Avatar
Avatar
Avatar
2
juin 25
1795
How many times a user is logging into portal?
portal-user
Avatar
2
oct. 24
34
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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