From 035cf758b1572905a9eddd63ce8574d6517678c8 Mon Sep 17 00:00:00 2001 From: Simone Orsi Date: Fri, 11 Jun 2021 11:49:06 +0200 Subject: [PATCH] s_product_qty_by_packaging: minor fixes --- stock_product_qty_by_packaging/__manifest__.py | 1 - stock_product_qty_by_packaging/models/stock_move.py | 2 +- stock_product_qty_by_packaging/models/stock_move_line.py | 2 +- stock_product_qty_by_packaging/models/stock_quant.py | 2 +- stock_product_qty_by_packaging/readme/DESCRIPTION.rst | 7 +++++++ 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/stock_product_qty_by_packaging/__manifest__.py b/stock_product_qty_by_packaging/__manifest__.py index 330bdf003..6107d9c25 100644 --- a/stock_product_qty_by_packaging/__manifest__.py +++ b/stock_product_qty_by_packaging/__manifest__.py @@ -9,7 +9,6 @@ "website": "https://github.com/OCA/stock-logistics-warehouse", "author": "Camptocamp, Odoo Community Association (OCA)", "license": "LGPL-3", - "application": False, "installable": True, "depends": ["stock_packaging_calculator", "stock"], "data": ["views/stock_picking.xml"], diff --git a/stock_product_qty_by_packaging/models/stock_move.py b/stock_product_qty_by_packaging/models/stock_move.py index 2bffff42c..a4c694f12 100644 --- a/stock_product_qty_by_packaging/models/stock_move.py +++ b/stock_product_qty_by_packaging/models/stock_move.py @@ -1,7 +1,7 @@ # Copyright 2020 Camptocamp SA # @author: Simone Orsi # @author: Sébastien Alix -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl) from odoo import models diff --git a/stock_product_qty_by_packaging/models/stock_move_line.py b/stock_product_qty_by_packaging/models/stock_move_line.py index cfea5c7d8..789f07acf 100644 --- a/stock_product_qty_by_packaging/models/stock_move_line.py +++ b/stock_product_qty_by_packaging/models/stock_move_line.py @@ -1,7 +1,7 @@ # Copyright 2020 Camptocamp SA # @author: Simone Orsi # @author: Sébastien Alix -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl) from odoo import models diff --git a/stock_product_qty_by_packaging/models/stock_quant.py b/stock_product_qty_by_packaging/models/stock_quant.py index 04e0888bb..8290e2a7a 100644 --- a/stock_product_qty_by_packaging/models/stock_quant.py +++ b/stock_product_qty_by_packaging/models/stock_quant.py @@ -1,7 +1,7 @@ # Copyright 2020 Camptocamp SA # @author: Simone Orsi # @author: Sébastien Alix -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). from odoo import models diff --git a/stock_product_qty_by_packaging/readme/DESCRIPTION.rst b/stock_product_qty_by_packaging/readme/DESCRIPTION.rst index 4a4438a48..99b4b5930 100644 --- a/stock_product_qty_by_packaging/readme/DESCRIPTION.rst +++ b/stock_product_qty_by_packaging/readme/DESCRIPTION.rst @@ -1 +1,8 @@ Glue module for `stock_packaging_calculator` and `stock`. +It adds product qty computed by packaging to: + +* stock move +* stock move line +* stock quant + +and displays it for move line on stock picking view.