~factorlibre/openerp-fiscal-rules/openerp-fiscal-rules-translations

« back to all changes in this revision

Viewing changes to account_fiscal_position_rule_stock/__openerp__.py

[MIGR] account_fiscal_position_rule_stock module migration to OpenERP v7

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    'name': 'Account Fiscal Position Rule Stock',
24
24
    'version': '1.1',
25
25
    'category': 'Generic Modules/Accounting',
26
 
    'description': """Include a rule to decide the correct fiscal position for Stock""",
 
26
    'description': """Include a rule to decide the correct
 
27
    fiscal position for Stock""",
27
28
    'author': 'Akretion',
28
29
    'license': 'AGPL-3',
29
30
    'website': 'http://www.akretion.com',
30
 
    'depends': ['account_fiscal_position_rule', 'sale','purchase'],
31
 
    'init_xml': [],
32
 
    'update_xml':
33
 
                [
34
 
                'stock_view.xml',
35
 
                'security/account_fiscal_position_rule_security.xml',
36
 
                'security/ir.model.access.csv',
37
 
                ],
38
 
    'demo_xml': [],
 
31
    'depends': [
 
32
        'account_fiscal_position_rule',
 
33
        'stock',
 
34
    ],
 
35
    'data': [
 
36
        'stock_view.xml',
 
37
        'security/account_fiscal_position_rule_security.xml',
 
38
        'security/ir.model.access.csv',
 
39
    ],
 
40
    'demo': [],
39
41
    'installable': True,
40
42
}
41
 
 
42
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: