From 743743db287ccde108858b20349faaed38db00c2 Mon Sep 17 00:00:00 2001 From: Fabrice Henrion <fhe@odoo.com> Date: Fri, 2 Sep 2016 11:11:29 +0200 Subject: [PATCH] [IMP] payment: wording for auto_confirm selections --- addons/payment/models/payment_acquirer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/payment/models/payment_acquirer.py b/addons/payment/models/payment_acquirer.py index d9442e0ae1ce..ea4aa8a72fc0 100644 --- a/addons/payment/models/payment_acquirer.py +++ b/addons/payment/models/payment_acquirer.py @@ -71,9 +71,9 @@ class PaymentAcquirer(models.Model): help="Make this payment acquirer available (Customer invoices, etc.)") auto_confirm = fields.Selection([ ('none', 'No automatic confirmation'), - ('authorize', 'Authorize the amount and confirm the SO on acquirer confirmation'), - ('confirm_so', 'Confirm the SO on acquirer confirmation'), - ('generate_and_pay_invoice', 'On acquirer confirmation, confirm the SO, generate the invoice and pay it')], + ('authorize', 'Authorize the amount and confirm the SO on acquirer confirmation (capture manually)'), + ('confirm_so', 'Authorize & capture the amount and confirm the SO on acquirer confirmation'), + ('generate_and_pay_invoice', 'Authorize & capture the amount, confirm the SO and auto-validate the invoice on acquirer confirmation')], string='Order Confirmation', default='confirm_so', required=True) journal_id = fields.Many2one( 'account.journal', 'Payment Journal', -- GitLab