~savoirfairelinux-openerp/openerp-mgmtsystem/openupgrade70

« back to all changes in this revision

Viewing changes to mgmtsystem_claim/__openerp__.py

  • Committer: Daniel Reis
  • Date: 2013-03-01 10:41:55 UTC
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: dreis.pt@hotmail.com-20130301104155-f7lsxl5jzvprqag9
[CHG] Making audit trail rules an option. They will be automatically installed if the audittrail module is installed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- encoding: utf-8 -*-
2
2
##############################################################################
3
 
#    
 
3
#
4
4
#    OpenERP, Open Source Management Solution
5
5
#    Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
6
6
#
26
26
    "license" : "AGPL-3",
27
27
    "category" : "Management System",
28
28
    "description": """This module enables you to manage the claims of your management system.""",
29
 
    "depends" : ['mgmtsystem','audittrail','crm_claim','mail'],
30
 
    "init_xml" : [],
31
 
    "update_xml" : [
 
29
    "depends": ['mgmtsystem', 'crm_claim', 'mail'],
 
30
    "init": [
 
31
        'claim_sequence.xml',
 
32
        'workflow_mgmtsystem_claim.xml',
 
33
    ],
 
34
    "data": [
32
35
        'security/ir.model.access.csv',
33
36
        'mgmtsystem_claim.xml',
34
 
        'claim_sequence.xml',
35
37
        'board_mgmtsystem_claim.xml',
36
 
        'workflow_mgmtsystem_claim.xml',
37
38
    ],
38
 
    "demo_xml" : [],
39
 
    "installable" : True,
40
 
    "certificate" : ''
41
39
}
42
40
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
43
41