forked from AwesomeFoodCoops/odoo-production
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path__manifest__.py
51 lines (49 loc) · 1.78 KB
/
__manifest__.py
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
# Copyright (C) 2016-Today: La Louve (<http://www.lalouve.net/>)
# Copyright (C) 2019-Today: Druidoo (<https://www.druidoo.io>)
# @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': '12.0.1.0.0',
'category': 'Accounting',
'summary': 'Provide extra accounting features for Capital Subscription',
'author': 'La Louve, Druidoo',
'website': 'http://www.lalouve.net',
'license': 'AGPL-3',
'depends': [
'account',
'l10n_generic_coa',
],
'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,
}