Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[16.0][ADD] shipment_advice_planner #88

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions setup/shipment_advice_planner/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
86 changes: 86 additions & 0 deletions shipment_advice_planner/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
=======================
Shipment Advice Planner
=======================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--transport-lightgray.png?logo=github
:target: https://github.com/OCA/stock-logistics-transport/tree/16.0/shipment_advice_planner
:alt: OCA/stock-logistics-transport
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/stock-logistics-transport-16-0/stock-logistics-transport-16-0-shipment_advice_planner
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/webui/builds.html?repo=OCA/stock-logistics-transport&target_branch=16.0
:alt: Try me on Runboat

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

This module is used to plan ready transfers in shipment advices.

As this is the base module, it provides only a simple
planning mode. Transfers are grouped to have a single shipment advice by warehouse.

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module, you need to:

#. Go to Inventory>Operations>transfers.
#. Select transfers to plan.
#. Click on "Plan shipments".

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-transport/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
`feedback <https://github.com/OCA/stock-logistics-transport/issues/new?body=module:%20shipment_advice_planner%0Aversion:%2016.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
~~~~~~~

* ACSONE SA/NV

Contributors
~~~~~~~~~~~~

* Souheil Bejaoui <souheil.bejaoui@acsone.eu>
* Laurent Mignon <laurent.mignon@acsone.eu>

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.

This module is part of the `OCA/stock-logistics-transport <https://github.com/OCA/stock-logistics-transport/tree/16.0/shipment_advice_planner>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
3 changes: 3 additions & 0 deletions shipment_advice_planner/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from . import models
from . import wizards
from .hooks import pre_init_hook
19 changes: 19 additions & 0 deletions shipment_advice_planner/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Shipment Advice Planner",
"summary": """This module is used to plan ready transfers in shipment advices.""",
"version": "16.0.1.0.0",
"license": "AGPL-3",
"author": "ACSONE SA/NV,BCIM,Odoo Community Association (OCA)",
"maintainers": ["jbaudoux"],
"website": "https://github.com/OCA/stock-logistics-transport",
"depends": ["shipment_advice"],
"data": [
"security/shipment_advice_planner.xml",
"wizards/shipment_advice_planner.xml",
],
"demo": [],
"pre_init_hook": "pre_init_hook",
}
35 changes: 35 additions & 0 deletions shipment_advice_planner/hooks.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
import logging

from odoo.tools import sql

_logger = logging.getLogger(__name__)


def pre_init_hook(cr):
"""This hook will initialize the computed columns that are added in the
module. This is required to avoid the compute methods to be called
by the orm during the module installation."""
if not sql.column_exists(cr, "stock_picking", "can_be_planned_in_shipment_advice"):
_logger.info(
"Creating column can_be_planned_in_shipment_advice into stock_picking"
)
cr.execute(
"""
ALTER TABLE stock_picking ADD COLUMN can_be_planned_in_shipment_advice boolean;
"""
)
cr.execute(
"""
UPDATE stock_picking
SET can_be_planned_in_shipment_advice = true
FROM stock_picking_type as spt
WHERE
planned_shipment_advice_id is null
AND state = 'assigned'
AND spt.id = stock_picking.picking_type_id
AND spt.code = 'outgoing'
"""
)
_logger.info(f"{cr.rowcount} rows updated in stock_picking")
1 change: 1 addition & 0 deletions shipment_advice_planner/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import stock_picking
51 changes: 51 additions & 0 deletions shipment_advice_planner/models/stock_picking.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import api, fields, models


class StockPicking(models.Model):
_inherit = "stock.picking"

can_be_planned_in_shipment_advice = fields.Boolean(
compute="_compute_can_be_planned_in_shipment_advice",
search="_search_can_be_planned_in_shipment_advice",
)

@api.model
def _get_compute_picking_to_plan_ids_depends(self):
return ["planned_shipment_advice_id", "state", "picking_type_code"]

@api.depends(lambda m: m._get_compute_picking_to_plan_ids_depends())
def _compute_can_be_planned_in_shipment_advice(self):
for rec in self:
rec.can_be_planned_in_shipment_advice = (
not rec.planned_shipment_advice_id
and rec.state == "assigned"
and rec.picking_type_code == "outgoing"
)

def _search_can_be_planned_in_shipment_advice(self, operator, value):
if (operator == "=" and value) or (operator == "!=" and not value):
return [
("planned_shipment_advice_id", "=", False),
("state", "=", "assigned"),
("picking_type_code", "=", "outgoing"),
]
return [
"|",
"|",
("planned_shipment_advice_id", "!=", False),
("state", "!=", "assigned"),
("picking_type_code", "!=", "outgoing"),
]

def init(self):
self.env.cr.execute(
"""
CREATE INDEX IF NOT EXISTS
stock_picking_can_be_planned_in_shipment_advice_index
ON stock_picking(can_be_planned_in_shipment_advice)
WHERE can_be_planned_in_shipment_advice is true;
"""
)
2 changes: 2 additions & 0 deletions shipment_advice_planner/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Souheil Bejaoui <souheil.bejaoui@acsone.eu>
* Laurent Mignon <laurent.mignon@acsone.eu>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

JE to be added here?

4 changes: 4 additions & 0 deletions shipment_advice_planner/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
This module is used to plan ready transfers in shipment advices.

As this is the base module, it provides only a simple
planning mode. Transfers are grouped to have a single shipment advice by warehouse.
5 changes: 5 additions & 0 deletions shipment_advice_planner/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
To use this module, you need to:

#. Go to Inventory>Operations>transfers.
#. Select transfers to plan.
#. Click on "Plan shipments".
sbejaoui marked this conversation as resolved.
Show resolved Hide resolved
16 changes: 16 additions & 0 deletions shipment_advice_planner/security/shipment_advice_planner.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2023 ACSONE SA/NV
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<odoo>

<record model="ir.model.access" id="shipment_advice_planner_access_user">
<field name="name">shipment.advice.planner access user</field>
<field name="model_id" ref="model_shipment_advice_planner" />
<field name="group_id" ref="stock.group_stock_user" />
<field name="perm_read" eval="1" />
<field name="perm_create" eval="1" />
<field name="perm_write" eval="1" />
<field name="perm_unlink" eval="1" />
</record>

</odoo>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading