# HG changeset patch # User Florent Aide <florent.aide@gmail.com> # Date 1411630570 -7200 # Thu Sep 25 09:36:10 2014 +0200 # Node ID e932b0c456e0905c5ab77226b1f1301d222a0d9f # Parent 79974346ae2ecd74824003377ecc9873799c75e6 new __openerp__.py structure diff --git a/__openerp__.py b/__openerp__.py --- a/__openerp__.py +++ b/__openerp__.py @@ -24,33 +24,32 @@ { "name": "Marketing Campaign Tracker", "version": "1.0", - "depends": ["marketing", - "document", - "email_template", - "decimal_precision", - "marketing_campaign", - "base", - ], "author": "XCG SAS", "category": 'Sales', - 'complexity': "expert", "description": """ This module adds a tracker capability to the marketing campaign module. """, 'website': 'http://www.xcg-consulting.fr', - 'init_xml': [], - 'update_xml': [ + "depends": [ + "marketing", + "document", + "email_template", + "decimal_precision", + "marketing_campaign", + "base", + ], + "data": [ 'marketing_campaign_tracker_view.xml', 'wizard/wizard.xml', 'report/analytic.xml', 'report/marketing_campaign_view.xml', + 'security/security.xml', + 'security/ir.model.access.csv', ], -# 'js': ['static/src/js/report_analytic.js'], - 'demo_xml': [ - ], + 'complexity': "expert", + # 'js': ['static/src/js/report_analytic.js'], 'installable': True, 'active': False, - #'certificate': '', - 'images': [], } + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: