-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
__manifest__.py
29 lines (29 loc) · 1.05 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
# Copyright 2020 Tecnativa - Carlos Dauden
# Copyright 2020 Tecnativa - Sergio Teruel
# Copyright 2023 Tecnativa - Carolina Fernandez
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Sale payment sheet",
"summary": "Allow to create invoice payments to commercial users without "
"accounting permissions",
"version": "16.0.1.1.1",
"development_status": "Beta",
"category": "Account",
"website": "https://github.com/OCA/sale-workflow",
"author": "Tecnativa, Odoo Community Association (OCA)",
"maintainers": ["sergio-teruel"],
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": ["sale", "account"],
"data": [
"security/ir.model.access.csv",
"security/security.xml",
"report/report_sale_payment_sheet_summary.xml",
"report/sale_payment_sheet_report.xml",
"views/res_users_views.xml",
"views/sale_payment_sheet_views.xml",
"views/sale_payment_sheet_menu.xml",
"wizards/sale_invoice_payment_view.xml",
],
}