bemade-addons/customer_itch_cycle/__manifest__.py

46 lines
1.4 KiB
Python
Raw Normal View History

2024-11-16 06:45:41 -05:00
{
2025-01-02 08:06:56 -05:00
'name': 'Customer Itch Cycle',
'version': '17.0.1.0.0',
'category': 'Sales',
'summary': 'Manage customer product cycles and predict future sales',
'description': """
This module helps track and manage customer purchasing cycles:
* Track product purchase cycles per customer
* Predict next purchase dates
* Generate opportunities based on predictions
* Monitor delayed purchases
""",
'author': 'DurPro',
'website': 'https://www.durpro.com',
2024-12-17 15:40:14 -05:00
'depends': [
'base',
2025-01-02 08:06:56 -05:00
'sale',
'sale_management',
'crm',
'sale_crm',
'base_automation',
2024-12-17 15:40:14 -05:00
],
2024-11-16 06:45:41 -05:00
'data': [
2025-01-02 08:06:56 -05:00
'security/ir.model.access.csv',
'data/month_data.xml',
'wizards/apply_to_child_categories.xml',
2024-11-16 06:45:41 -05:00
'views/itch_cycle_product_partner_view.xml',
'views/res_partner_view.xml',
2024-12-23 11:40:07 -05:00
'views/itch_cycle_actions.xml',
'views/itch_cycle_menu.xml',
2025-01-02 08:06:56 -05:00
'views/crm_lead_view.xml',
'views/product_category_view.xml',
'data/ir_cron_data.xml',
# 'data/crm_automation_data.xml',
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-11-16 06:45:41 -05:00
'installable': True,
2025-01-02 08:06:56 -05:00
'application': True,
'license': 'LGPL-3',
2024-11-16 06:45:41 -05:00
}