Files
stock-logistics-warehouse/account_move_line_stock_info/__manifest__.py
Jordi Ballester 186434f5e4 [IMP] account_move_line_stock_info: Add init hook
We want to make sure that we move the stock_move_id from the account.move
to the account.move.line
2022-08-26 11:24:23 +02:00

19 lines
619 B
Python

# Copyright 2016-2022 ForgeFlow S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Account Move Line Stock Info",
"version": "14.0.2.1.0",
"depends": ["stock_account"],
"author": "ForgeFlow," "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/stock-logistics-warehouse",
"category": "Warehouse Management",
"installable": True,
"license": "AGPL-3",
"data": [
"security/ir.model.access.csv",
"views/account_move_line_view.xml",
"views/stock_move_view.xml",
],
"post_init_hook": "post_init_hook",
}