Initial commit
This commit is contained in:
16
fusion_claims/models/account_payment_method_line.py
Normal file
16
fusion_claims/models/account_payment_method_line.py
Normal 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.',
|
||||
)
|
||||
Reference in New Issue
Block a user