bemade-addons/bemade_quotation_alternative/__manifest__.py
2025-05-29 21:35:47 -04:00

37 lines
1 KiB
Python

# -*- coding: utf-8 -*-
{
'name': "Create Quotation Alternative",
'summary': """
Short (1 phrase/line) summary of the module's purpose, used as
subtitle on modules listing or apps.openerp.com""",
'description': """
Long description of module's purpose
""",
'author': "Bemade.org",
'website': "https://odoo.bemade.org",
'license': 'LGPL-3',
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Uncategorized',
'version': '17.0.1.0.0',
# any module necessary for this one to work correctly
'depends': [
'sale_management'
],
# always loaded
'data': [
'security/ir.model.access.csv',
'views/sale_order_views.xml',
'wizard/sale_order_duplication_wizard_view.xml',
],
# only loaded in demonstration mode
'demo': [
# 'demo/demo.xml',
],
}