mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
This commit allows the user to select multiple products from a product list view and to create a Stock Request Order with an action. If the user selects templates, all of those templates' variants will be added to the order. This is useful as it allows the user to filter products beforehand based on their stocks, and to create a request order for all those products whose stock is too low.
31 lines
1006 B
Python
31 lines
1006 B
Python
# Copyright 2017 Eficent Business and IT Consulting Services, S.L.
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
|
|
|
{
|
|
"name": "Stock Request",
|
|
"summary": "Internal request for stock",
|
|
"version": "11.0.2.2.0",
|
|
"license": "LGPL-3",
|
|
"website": "https://github.com/stock-logistics-warehouse",
|
|
"author": "Eficent, "
|
|
"Odoo Community Association (OCA)",
|
|
"category": "Warehouse Management",
|
|
"depends": [
|
|
"stock",
|
|
],
|
|
"data": [
|
|
"security/stock_request_security.xml",
|
|
"security/ir.model.access.csv",
|
|
"views/product.xml",
|
|
"views/stock_request_views.xml",
|
|
"views/stock_request_allocation_views.xml",
|
|
"views/stock_move_views.xml",
|
|
"views/stock_picking_views.xml",
|
|
"views/stock_request_order_views.xml",
|
|
"views/res_config_settings_views.xml",
|
|
"views/stock_request_menu.xml",
|
|
"data/stock_request_sequence_data.xml",
|
|
],
|
|
"installable": True,
|
|
}
|