15 lines
384 B
Python
15 lines
384 B
Python
from odoo import fields, models, api
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
visio_url = fields.Char(
|
|
string="Visio URL",
|
|
help="URL for Visio meetings associated with this company.",
|
|
)
|
|
wiki_homepage_url = fields.Char(
|
|
string="Wiki Homepage URL",
|
|
help="URL for the Wiki homepage associated with this company.",
|
|
)
|