17 lines
518 B
Python
17 lines
518 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
|
|
|
|
|
|
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.',
|
|
)
|