[MIG] partner_portal_extra_links: migrate to 18.0

This commit is contained in:
Stéphan Sainléger
2026-03-29 15:31:04 +02:00
parent 6e776cbe64
commit 0276cd5e07
10 changed files with 914 additions and 0 deletions

View File

@@ -0,0 +1 @@
from . import res_partner

View File

@@ -0,0 +1,14 @@
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.",
)