This commit is contained in:
gsinghpal
2026-02-25 09:40:41 -05:00
parent 0e1aebe60b
commit e71bc503f9
69 changed files with 7537 additions and 82 deletions

View 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.",
)