diff --git a/addons/om_account_followup/__manifest__.py b/addons/om_account_followup/__manifest__.py new file mode 100644 index 0000000..23a2848 --- /dev/null +++ b/addons/om_account_followup/__manifest__.py @@ -0,0 +1,27 @@ +{ + 'name': 'Customer Follow Up Management', + 'version': 1.0.219.0.1.0.2', # __odoosky_original_version__: '1.0.2' + 'category': 'Accounting', + 'description': """Customer FollowUp Management""", + 'summary': """Customer FollowUp Management""", + 'author': 'Odoo Mates, Odoo S.A', + 'license': 'LGPL-3', + 'website': 'https://www.odoomates.tech', + 'depends': ['account', 'mail'], + 'data': [ + 'security/security.xml', + 'security/ir.model.access.csv', + 'data/mail_template_data.xml', + 'wizard/followup_print_view.xml', + 'wizard/followup_results_view.xml', + 'views/followup_view.xml', + 'views/account_move.xml', + 'views/partners.xml', + 'views/report_followup.xml', + 'views/reports.xml', + 'views/followup_partner_view.xml', + 'report/followup_report.xml', + ], + 'demo': ['demo/demo.xml'], + 'images': ['static/description/banner.png'], +}