İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

how to override tools.mail.email_normalize

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
odoo17CE
1 Cevapla
2308 Görünümler
Avatar
yourday

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

0
Avatar
Vazgeç
yourday
Üretici

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

Avatar
Gracious Joseph
En İyi Yanıt

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
Vazgeç
Enjoying the discussion? Don't just read, join in!

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

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
Odoo Community V17
odoo17CE
Avatar
Avatar
Avatar
2
Tem 25
2650
Acounting and, Repporting tabs are missing to my accounting module, How to display them? Çözüldü
odoo17CE
Avatar
Avatar
1
Mar 25
1971
ReferenceError: ComboConfiguratorPopup is not defined
odoo17CE
Avatar
Avatar
1
Ara 24
1748
UncaughtPromiseError > OwlError Çözüldü
odoo17CE
Avatar
Avatar
2
Ağu 24
4023
Odoo 17 Community will not run after install
odoo17CE
Avatar
Avatar
Avatar
3
Haz 24
2611
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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