Repository
OCA/stock-logistics-release-channel · module folder · Try on Runboat
Module version
1.0.0
Category
Uncategorized
Folder size
0.06 MB
License
AGPL-3
Application
No
Auto-installable
No
Website
https://github.com/OCA/stock-logistics-release-channel
Last tracking update
2026-08-07 08:43:05
Authors
ACSONE SA/NV, Odoo Community Association (OCA), BCIM
Maintainers
ACSONE SA/NV, Odoo Community Association (OCA), BCIM
Committers
Ruchir Shukla, OCA-git-bot, oca-ci
Odoo dependencies
Python dependencies
requests, openupgradelib
System dependencies
None
Required by
None
Description
This module is used to plan the shipment advices for released pickings
in a stock release channel.

As this is the base module, it only provides a simple planning mode. All
the ready pickings of a release channel are grouped together to result
in a single shipping advice per warehouse.

Code Analysis

Views touched (6)
XML IDNameModelTypeStatus
shipment_advice_form_view shipment.advice form Inherits shipment_advice.shipment_advice_view_form
shipment_advice_planner_form_view shipment.advice.planner form Inherits shipment_advice_planner.shipment_advice_planner_form_view
shipment_advice_search_view shipment.advice search Inherits shipment_advice.shipment_advice_view_search
shipment_advice_tree_view shipment.advice tree Inherits shipment_advice.shipment_advice_view_tree
stock_release_channel_form_view stock.release.channel form Inherits stock_release_channel.stock_release_channel_form_view
stock_release_channel_kanban_view stock.release.channel kanban Inherits stock_release_channel.stock_release_channel_kanban_view
HTTP endpoints (0)

No HTTP endpoints found for this module.

Models touched (3)

New fields (1)
  • release_channel_id Many2one → stock.release.channel
    check_company=True comodel_name='stock.release.channel' string='Release Channel'
Public methods (0)

No public methods.

New fields (2)
  • picking_to_plan_ids Many2many
    domain='[("can_be_planned_in_shipment_advice", "=", True),("release_channel_id", "=?", release_channel_id),]'
  • release_channel_id Many2one → stock.release.channel
    comodel_name='stock.release.channel' string='Release Channel'
Public methods (0)

No public methods.

New fields (6)
  • can_plan_shipment Boolean
    compute='_compute_can_plan_shipment'
  • dock_id Many2one → stock.dock
    comodel_name='stock.dock' domain='[("warehouse_id", "=", warehouse_id)]'
  • picking_to_plan_ids Many2many → stock.picking
    comodel_name='stock.picking' compute='_compute_picking_to_plan_ids'
  • shipment_advice_ids One2many → shipment.advice
    check_company=True comodel_name='shipment.advice' inverse_name='release_channel_id' readonly=True string='Shipment Advices'
  • shipment_planning_method Selection
    default='none' required=True selection=[('none', 'None'), ('simple', 'Simple')]
  • warehouse_id Many2one
    inverse='_inverse_warehouse_id'
Public methods (2)
  • button_plan_shipments(self)
  • button_show_shipment_advice(self)

Loading…