Files
Odoo-Modules/fusion_tasks/models/res_company.py
gsinghpal acd3fc455e changes
2026-03-09 15:21:22 -04:00

15 lines
386 B
Python

# -*- coding: utf-8 -*-
# Copyright 2024-2026 Nexa Systems Inc.
# License OPL-1 (Odoo Proprietary License v1.0)
from odoo import models, fields
class ResCompany(models.Model):
_inherit = 'res.company'
x_fc_google_review_url = fields.Char(
string='Google Review URL',
help='Google Business Profile review link sent to clients after service completion',
)