forked from OCA/account-financial-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
30 lines (29 loc) · 1.01 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
# Copyright 2022 Akretion France (http://www.akretion.com/)
# @author: Alexis de Lattre <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Account Cash Deposit",
"version": "16.0.1.2.0",
"category": "Accounting",
"license": "AGPL-3",
"summary": "Manage cash deposits and cash orders",
"author": "Akretion, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/account-financial-tools",
"depends": ["account"],
"data": [
"security/ir.model.access.csv",
"security/security.xml",
"wizards/account_cash_order_reception_view.xml",
"data/sequence.xml",
"data/cash_unit_eur.xml",
"data/cash_unit_usd.xml",
"data/cash_unit_chf.xml",
"data/cash_unit_cad.xml",
"views/account_cash_deposit.xml",
"views/cash_unit.xml",
"views/res_currency.xml",
"report/report.xml",
"report/report_cashdeposit.xml",
],
"installable": True,
}