The nexa-branded inherit on web.brand_promotion replaced the entire <div class="o_brand_promotion"> wrapper with an empty hidden div, which also stripped out the <t t-call="web.brand_promotion_message"/> child. Enterprise planning's planning.brand_promotion (primary inherit on web.brand_promotion) then xpath'd onto that t-call and failed to install: "Element <xpath expr=//t[@t-call='web.brand_promotion_message']> cannot be located in parent view". Switched to position="attributes" with add="d-none" so the wrapper still gets hidden but its children stay in the merged arch for downstream xpaths. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
31 lines
978 B
Python
31 lines
978 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
"name": "Fusion Whitelabels",
|
|
"version": "19.0.1.4.5",
|
|
"category": "Website",
|
|
"summary": "Replace Odoo frontend promotional branding with Nexa Systems whitelabeling.",
|
|
"description": """
|
|
Fusion Whitelabels
|
|
==================
|
|
|
|
Persistent Odoo 19 whitelabel customizations:
|
|
- Removes "Connect with your software" portal promotions.
|
|
- Replaces global "Powered by Odoo" website/footer promotions with Nexa Systems credit.
|
|
- Removes login-page "Powered by Odoo" footer link.
|
|
""",
|
|
"author": "Fusion",
|
|
"license": "LGPL-3",
|
|
"depends": ["portal", "sale", "purchase", "website", "website_sale"],
|
|
"data": [
|
|
"views/fusion_whitelabels_templates.xml",
|
|
],
|
|
"assets": {
|
|
"web.assets_frontend": [
|
|
"fusion_whitelabels/static/src/css/whitelabel.css",
|
|
],
|
|
},
|
|
"installable": True,
|
|
"auto_install": False,
|
|
"application": False,
|
|
}
|