Skip to content
Snippets Groups Projects
Commit 05533cd5 authored by Nikunj Ladava's avatar Nikunj Ladava
Browse files

[FIX] payment_paypal: fix paypal onboarding


after paypal onboarding, merchant email and pdt token
is not required at all, for the new users.
They can accept payment with just email address.

closes odoo/odoo#38756

Signed-off-by: default avatarDamien Bouvy (dbo) <dbo@odoo.com>
parent 5c0677bf
Branches
Tags
No related merge requests found
......@@ -10,8 +10,8 @@
<xpath expr='//group[@name="acquirer"]' position='inside'>
<group attrs="{'invisible': [('provider', '!=', 'paypal')]}">
<field name="paypal_email_account" attrs="{'required':[ ('provider', '=', 'paypal'), ('state', '!=', 'disabled')]}"/>
<field name="paypal_seller_account" attrs="{'required':[ ('provider', '=', 'paypal'), ('state', '!=', 'disabled')]}"/>
<field name="paypal_pdt_token" attrs="{'required':[ ('provider', '=', 'paypal'), ('state', '!=', 'disabled')]}"/>
<field name="paypal_seller_account"/>
<field name="paypal_pdt_token"/>
<field name="paypal_use_ipn" attrs="{'required':[ ('provider', '=', 'paypal'), ('state', '!=', 'disabled')]}"/>
<a colspan="2" href="https://www.odoo.com/documentation/user/online/ecommerce/shopper_experience/paypal.html" target="_blank">How to configure your paypal account?</a>
</group>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment