changes
This commit is contained in:
19
fusion_rental/models/res_config_settings.py
Normal file
19
fusion_rental/models/res_config_settings.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = 'res.config.settings'
|
||||
|
||||
rental_google_review_url = fields.Char(
|
||||
string="Google Review URL",
|
||||
config_parameter='fusion_rental.google_review_url',
|
||||
help="Google Review link shown in thank-you emails after rental close. "
|
||||
"For multi-location, set per warehouse in Inventory > Configuration > Warehouses.",
|
||||
)
|
||||
rental_deposit_hold_days = fields.Integer(
|
||||
string="Deposit Hold Period (Days)",
|
||||
config_parameter='fusion_rental.deposit_hold_days',
|
||||
default=3,
|
||||
help="Number of days to hold the security deposit after pickup before "
|
||||
"processing the refund. Default is 3 days.",
|
||||
)
|
||||
Reference in New Issue
Block a user