forked from OCA/product-attribute
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
29 lines (29 loc) · 1.01 KB
/
__manifest__.py
File metadata and controls
29 lines (29 loc) · 1.01 KB
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 2024 Tecnativa - David Vidal
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Secondary unit in product matrix",
"version": "17.0.1.0.0",
"author": "Tecnativa, Odoo Community Association (OCA)",
"license": "AGPL-3",
"website": "https://github.com/OCA/product-attribute",
"category": "Sales Management",
"maintainers": ["carlos-lopez-tecnativa"],
"depends": [
"sale_management",
"sale_product_matrix",
"sale_order_secondary_unit",
],
"data": [
"views/sale_order_views.xml",
],
"assets": {
"web.assets_backend": [
"sale_product_matrix_secondary_unit/static/src/js/sale_product_field.esm.js",
"sale_product_matrix_secondary_unit/static/src/js/product_matrix_dialog.esm.js",
"sale_product_matrix_secondary_unit/static/src/xml/**/*",
],
"web.assets_tests": [
"sale_product_matrix_secondary_unit/static/tests/tours/**/*",
],
},
}