-
Notifications
You must be signed in to change notification settings - Fork 15
/
__manifest__.py
38 lines (37 loc) · 1.27 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
# Copyright (C) 2014 - Today: GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Recurring Consignment",
"version": "12.0.2.0.1",
"summary": "Sale - Handle Recurring Consignments",
"category": "Sale",
"author": "GRAP",
"website": "https://github.com/grap/grap-odoo-business",
"license": "AGPL-3",
"depends": [
"account",
"account_product_fiscal_classification",
],
"data": [
"security/ir_module_category.xml",
"security/res_groups.xml",
"views/menu.xml",
"wizards/view_invoice_commission_wizard.xml",
"wizards/view_consignor_create_wizard.xml",
"views/view_account_invoice.xml",
"views/view_account_invoice_line.xml",
"views/view_account_tax.xml",
"views/view_account_product_fiscal_classification.xml",
"views/view_product_template.xml",
"views/view_res_company.xml",
"views/view_res_partner.xml",
"views/view_product_pricelist.xml",
"report/report_account_invoice.xml",
],
"demo": [
"demo/res_groups.xml",
],
"post_init_hook": "create_consignor_sequence",
"installable": True,
}