-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path__manifest__.py
42 lines (42 loc) · 1.32 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
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright 2024 Tecnativa - David Vidal
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Weighing assistant",
"summary": "Weighing assistant for stock operations",
"version": "15.0.2.1.2",
"author": "Tecnativa, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/stock-weighing",
"license": "AGPL-3",
"category": "Inventory",
"depends": [
"stock",
"web_filter_header_button",
"web_widget_numeric_step",
"web_ir_actions_act_multi",
],
"data": [
"security/ir.model.access.csv",
"views/start_screen_banner.xml",
"wizards/weigh_operation_selection_views.xml",
"views/stock_move_line_views.xml",
"views/stock_move_views.xml",
"views/stock_picking_views.xml",
"views/stock_picking_type_views.xml",
"wizards/weighing_wizard_views.xml",
],
"demo": [
"demo/weight_label_demo.xml",
"demo/picking_type_demo.xml",
],
"assets": {
"web.assets_backend": [
"stock_weighing/static/src/**/*.scss",
"stock_weighing/static/src/**/*.js",
],
"web.assets_qweb": [
"stock_weighing/static/src/**/*.xml",
],
},
"post_init_hook": "post_init_hook",
"pre_init_hook": "pre_init_hook",
}