Repository
OCA/stock-logistics-warehouse · module folder · Try on Runboat
Module version
1.0.0
Category
Uncategorized
Folder size
0.28 MB
License
AGPL-3
Application
No
Auto-installable
No
Website
https://github.com/OCA/stock-logistics-warehouse
Last tracking update
2026-08-07 08:42:51
Authors
Camptocamp, ACSONE SA/NV, Odoo Community Association (OCA), BCIM
Maintainers
Camptocamp, ACSONE SA/NV, Odoo Community Association (OCA), BCIM
Committers
Sébastien Alix, OCA-git-bot, oca-ci
Odoo dependencies
Python dependencies
None
System dependencies
None
Required by
stock_location_fill_state, stock_storage_type
Description
This module allows to access incoming and ougoing pending moves from
a stock location.

- Stock Location view:

![Pending Moves](../static/description/pending_moves.png)

- Detail grouped per origin location:

![Detailed view](../static/description/pending_moves_detail.png)

Code Analysis

Views touched (1)
XML IDNameModelTypeStatus
stock_location_form_view stock.location form Inherits stock.view_location_form
HTTP endpoints (0)

No HTTP endpoints found for this module.

Models touched (1)

New fields (4)
  • pending_in_move_ids One2many → stock.move
    domain=PENDING_MOVE_DOMAIN help='Technical field: the pending incoming stock moves for the location' args: 'stock.move', 'location_dest_id'
  • pending_in_move_line_ids One2many → stock.move.line
    domain=PENDING_MOVE_DOMAIN help='Technical field: the pending incoming stock move lines for the location' args: 'stock.move.line', 'location_dest_id'
  • pending_out_move_ids One2many → stock.move
    domain=PENDING_MOVE_DOMAIN help='Technical field: the pending outgoing stock moves for the location' args: 'stock.move', 'location_id'
  • pending_out_move_line_ids One2many → stock.move.line
    domain=PENDING_MOVE_DOMAIN help='Technical field: the pending outgoing stock move lines for the location' args: 'stock.move.line', 'location_id'
Public methods (2)
  • action_show_pending_stock_move_lines(self)
    Display all pending stock move lines (outgoing and incoming) for the location.
  • action_show_pending_stock_moves(self)
    Display all pending stock moves (outgoing and incoming) for the location.

Loading…