Files
Odoo-Modules/fusion_rental/models/stock_warehouse.py
gsinghpal e71bc503f9 changes
2026-02-25 09:40:41 -05:00

11 lines
247 B
Python

from odoo import fields, models
class StockWarehouse(models.Model):
_inherit = 'stock.warehouse'
google_review_url = fields.Char(
string="Google Review URL",
help="Paste the Google Review link for this location.",
)