-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path__manifest__.py
41 lines (40 loc) · 1.37 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
# Copyright (C) 2015 - 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": "GRAP - Export accounting moves to EBP",
"version": "12.0.2.0.2",
"author": "GRAP",
"category": "GRAP - Custom",
"license": "AGPL-3",
"website": "https://github.com/grap/grap-odoo-custom-account",
"depends": [
"account",
# OCA
"account_menu",
"account_fiscal_year",
# GRAP
"fiscal_company_base",
"intercompany_trade_base",
"intercompany_trade_fiscal_company",
"grap_account_export",
"grap_account_export_partner_code",
"grap_custom_account_payment_workflow",
],
"external_dependencies": {"python": ["unidecode", "openupgradelib"]},
"data": [
"security/ir.model.access.csv",
"security/ir_rule.xml",
"wizard/view_wizard_ebp_export.xml",
"wizard/view_wizard_ebp_unexport.xml",
"views/view_account_account.xml",
"views/view_account_account_template.xml",
"views/view_account_journal.xml",
"views/view_account_move.xml",
"views/view_account_tax.xml",
"views/view_account_tax_template.xml",
"views/view_ebp_export.xml",
"views/view_res_company.xml",
],
"installable": True,
}