-
-
Notifications
You must be signed in to change notification settings - Fork 247
/
__manifest__.py
43 lines (42 loc) · 1.32 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
# Copyright (C) 2014 Renato Lima - Akretion
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
{
"name": "Brazilian Localization WMS Accounting",
"summary": "Invoice from Picking (nota fiscal de remessa) and other WMS overrides",
"category": "Localisation",
"license": "AGPL-3",
"author": "Akretion, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-brazil",
"maintainers": ["renatonlima", "mbcosta"],
"version": "14.0.3.11.1",
"depends": [
"stock_account",
"stock_picking_invoicing",
"l10n_br_stock",
"l10n_br_account",
],
"data": [
# Security
"security/ir.model.access.csv",
# Data
"data/l10n_br_stock_account_data.xml",
# Views
"views/stock_account_view.xml",
"views/stock_picking.xml",
"views/stock_rule_view.xml",
"views/stock_picking_type_view.xml",
"views/res_company_view.xml",
# Wizards
"wizards/stock_invoice_onshipping_view.xml",
],
"demo": [
# Demo
"demo/company_demo.xml",
"demo/l10n_br_stock_account_demo.xml",
"demo/account_journal_demo.xml",
"demo/stock_inventory_demo.xml",
],
"installable": True,
"post_init_hook": "post_init_hook",
"auto_install": True,
}