forked from OCA/repair
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__manifest__.py
More file actions
28 lines (27 loc) · 876 Bytes
/
__manifest__.py
File metadata and controls
28 lines (27 loc) · 876 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
# Copyright 2021 ForgeFlow S.L.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Repair picking after done",
"version": "18.0.1.0.0",
"author": "ForgeFlow, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/repair",
"summary": "Transfer repaired move to another location directly from repair order",
"category": "Repair",
"depends": [
"base_repair_config",
"repair_type",
"repair_stock",
"repair_type_product_destination",
],
"data": [
"security/ir.model.access.csv",
"views/repair.xml",
"views/res_config_settings_views.xml",
"wizards/repair_move_transfer_views.xml",
],
"installable": True,
"development_status": "Alpha",
"license": "AGPL-3",
"application": False,
"post_load": "post_load_hook",
}