forked from OCA/stock-logistics-warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
31 lines (30 loc) · 1.03 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
# Copyright 2023 Michael Tietz (MT Software) <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "stock_location_orderpoint",
"author": "MT Software, BCIM, Odoo Community Association (OCA)",
"summary": "Declare orderpoint on a location "
"allowing to replenish any product with the same criteria.",
"version": "14.0.1.1.2",
"data": [
"security/ir.model.access.csv",
"data/ir_cron.xml",
"data/ir_sequence.xml",
"data/queue_job_channel.xml",
"data/queue_job_function.xml",
"views/stock_location_orderpoint_views.xml",
"views/stock_location.xml",
"views/menu.xml",
"demo/stock_location.xml",
"demo/stock_picking_type.xml",
"demo/stock_route.xml",
"demo/stock_location_orderpoint.xml",
],
"depends": [
"stock_helper",
"queue_job",
],
"license": "AGPL-3",
"maintainers": ["mt-software-de"],
"website": "https://github.com/OCA/stock-logistics-warehouse",
}