mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
8 lines
172 B
Python
8 lines
172 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
url_app = fields.Char(string="Url App", help="Url to identify the app")
|