forked from OCA/stock-logistics-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
41 lines (40 loc) · 1.27 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
# Copyright 2021 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
{
"name": "Shipment Advice",
"summary": "Manage your (un)loading process through shipment advices.",
"version": "16.0.1.4.1",
"author": "Camptocamp, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/stock-logistics-transport",
"category": "Warehouse Management",
"depends": [
"stock",
"delivery",
# OCA/queue
"queue_job",
# OCA/stock-logistics-transport
"stock_dock",
],
"data": [
"security/ir.model.access.csv",
"data/ir_sequence.xml",
"data/queue_job_channel.xml",
"data/queue_job_function.xml",
"views/res_config_settings.xml",
"views/shipment_advice.xml",
"views/stock_picking.xml",
"views/stock_package_level.xml",
"views/stock_move.xml",
"views/stock_move_line.xml",
"wizards/plan_shipment.xml",
"wizards/unplan_shipment.xml",
"wizards/load_shipment.xml",
"wizards/unload_shipment.xml",
"report/reports.xml",
"report/report_shipment_advice.xml",
],
"demo": ["demo/stock_dock.xml"],
"license": "AGPL-3",
"installable": True,
"application": False,
}