21 lines
741 B
Python
21 lines
741 B
Python
# Copyright 2022 Criptomart
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Stock Inventory Cost Info Sum',
|
|
'description': """
|
|
Extends the OCA module stock_inventory_cost_info to store in the Inventory model the sum of the cost information of the inventory lines. This allows exporting and filtering by this field in the inventory adjustments tree view without having to export each inventory line.""",
|
|
'version': '12.0.1.0.0',
|
|
'license': 'AGPL-3',
|
|
'author': 'Criptomart',
|
|
'website': 'https://criptomart.net',
|
|
'depends': [
|
|
'stock_inventory_cost_info',
|
|
],
|
|
'data': [
|
|
'views/stock_inventory.xml',
|
|
'views/actions.xml',
|
|
],
|
|
'demo': [
|
|
],
|
|
}
|