forked from OCA/sale-workflow
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path__manifest__.py
More file actions
29 lines (28 loc) · 894 Bytes
/
__manifest__.py
File metadata and controls
29 lines (28 loc) · 894 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
# Copyright 2025 Tecnativa - Carlos Roca
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Sale Semaphore",
"summary": "Adds a semaphore for commercial purposes",
"version": "18.0.1.0.0",
"category": "Sale",
"author": "Tecnativa, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/sale-workflow",
"license": "AGPL-3",
"depends": ["sale"],
"data": [
"views/account_invoice_report_views.xml",
"views/account_move_views.xml",
"views/product_category_views.xml",
"views/product_views.xml",
"views/sale_order_views.xml",
"views/sale_report_views.xml",
],
"installable": True,
"auto_install": False,
"assets": {
"web.assets_backend": [
"sale_semaphore/static/src/semaphore/*",
],
},
"pre_init_hook": "pre_init_hook",
}