hide_powered_by_odoo/__manifest__.py

42 lines
1.3 KiB
Python

# -*- coding: utf-8 -*-
{
'name': 'Hide Powered by Odoo (IT Mapan)',
'version': '19.0.1.0.0',
'category': 'Hidden/Dependency',
'summary': 'Replaces "Powered by Odoo" with "Powered by IT Mapan" across Website, Portal, POS receipt, Customer display, Login page, and Email notifications.',
'description': """
Hide Powered by Odoo (IT Mapan)
===============================
This module customizes various templates to replace all instances of "Powered by Odoo" with "Powered by IT Mapan".
Customized areas:
- POS Customer Display (sidebar and main bottom branding)
- POS Receipt (appends/inserts "Powered by IT Mapan" at the bottom)
- Login Page (overrides both default Odoo and OdooAI login links)
- Portal & Website Brand Promotion
- 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',
],
'point_of_sale.customer_display_assets': [
'hide_powered_by_odoo/static/src/customer_display_patch.xml',
],
},
'installable': True,
'application': False,
'license': 'LGPL-3',
}