Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

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?

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
record_rulescontrollersdevelopperguidecrm_leadportal-user
2 Besvarelser
322 Visninger
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
Kassér
Avatar
Ray Carnes (ray)
Bedste svar

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
Kassér
Elijah Nyendwa
Forfatter

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
Bedste svar

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

0
Avatar
Kassér
Elijah Nyendwa
Forfatter

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.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
How to restrict portal access records Løst
record_rules portal-user odoo17EE
Avatar
Avatar
2
nov. 24
2309
Odoo15 Show Quotes, Sales Order, Invoices for all companies for a portal user
record_rules multicompany portal-user
Avatar
Avatar
1
jan. 24
2053
Controller giving 404 Error
controllers
Avatar
Avatar
Avatar
2
aug. 25
3286
Controller not working Løst
controllers
Avatar
Avatar
Avatar
2
jun. 25
1793
How many times a user is logging into portal?
portal-user
Avatar
2
okt. 24
34
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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