bemade-addons/customer_itch_cycle/__manifest__.py

31 lines
937 B
Python
Raw Normal View History

2024-11-16 06:45:41 -05:00
{
'name': 'Customer Itch Cycle Management',
'version': '1.0',
2024-12-17 15:40:14 -05:00
'depends': [
'base',
2024-12-19 10:16:30 -05:00
'sale_stock',
'web'
2024-12-17 15:40:14 -05:00
],
'author': 'Benoit Vézina',
2024-11-16 06:45:41 -05:00
'category': 'Sales Management',
2024-12-17 15:40:14 -05:00
'summary': 'Manage customer itch cycles by product for proactive sales engagement.',
'website': 'https://www.bemade.org',
2024-11-16 06:45:41 -05:00
'description': "Manage customer itch cycles by product for proactive sales engagement.",
2024-12-17 15:40:14 -05:00
'license': 'AGPL-3',
2024-11-16 06:45:41 -05:00
'data': [
'views/itch_cycle_product_partner_view.xml',
'views/res_partner_view.xml',
2024-12-14 06:53:23 -05:00
'views/product_category_view.xml',
'security/ir.model.access.csv'
2024-11-16 06:45:41 -05:00
],
2024-12-19 10:16:30 -05:00
'assets': {
'web.assets_backend': [
'customer_itch_cycle/static/src/js/cycle_product_partner_list_view.js',
'customer_itch_cycle/static/src/xml/process_history_button.xml',
2024-12-19 11:20:44 -05:00
2024-12-19 10:16:30 -05:00
],
},
2024-11-16 06:45:41 -05:00
'installable': True,
'application': False,
}