[ADD] helpdesk_portal_extra_links : add url_visio and url_wiki to portal
Some checks failed
pre-commit / pre-commit (pull_request) Failing after 1m26s

This commit is contained in:
Boris Gallet
2025-10-21 16:21:42 +02:00
parent 5df89b06cd
commit 6338876f88
10 changed files with 860 additions and 0 deletions

View 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.",
)