forked from OCA/project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
23 lines (23 loc) · 820 Bytes
/
__manifest__.py
File metadata and controls
23 lines (23 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2024 Tecnativa - Carlos López
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Sale project reimbursement cost",
"version": "18.0.1.0.0",
"summary": """Display provisions and reimbursement costs
in the Project Updates dashboard.""",
"author": "Tecnativa,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/project",
"category": "Sales",
"depends": [
"sale_project",
],
"data": ["views/product_template_views.xml", "views/sale_order_line_views.xml"],
"demo": ["demo/product_demo.xml"],
"assets": {
"web.assets_backend": [
"sale_project_reimbursement_cost/static/src/components/project_right_side_panel/**/*",
],
},
"installable": True,
"license": "AGPL-3",
}