odoo18/custom_addons/customer_orders/__manifest__.py

49 lines
1.6 KiB
Python

{
'name': 'Customer Orders Management',
'version': '18.0.1.0.0',
'category': 'Sales',
'summary': 'Manage customer orders with production and sales integration',
'description': """
Customer Orders Management Module
=================================
This module allows you to:
* Create and manage customer orders
* Track order progress from draft to delivery
* Create production orders automatically
* Generate sale orders from customer orders
* View comprehensive dashboard with analytics
* Generate detailed reports
Features:
- Multi-stage workflow (Draft → Confirmed → Production → Delivery)
- Progress tracking with visual indicators
- Integration with Manufacturing and Sales modules
- Comprehensive dashboard with OWL JS
- Advanced reporting capabilities
""",
'author': 'Raman Marikanti',
'depends': ['base', 'mail', 'sale', 'mrp', 'stock','web_grid'],
'data': [
'security/ir.model.access.csv',
'security/ir.model.access.xml',
'data/sequence.xml',
'views/customer_orders_views.xml',
'views/dashboard_views.xml',
'reports/customer_orders_report.xml',
],
'assets': {
'web.assets_backend': [
('include', 'web_grid._assets_pqgrid'),
'web/static/src/libs/fontawesome/*',
'customer_orders/static/src/xml/dashboard.xml',
'customer_orders/static/src/js/dashboard.js'
],
},
'demo': [],
'installable': True,
'application': True,
'auto_install': False,
'license': 'LGPL-3',
}