123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- from odoo import _, api, fields, models
- from odoo.exceptions import UserError
- class PaymentWizard(models.TransientModel):
- _name = 'payment.provider.onboarding.wizard'
- _description = 'Payment provider onboarding wizard'
- payment_method = fields.Selection([
- ('stripe', "Credit & Debit card (via Stripe)"),
- ('paypal', "PayPal"),
- ('manual', "Custom payment instructions"),
- ], string="Payment Method", default=lambda self: self._get_default_payment_provider_onboarding_value('payment_method'))
- paypal_user_type = fields.Selection([
- ('new_user', "I don't have a Paypal account"),
- ('existing_user', 'I have a Paypal account')], string="Paypal User Type", default='new_user')
- paypal_email_account = fields.Char("Email", default=lambda self: self._get_default_payment_provider_onboarding_value('paypal_email_account'))
- paypal_seller_account = fields.Char("Merchant Account ID")
- paypal_pdt_token = fields.Char("PDT Identity Token", default=lambda self: self._get_default_payment_provider_onboarding_value('paypal_pdt_token'))
- # Account-specific logic. It's kept here rather than moved in `account_payment` as it's not used by `account` module.
- manual_name = fields.Char("Method", default=lambda self: self._get_default_payment_provider_onboarding_value('manual_name'))
- journal_name = fields.Char("Bank Name", default=lambda self: self._get_default_payment_provider_onboarding_value('journal_name'))
- acc_number = fields.Char("Account Number", default=lambda self: self._get_default_payment_provider_onboarding_value('acc_number'))
- manual_post_msg = fields.Html("Payment Instructions")
- _data_fetched = fields.Boolean(store=False)
- @api.onchange('journal_name', 'acc_number')
- def _set_manual_post_msg_value(self):
- self.manual_post_msg = _(
- '<h3>Please make a payment to: </h3><ul><li>Bank: %s</li><li>Account Number: %s</li><li>Account Holder: %s</li></ul>',
- self.journal_name or _("Bank"),
- self.acc_number or _("Account"),
- self.env.company.name
- )
- _payment_provider_onboarding_cache = {}
- def _get_manual_payment_provider(self, env=None):
- if env is None:
- env = self.env
- module_id = env.ref('base.module_payment_custom').id
- return env['payment.provider'].search([('module_id', '=', module_id),
- ('company_id', '=', env.company.id)], limit=1)
- def _get_default_payment_provider_onboarding_value(self, key):
- if not self.env.is_admin():
- raise UserError(_("Only administrators can access this data."))
- if self._data_fetched:
- return self._payment_provider_onboarding_cache.get(key, '')
- self._data_fetched = True
- self._payment_provider_onboarding_cache['payment_method'] = self.env.company.payment_onboarding_payment_method
- installed_modules = self.env['ir.module.module'].sudo().search([
- ('name', 'in', ('payment_paypal', 'payment_stripe')),
- ('state', '=', 'installed'),
- ]).mapped('name')
- if 'payment_paypal' in installed_modules:
- provider = self.env['payment.provider'].search(
- [('company_id', '=', self.env.company.id), ('code', '=', 'paypal')], limit=1
- )
- self._payment_provider_onboarding_cache['paypal_email_account'] = provider['paypal_email_account'] or self.env.user.email or ''
- self._payment_provider_onboarding_cache['paypal_pdt_token'] = provider['paypal_pdt_token']
- manual_payment = self._get_manual_payment_provider()
- journal = manual_payment.journal_id
- self._payment_provider_onboarding_cache['manual_name'] = manual_payment['name']
- self._payment_provider_onboarding_cache['manual_post_msg'] = manual_payment['pending_msg']
- self._payment_provider_onboarding_cache['journal_name'] = journal.name if journal.name != "Bank" else ""
- self._payment_provider_onboarding_cache['acc_number'] = journal.bank_acc_number
- return self._payment_provider_onboarding_cache.get(key, '')
- def add_payment_methods(self):
- """ Install required payment providers, configure them and mark the
- onboarding step as done."""
- payment_method = self.payment_method
- if self.payment_method == 'paypal':
- self.env.company._install_modules(['payment_paypal', 'account_payment'])
- elif self.payment_method == 'manual':
- self.env.company._install_modules(['account_payment'])
- if self.payment_method in ('paypal', 'manual'):
- # create a new env including the freshly installed module(s)
- new_env = api.Environment(self.env.cr, self.env.uid, self.env.context)
- if self.payment_method == 'paypal':
- provider = new_env['payment.provider'].search(
- [('company_id', '=', self.env.company.id), ('code', '=', 'paypal')], limit=1
- )
- if not provider:
- base_provider = self.env.ref('payment.payment_provider_paypal')
- # Use sudo to access payment provider record that can be in different company.
- provider = base_provider.sudo().copy(default={'company_id':self.env.company.id})
- default_journal = new_env['account.journal'].search(
- [('type', '=', 'bank'), ('company_id', '=', new_env.company.id)], limit=1
- )
- provider.write({
- 'paypal_email_account': self.paypal_email_account,
- 'paypal_pdt_token': self.paypal_pdt_token,
- 'state': 'enabled',
- 'is_published': 'True',
- 'journal_id': provider.journal_id or default_journal
- })
- elif self.payment_method == 'manual':
- manual_provider = self._get_manual_payment_provider(new_env)
- if not manual_provider:
- raise UserError(_(
- 'No manual payment method could be found for this company. '
- 'Please create one from the Payment Provider menu.'
- ))
- manual_provider.name = self.manual_name
- manual_provider.pending_msg = self.manual_post_msg
- manual_provider.state = 'enabled'
- journal = manual_provider.journal_id
- if journal:
- journal.name = self.journal_name
- journal.bank_acc_number = self.acc_number
- if self.payment_method in ('paypal', 'manual', 'stripe'):
- self.env.company.payment_onboarding_payment_method = self.payment_method
- # delete wizard data immediately to get rid of residual credentials
- self.sudo().unlink()
- if payment_method == 'stripe':
- return self._start_stripe_onboarding()
- # the user clicked `apply` and not cancel so we can assume this step is done.
- self._set_payment_provider_onboarding_step_done()
- return {'type': 'ir.actions.act_window_close'}
- def _set_payment_provider_onboarding_step_done(self):
- self.env.company.sudo().set_onboarding_step_done('payment_provider_onboarding_state')
- def _start_stripe_onboarding(self):
- """ Start Stripe Connect onboarding. """
- menu = self.env.ref('account_payment.payment_provider_menu', False)
- menu_id = menu and menu.id # Only set if `account_payment` is installed.
- return self.env.company._run_payment_onboarding_step(menu_id)
|