forked from OCA/wms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
36 lines (35 loc) · 1.12 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
# Copyright 2020 Camptocamp
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
{
"name": "Stock Release Channels",
"summary": "Manage workload in WMS with release channels",
"version": "16.0.2.6.2",
"development_status": "Beta",
"license": "AGPL-3",
"author": "Camptocamp, ACSONE SA/NV,Odoo Community Association (OCA)",
"maintainers": ["sebalix"],
"website": "https://github.com/OCA/wms",
"depends": [
"web",
"stock_available_to_promise_release", # OCA/wms
"queue_job", # OCA/queue
],
"data": [
"views/res_partner.xml",
"views/stock_release_channel_views.xml",
"views/stock_picking_views.xml",
"data/queue_job_data.xml",
"data/ir_cron_data.xml",
"security/stock_release_channel.xml",
],
"demo": [
"demo/stock_release_channel.xml",
],
"assets": {
"web.assets_backend": [
"stock_release_channel/static/src/scss/stock_release_channel.scss",
"stock_release_channel/static/src/js/progressbar_fractional_widget.js",
],
},
"installable": True,
}