mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
18 lines
598 B
Python
18 lines
598 B
Python
# Part of Hibou Suite Professional. See LICENSE_PROFESSIONAL file for full copyright and licensing details.
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class PaymentAcquirer(models.Model):
|
|
_inherit = 'payment.acquirer'
|
|
|
|
# TODO: remove options no longer available in api v3
|
|
signifyd_case_type = fields.Selection([
|
|
('', 'No Case'),
|
|
('SCORE', 'Score'),
|
|
('DECISION', 'Decision'),
|
|
('GUARANTEE', 'Guarantee'),
|
|
], string='Signifyd Case Creation', default='')
|
|
|
|
signify_coverage_types = fields.Many2many('signifyd.coverage', string='Signifyd Coverage Types')
|