Initial commit

This commit is contained in:
gsinghpal
2026-02-22 01:22:18 -05:00
commit 5200d5baf0
2394 changed files with 386834 additions and 0 deletions

View 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)',
)