22 lines
615 B
Python
22 lines
615 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2024-2025 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
# Part of the Fusion Claim Assistant product family.
|
|
|
|
from odoo import models, fields, api
|
|
|
|
|
|
class AccountPayment(models.Model):
|
|
_inherit = 'account.payment'
|
|
|
|
x_fc_card_last_four = fields.Char(
|
|
string='Card Last 4 Digits',
|
|
size=4,
|
|
help='Last 4 digits of the card used for payment (for card payments only)',
|
|
)
|
|
|
|
x_fc_payment_note = fields.Char(
|
|
string='Payment Note',
|
|
help='Additional note for this payment (e.g., transaction reference)',
|
|
)
|