[ADD] partner_portal_extra_links: add visio_url and wiki_homepage_url to portal
Some checks failed
pre-commit / pre-commit (pull_request) Failing after 1m28s
Some checks failed
pre-commit / pre-commit (pull_request) Failing after 1m28s
This commit is contained in:
15
partner_portal_extra_links/models/res_partner.py
Normal file
15
partner_portal_extra_links/models/res_partner.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
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.",
|
||||
)
|
||||
Reference in New Issue
Block a user