__openerp__.py
1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- coding: utf-8 -*-
# Copyright (C) 2016-Today: La Louve (<http://www.lalouve.net/>)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Capital Subscription',
'version': '9.0.0.0.2',
'category': 'Accounting',
'summary': 'Provide extra accounting features for Capital Subscription',
'author': 'La Louve',
'website': 'http://www.lalouve.net',
'depends': [
'account',
'l10n_generic_coa',
'account_full_reconcile',
],
'data': [
'data/data_product_product.xml',
'security/res_groups.xml',
'security/ir.model.access.csv',
'views/action.xml',
'views/view_capital_fundraising_wizard.xml',
'views/view_product_template.xml',
'views/view_res_partner.xml',
'views/view_account_invoice.xml',
'views/view_account_invoice_refund.xml',
'views/view_account_journal.xml',
'views/view_capital_fundraising_deficit.xml',
'views/view_capital_fundraising_partner_type.xml',
'views/view_capital_fundraising_category.xml',
'views/view_capital_fundraising.xml',
'views/view_account_payment_term.xml',
'views/menu.xml',
],
'demo': [
'demo/res_groups.xml',
'demo/account_payment_term.xml',
'demo/account_account.xml',
'demo/account_journal.xml',
'demo/product_category.xml',
'demo/product_product.xml',
'demo/capital_fundraising.xml',
'demo/capital_fundraising_partner_type.xml',
'demo/capital_fundraising_category.xml',
'demo/capital_fundraising_category_line.xml',
'demo/res_partner.xml',
],
'installable': True,
}