hide_powered_by_odoo/__manifest__.py

43 lines
1.4 KiB
Python

# -*- coding: utf-8 -*-
{
'name': 'Hide Powered by Odoo (IT Mapan)',
'version': '19.0.1.0.0',
'category': 'Hidden/Dependency',
'summary': 'Hides "Powered by Odoo" completely across Website, Portal, POS receipt, Customer display, Login page, and Email notifications.',
'description': """
Hide Powered by Odoo
====================
This module customizes various templates to completely hide all instances of "Powered by Odoo".
Customized areas:
- POS Customer Display (sidebar and main bottom branding)
- POS Receipt (hides "Powered by Odoo" at the bottom)
- Login Page (hides both default Odoo and OdooAI login links)
- Portal & Website Brand Promotion (hides promotion message)
- Email Notifications (light and standard layouts)
""",
'author': 'Suherdy Yacob',
'depends': [
'web',
'portal',
'website',
'mail',
'point_of_sale',
],
'data': [
'views/web_templates.xml',
],
'assets': {
'point_of_sale._assets_pos': [
'hide_powered_by_odoo/static/src/order_receipt_patch.xml',
'hide_powered_by_odoo/static/src/saver_screen_patch.xml',
],
'point_of_sale.customer_display_assets': [
'hide_powered_by_odoo/static/src/customer_display_patch.xml',
],
},
'installable': True,
'application': False,
'license': 'LGPL-3',
}