Skip to content

Commit

Permalink
Merge PR #472 into 17.0
Browse files Browse the repository at this point in the history
Signed-off-by LoisRForgeFlow
  • Loading branch information
OCA-git-bot committed Jul 1, 2024
2 parents dfd0351 + 1feac4f commit 404bb1e
Show file tree
Hide file tree
Showing 26 changed files with 2,028 additions and 0 deletions.
96 changes: 96 additions & 0 deletions ddmrp_warning/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
=============
DDMRP Warning
=============

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:eb23f7ae751a8e1cff2a0666c114c6ae80b944ae464ecb9661e1615ad9d291f4
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
:target: https://odoo-community.org/page/development-status
:alt: Production/Stable
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fddmrp-lightgray.png?logo=github
:target: https://github.com/OCA/ddmrp/tree/17.0/ddmrp_warning
:alt: OCA/ddmrp
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/ddmrp-17-0/ddmrp-17-0-ddmrp_warning
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/ddmrp&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

Adds configuration warnings on stock buffers based on different
definitions. This modules include some basic warnings but you can create
your own based on your environment.

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module you can proceed as follows:

1. Use the filter *Has Warnings* in stock buffers.
2. In a buffer form view go to the *Warnings* tab and check the active
warnings.
3. Fix the issues, and click on *Refresh Warnings*.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/ddmrp/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/ddmrp/issues/new?body=module:%20ddmrp_warning%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
-------

* ForgeFlow

Contributors
------------

- Lois Rilo Antelo <[email protected]>

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

.. |maintainer-LoisRForgeFlow| image:: https://github.com/LoisRForgeFlow.png?size=40px
:target: https://github.com/LoisRForgeFlow
:alt: LoisRForgeFlow

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-LoisRForgeFlow|

This module is part of the `OCA/ddmrp <https://github.com/OCA/ddmrp/tree/17.0/ddmrp_warning>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions ddmrp_warning/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
25 changes: 25 additions & 0 deletions ddmrp_warning/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright 2021 ForgeFlow S.L. (https://www.forgeflow.com)
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).

{
"name": "DDMRP Warning",
"version": "17.0.1.0.0",
"summary": "Adds configuration warnings on stock buffers.",
"author": "ForgeFlow, Odoo Community Association (OCA)",
"development_status": "Production/Stable",
"maintainers": ["LoisRForgeFlow"],
"website": "https://github.com/OCA/ddmrp",
"category": "Warehouse Management",
"depends": ["ddmrp"],
"data": [
"security/ir.model.access.csv",
"security/ddmrp_warning_rules.xml",
"views/ddmrp_buffer_view.xml",
"views/ddmrp_warning_definition_views.xml",
"views/ddmrp_warning_item_views.xml",
"data/ir_cron.xml",
"data/ddmrp_warning_definition_data.xml",
],
"license": "LGPL-3",
"installable": True,
}
36 changes: 36 additions & 0 deletions ddmrp_warning/data/ddmrp_warning_definition_data.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record
id="ddmrp_warning_definition_dlt_and_spike_horizon"
model="ddmrp.warning.definition"
>
<field name="name">Spike horizon is smaller than DLT</field>
<field name="python_code">buffer.order_spike_horizon &lt; buffer.dlt</field>
<field name="severity">3_high</field>
</record>
<record
id="ddmrp_warning_definition_moq_and_qty_multiple"
model="ddmrp.warning.definition"
>
<field name="name">Quantity multiple bigger than MOQ</field>
<field
name="python_code"
>buffer.minimum_order_quantity &lt; buffer.qty_multiple</field>
<field name="severity">2_mid</field>
</record>
<record
id="ddmrp_warning_definition_moq_and_procure_min_qty"
model="ddmrp.warning.definition"
>
<field name="name">Minimum Procure Batch bigger than MOQ</field>
<field
name="python_code"
>buffer.minimum_order_quantity &lt; buffer.procure_min_qty</field>
<field name="severity">2_mid</field>
</record>
<record id="ddmrp_warning_definition_adu_zero" model="ddmrp.warning.definition">
<field name="name">ADU is zero</field>
<field name="python_code">buffer.adu == 0.0</field>
<field name="severity">1_low</field>
</record>
</odoo>
23 changes: 23 additions & 0 deletions ddmrp_warning/data/ir_cron.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1">
<record
id="ir_cron_ddmrp_warning_calculation_scheduler_action"
model="ir.cron"
forcecreate="True"
>
<field name="name">DDMRP Buffer Warning calculation</field>
<field name="state">code</field>
<field name="user_id" ref="base.user_root" />
<field name="interval_number">1</field>
<field name="interval_type">days</field>
<field name="numbercall">-1</field>
<field name="priority">5</field>
<field
name="mutually_exclusive_cron_ids"
eval="[(6, 0, [ref('ddmrp.ir_cron_ddmrp_calculation_scheduler_action'),])]"
/>
<field eval="False" name="doall" />
<field name="model_id" ref="ddmrp.model_stock_buffer" />
<field name="code">model.cron_generate_ddmrp_warnings(True)</field>
</record>
</odoo>
Loading

0 comments on commit 404bb1e

Please sign in to comment.