mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
10 lines
368 B
Python
10 lines
368 B
Python
from odoo import fields, models
|
|
|
|
|
|
class WebsiteConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
payment_deposit_threshold = fields.Monetary(string="Payment Deposit Threshold",
|
|
related="website_id.payment_deposit_threshold",
|
|
readonly=False)
|