Skip to content

Commit

Permalink
[OU-ADD] payment_paypal: Migration to 16.0
Browse files Browse the repository at this point in the history
TT44209
  • Loading branch information
victoralmau committed Nov 27, 2023
1 parent fa97688 commit 765704b
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docsource/modules150-160.rst
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ Module coverage 15.0 -> 16.0
+-------------------------------------------------+----------------------+-------------------------------------------------+
| payment_ogone | | |
+-------------------------------------------------+----------------------+-------------------------------------------------+
| payment_paypal | | |
| payment_paypal | Done | |
+-------------------------------------------------+----------------------+-------------------------------------------------+
| payment_payulatam | | |
+-------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<odoo>
<record id="payment.payment_provider_paypal" model="payment.provider">
<field name="code">paypal</field>
<field name="redirect_form_view_id" ref="redirect_form"/>
<!-- <field name="code">paypal</field>
<field name="redirect_form_view_id" ref="redirect_form"/> -->
</record>
</odoo>
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright 2023 Tecnativa - Víctor Martínez
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openupgradelib import openupgrade


@openupgrade.migrate()
def migrate(env, version):
openupgrade.delete_records_safely_by_xml_id(
env,
[
"payment_paypal.payment_method_paypal",
],
)
openupgrade.load_data(
env.cr, "payment_paypal", "migrations/16.0.2.0/noupdate_changes.xml"
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---Models in module 'payment_paypal'---
---Fields in module 'payment_paypal'---
payment_paypal / payment.acquirer / paypal_email_account (char) : DEL
payment_paypal / payment.acquirer / paypal_pdt_token (char) : DEL
payment_paypal / payment.acquirer / paypal_seller_account (char) : DEL
payment_paypal / payment.acquirer / paypal_use_ipn (boolean) : DEL
payment_paypal / payment.acquirer / provider (False) : DEL selection_keys: ['adyen', 'alipay', 'authorize', 'buckaroo', 'mollie', 'none', 'ogone', 'paypal'], mode: modify
payment_paypal / payment.provider / code (False) : NEW selection_keys: ['adyen', 'alipay', 'aps', 'asiapay', 'authorize', 'buckaroo', 'custom', 'demo', 'flutterwave', 'mercado_pago', 'mollie', 'none', 'ogone', 'paypal'], mode: modify
payment_paypal / payment.provider / paypal_email_account (char) : NEW
payment_paypal / payment.provider / paypal_pdt_token (char) : NEW
payment_paypal / payment.provider / paypal_seller_account (char) : NEW
payment_paypal / payment.provider / paypal_use_ipn (boolean) : NEW hasdefault: default
---XML records in module 'payment_paypal'---
DEL account.payment.method: payment_paypal.payment_method_paypal (noupdate)
# DONE: post-migration (delete record)
NEW ir.ui.view: payment_paypal.payment_provider_form
DEL ir.ui.view: payment_paypal.payment_acquirer_form

0 comments on commit 765704b

Please sign in to comment.