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,16 @@
# -*- 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
class AccountPaymentMethodLine(models.Model):
_inherit = 'account.payment.method.line'
x_fc_requires_card_digits = fields.Boolean(
string='Requires Card Digits',
default=False,
help='If checked, the user must enter the last 4 digits of the card when using this payment method.',
)