Files
bank-payment/account_payment_order/wizard/account_payment_update.py
Luc De Meyer d05aba74c2 [IMP] update payment reference on open payment order
This commits adds the possibility to update the payment reference on a
payment transaction before generating XML file.
2024-04-20 09:33:04 +02:00

17 lines
547 B
Python

# Copyright 2009-2023 Noviat
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class AccountPaymentUpdate(models.TransientModel):
_name = "account.payment.update"
_description = "Update Payment Reference"
payment_reference = fields.Char(required=True)
def update_payment_reference(self):
payment = self.env["account.payment"].browse(self.env.context.get("active_id"))
payment.payment_reference = self.payment_reference
payment.ref = self.payment_reference