-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__manifest__.py
More file actions
28 lines (27 loc) · 893 Bytes
/
__manifest__.py
File metadata and controls
28 lines (27 loc) · 893 Bytes
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
# Copyright 2018 Xavier Piernas <xavier.piernas@qubiq.es>
# Copyright 2020-2022 Valentin Vinagre <valentin.vinagre@sygel.es>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Bank Accounts Report",
"summary": "Choose which bank accounts will be displayed "
"on invoice and sale order reports",
"version": "18.0.1.0.0",
"category": "Account",
"website": "https://github.com/sygel-technology/sy-account-invoicing",
"author": "QubiQ, Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"account",
"account_payment_mode",
"account_payment_sale",
"account_banking_mandate",
"sale",
],
"data": [
"views/account_payment_mode.xml",
"reports/account_invoice.xml",
"reports/sale_order.xml",
],
}