Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profit organisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

how to override tools.mail.email_normalize

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
odoo17CE
1 Beantwoorden
2345 Weergaven
Avatar
yourday

in odoo 17, I want to override tools.mail.email_normalize, please tell me how to do?

0
Avatar
Annuleer
yourday
Auteur

Thank you for patiently responding to so much content, but I have tested this method and it has not been effective

Avatar
Gracious Joseph
Beste antwoord

To override the tools.mail.email_normalize function in Odoo 17 Community Edition, follow these steps:

Step-by-Step Guide

1. Understand the Original Function

Locate the tools.mail.email_normalize function in the Odoo source code. It’s likely defined in the mail module under the tools package. Examine its behavior and identify how it processes email addresses.

Example:

pythonCopy codefrom odoo.tools import email_normalize

def email_normalize(email):
    # Example implementation in Odoo
    email = email.strip().lower()
    return email

2. Create a Custom Module

If you don’t already have a custom module, create one. Use the following structure:

markdownCopy codecustom_module/
├── __init__.py
├── __manifest__.py
└── models/
    ├── __init__.py
    └── email_normalize_override.py

Example __manifest__.py:

pythonCopy code{
    'name': 'Custom Email Normalize Override',
    'version': '1.0',
    'depends': ['mail'],
    'author': 'Your Name',
    'installable': True,
    'auto_install': False,
}

3. Override the Function

In the email_normalize_override.py file, override the email_normalize function:

pythonCopy codefrom odoo import tools

# Save a reference to the original function if needed
original_email_normalize = tools.mail.email_normalize

# Override the function
def custom_email_normalize(email):
    # Custom logic to process the email
    email = email.strip().lower()
    if '@example.com' in email:
        email = email.replace('@example.com', '@customdomain.com')
    return email

# Replace the original function with the custom one
tools.mail.email_normalize = custom_email_normalize

4. Add the File to the Module Initialization

In the __init__.py of the models directory, ensure the file is loaded:

pythonCopy codefrom . import email_normalize_override

5. Install the Module

  • Update the module list:
    bashCopy code./odoo-bin -u all
    
  • Install your custom module from the Odoo interface or using:
    bashCopy code./odoo-bin -d your_database_name -i custom_module
    

6. Test the Override

Test your changes by calling the tools.mail.email_normalize function in a shell or from Odoo itself.

Example:

pythonCopy codefrom odoo.tools.mail import email_normalize
print(email_normalize('User@Example.com'))

It should reflect the new behavior defined in your custom function.

Notes

  • Overriding Odoo core functions should be done cautiously as updates or changes in core logic might affect your customizations.
  • Consider using monkey-patching responsibly and documenting the changes clearly in your code.

By following these steps, you can successfully override the tools.mail.email_normalize function in Odoo 17 CE.

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Odoo Community V17
odoo17CE
Avatar
Avatar
Avatar
2
jul. 25
2696
Acounting and, Repporting tabs are missing to my accounting module, How to display them? Opgelost
odoo17CE
Avatar
Avatar
1
mrt. 25
1989
ReferenceError: ComboConfiguratorPopup is not defined
odoo17CE
Avatar
Avatar
1
dec. 24
1779
UncaughtPromiseError > OwlError Opgelost
odoo17CE
Avatar
Avatar
2
aug. 24
4053
Odoo 17 Community will not run after install
odoo17CE
Avatar
Avatar
Avatar
3
jun. 24
2628
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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