mirror of
https://github.com/bringout/oca-payment.git
synced 2026-04-18 04:22:09 +02:00
- account_payment_mode: Payment methods configuration
- account_payment_partner: Link payment modes to partners
- account_payment_order: Create and manage payment orders
- account_payment_order_grouped_output: Consolidated accounting entries
Source: OCA/bank-payment branch 16.0
License: AGPL-3.0
🤖 assisted by claude
11 lines
316 B
Python
11 lines
316 B
Python
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from openupgradelib import openupgrade
|
|
|
|
|
|
@openupgrade.migrate()
|
|
def migrate(env, version):
|
|
"""Migrate note field from Text to Html"""
|
|
openupgrade.convert_field_to_html(
|
|
env.cr, "account_payment_mode", "note", "note", False, True
|
|
)
|