From ef5b10867d57462b2aa608691ae533c76180fac2 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 15 Apr 2024 07:57:06 +0000 Subject: [PATCH] [BOT] post-merge updates --- README.md | 1 + setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + stock_average_daily_sale/README.rst | 34 +++++--- .../static/description/index.html | 83 +++++++++++-------- 5 files changed, 73 insertions(+), 48 deletions(-) diff --git a/README.md b/README.md index 61d359b..3b20e04 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ Available addons addon | version | maintainers | summary --- | --- | --- | --- [delivery_line_sale_line_position](delivery_line_sale_line_position/) | 16.0.1.1.0 | | Adds the sale line position to the delivery report lines +[stock_average_daily_sale](stock_average_daily_sale/) | 16.0.1.0.0 | | Allows to gather delivered products average on daily basis [stock_card_report](stock_card_report/) | 16.0.1.0.0 | | Add stock card report on Inventory Reporting. [stock_picking_report_custom_description](stock_picking_report_custom_description/) | 16.0.1.0.0 | [![carlosdauden](https://github.com/carlosdauden.png?size=30px)](https://github.com/carlosdauden) | Show moves description in picking reports [stock_picking_report_internal_delivery_address](stock_picking_report_internal_delivery_address/) | 16.0.1.0.0 | | Show delivery address when picking type is internal diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index e793cfe..cb069c0 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -16.0.20240314.0 \ No newline at end of file +16.0.20240415.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 230ac12..90ab13d 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -9,6 +9,7 @@ setuptools.setup( version=version, install_requires=[ 'odoo-addon-delivery_line_sale_line_position>=16.0dev,<16.1dev', + 'odoo-addon-stock_average_daily_sale>=16.0dev,<16.1dev', 'odoo-addon-stock_card_report>=16.0dev,<16.1dev', 'odoo-addon-stock_picking_report_custom_description>=16.0dev,<16.1dev', 'odoo-addon-stock_picking_report_internal_delivery_address>=16.0dev,<16.1dev', diff --git a/stock_average_daily_sale/README.rst b/stock_average_daily_sale/README.rst index c51ffdd..bce5f2f 100644 --- a/stock_average_daily_sale/README.rst +++ b/stock_average_daily_sale/README.rst @@ -2,10 +2,13 @@ Stock Average Daily Sale ======================== -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:cbc2d8aee61af519a59ebfa3ff4b8b6477f4ead65705c5eef34f52a6e886c3d6 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -19,14 +22,14 @@ Stock Average Daily Sale .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/stock-logistics-reporting-16-0/stock-logistics-reporting-16-0-stock_average_daily_sale :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/151/16.0 - :alt: Try me on Runbot +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-reporting&target_branch=16.0 + :alt: Try me on Runboat -|badge1| |badge2| |badge3| |badge4| |badge5| +|badge1| |badge2| |badge3| |badge4| |badge5| This module allows to gather stock consumptions and build reporting for average daily -sales (aka stock consumptions). Technically, this has been done through a +sales (aka stock consumptions). Technically, this has been done through a materialized postgresql view in order to be as fast as possible (some other flow modules can depend on this). @@ -42,6 +45,7 @@ Moreover, you can define: * A safety factor * A standard deviation exclusion factor +* A different root location for analysis per Warehouse **Table of contents** @@ -51,9 +55,9 @@ Moreover, you can define: Configuration ============= -#. To configure data analysis, you should go to Inventory > Configuration > Average daily sales computation parameters +* To configure data analysis, you should go to Inventory > Configuration > Average daily sales computation parameters -#. You need to fill in the following informations: +* You need to fill in the following informations: * The product ABC classification you want - see product_abc_classification module * The concerned Warehouse @@ -62,11 +66,17 @@ Configuration * A standard deviation exclusion factor * A safety factor -#. Go to Configuration > Technical > Scheduled Actions > Refresh average daily sales materialized view +* Go to Configuration > Technical > Scheduled Actions > Refresh average daily sales materialized view - By default, the sceduled action is set to refresh data each 4 hours. You can change + By default, the scheduled action is set to refresh data each 4 hours. You can change that depending on your needs. +* By default, the root location where analysis is done is the Warehouse stock location, + but you can change it. + + * Go to Inventory > Configuration > Warehouses + * Change the 'Average Daily Sale Root Location' field according your needs + Known issues / Roadmap ====================== @@ -86,7 +96,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us smashing it by providing a detailed and welcomed +If you spotted it first, help us to smash it by providing a detailed and welcomed `feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -98,12 +108,14 @@ Authors ~~~~~~~ * ACSONE SA/NV +* BCIM Contributors ~~~~~~~~~~~~ * Laurent Mignon * Denis Roussel +* Jacques-Etienne Baudoux (BCIM) Maintainers ~~~~~~~~~~~ diff --git a/stock_average_daily_sale/static/description/index.html b/stock_average_daily_sale/static/description/index.html index e5a4f18..7562afa 100644 --- a/stock_average_daily_sale/static/description/index.html +++ b/stock_average_daily_sale/static/description/index.html @@ -1,20 +1,19 @@ - - + Stock Average Daily Sale