diff --git a/pos_sale_picking_keep/README.rst b/pos_sale_picking_keep/README.rst index f714ff3f1a..e55418a5ac 100644 --- a/pos_sale_picking_keep/README.rst +++ b/pos_sale_picking_keep/README.rst @@ -36,6 +36,12 @@ This module inhibits the manipulation that the point of sale mades over the sales orders pickings, and the creation of new pickings under the PoS picking type. +When settling a sale order in the PoS, the ordered quantities are loaded +even if the products were already delivered through the sale order +pickings, deducting only the quantities already invoiced. Without this +module, the PoS deducts the delivered quantities, which makes no sense +here, as the PoS is only used to charge the order, not to deliver it. + **Table of contents** .. contents:: diff --git a/pos_sale_picking_keep/__manifest__.py b/pos_sale_picking_keep/__manifest__.py index 1a7216b02d..3242026604 100644 --- a/pos_sale_picking_keep/__manifest__.py +++ b/pos_sale_picking_keep/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Keep sale pickings from PoS", - "version": "19.0.1.0.0", + "version": "19.0.1.1.0", "category": "Point Of Sale", "website": "https://github.com/OCA/pos", "author": "Tecnativa, Odoo Community Association (OCA)", @@ -11,6 +11,9 @@ "installable": True, "depends": ["pos_sale", "sale_stock"], "assets": { + "point_of_sale._assets_pos": [ + "pos_sale_picking_keep/static/src/js/**/*", + ], "web.assets_tests": [ "pos_sale_picking_keep/static/tests/tours/**/*", ], diff --git a/pos_sale_picking_keep/readme/DESCRIPTION.md b/pos_sale_picking_keep/readme/DESCRIPTION.md index 8c167306c6..a986054dd2 100644 --- a/pos_sale_picking_keep/readme/DESCRIPTION.md +++ b/pos_sale_picking_keep/readme/DESCRIPTION.md @@ -1,2 +1,8 @@ This module inhibits the manipulation that the point of sale mades over the sales orders pickings, and the creation of new pickings under the PoS picking type. + +When settling a sale order in the PoS, the ordered quantities are loaded +even if the products were already delivered through the sale order pickings, +deducting only the quantities already invoiced. Without this module, the PoS +deducts the delivered quantities, which makes no sense here, as the PoS is +only used to charge the order, not to deliver it. diff --git a/pos_sale_picking_keep/static/description/index.html b/pos_sale_picking_keep/static/description/index.html index f78b612c53..92e4e817f7 100644 --- a/pos_sale_picking_keep/static/description/index.html +++ b/pos_sale_picking_keep/static/description/index.html @@ -378,6 +378,11 @@

Keep sale pickings from PoS

This module inhibits the manipulation that the point of sale mades over the sales orders pickings, and the creation of new pickings under the PoS picking type.

+

When settling a sale order in the PoS, the ordered quantities are loaded +even if the products were already delivered through the sale order +pickings, deducting only the quantities already invoiced. Without this +module, the PoS deducts the delivered quantities, which makes no sense +here, as the PoS is only used to charge the order, not to deliver it.

Table of contents