Odoo18-Base/addons/payment_paypal/utils.py
2025-01-06 10:57:38 +07:00

11 lines
432 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
def get_normalized_email_account(provider):
""" Remove unicode characters, such as \u200b coming from pasted emails, from the provider's
paypal email account.
:return: The normalized address of the paypal email account of the provider.
:rtype: str
"""
return provider.paypal_email_account.encode('ascii', 'ignore').decode('utf-8')