mirror of
https://github.com/OCA/stock-logistics-reporting.git
synced 2025-02-16 17:13:21 +02:00
This module adds the possibility to obtain a report with the cost value of a given operation.
25 lines
787 B
Python
25 lines
787 B
Python
# Copyright 2019 Tecnativa - David Vidal
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
{
|
|
"name": "Stock Move Cost Value Report",
|
|
"version": "12.0.1.0.0",
|
|
"category": "Warehouse",
|
|
"website": "https://github.com/OCA/stock-logistics-reporting",
|
|
"author": "Tecnativa, "
|
|
"Odoo Community Association (OCA)",
|
|
"license": "AGPL-3",
|
|
"application": False,
|
|
"installable": True,
|
|
"depends": [
|
|
"stock_account",
|
|
],
|
|
"data": [
|
|
'report/stock_value_report.xml',
|
|
'report/stock_move_line_value_report.xml',
|
|
'report/stock_move_value_report.xml',
|
|
'report/stock_picking_value_report.xml',
|
|
'report/stock_scrap_value_report.xml',
|
|
'report/stock_inventory_value_report.xml',
|
|
],
|
|
}
|