forked from OCA/account-reconcile
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path__manifest__.py
More file actions
31 lines (30 loc) · 922 Bytes
/
__manifest__.py
File metadata and controls
31 lines (30 loc) · 922 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
29
30
31
# Copyright 2024 Hunki Enterprises BV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl-3.0)
{
"name": "Reconcile sale orders",
"summary": "Invoice and reconcile sale orders",
"version": "18.0.1.0.0",
"development_status": "Alpha",
"category": "Accounting",
"website": "https://github.com/OCA/account-reconcile",
"author": "Hunki Enterprises BV, Odoo Community Association (OCA)",
"maintainers": ["hbrunn"],
"license": "AGPL-3",
"depends": [
"sale",
"account_reconcile_oca",
],
"data": [
"views/account_bank_statement_line.xml",
"views/account_reconcile_model.xml",
"views/sale_order.xml",
],
"demo": [
"demo/account_reconcile_model.xml",
],
"assets": {
"web.assets_backend": [
"/account_reconcile_sale_order/static/src/js/account_reconcile_sale_order.*",
],
},
}