Rental orders no longer show the "Authorizer Required?" question or the Authorizer field. The sale type is automatically set to 'Rentals' when creating or confirming a rental order. Validation logic also skips authorizer checks for rental sale type. Made-with: Cursor
31 lines
948 B
Python
31 lines
948 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
"name": "Fusion Whitelabels",
|
|
"version": "19.0.1.3.0",
|
|
"category": "Website",
|
|
"summary": "Remove Odoo frontend promotional branding for portal and website pages.",
|
|
"description": """
|
|
Fusion Whitelabels
|
|
==================
|
|
|
|
Persistent Odoo 19 whitelabel customizations:
|
|
- Removes "Connect with your software" portal promotions.
|
|
- Removes global "Powered by Odoo" website/footer promotions.
|
|
- 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,
|
|
}
|