From d46472da6d5dddbfcf400c5b868b8d855a236fac Mon Sep 17 00:00:00 2001 From: fka-odoo Date: Fri, 8 Aug 2014 12:16:22 +0530 Subject: [PATCH] [IMP] payment_paypal: better label for paypal_seller_account Rename the paypal_seller_account field as 'Merchant ID' instead of 'Seller ID' to match paypal terminology (opw 611765) --- addons/payment_paypal/models/paypal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/payment_paypal/models/paypal.py b/addons/payment_paypal/models/paypal.py index 941f97f9aaf..a17f6ac83b5 100644 --- a/addons/payment_paypal/models/paypal.py +++ b/addons/payment_paypal/models/paypal.py @@ -37,8 +37,8 @@ class AcquirerPaypal(osv.Model): _columns = { 'paypal_email_account': fields.char('Paypal Email ID', required_if_provider='paypal'), 'paypal_seller_account': fields.char( - 'Paypal Seller ID', - help='The Seller ID is used to ensure communications coming from Paypal are valid and secured.'), + 'Paypal Merchant ID', + help='The Merchant ID is used to ensure communications coming from Paypal are valid and secured.'), 'paypal_use_ipn': fields.boolean('Use IPN', help='Paypal Instant Payment Notification'), # Server 2 server 'paypal_api_enabled': fields.boolean('Use Rest API'),