Initial commit
This commit is contained in:
21
fusion_claims/models/account_payment.py
Normal file
21
fusion_claims/models/account_payment.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# -*- 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)',
|
||||
)
|
||||
Reference in New Issue
Block a user