TIP: You can type at any time to perform a new search.
Mobile App - Picking
mobile_app_picking · OCA/stock-logistics-barcode
- Repository
- OCA/stock-logistics-barcode · module folder · Try on Runboat
- Module version
- 1.0.0
- Category
- Stock
- Folder size
- 0.36 MB
- License
- AGPL-3
- Application
- Yes
- Auto-installable
- No
- Website
- https://www.odoo-community.org
- Last tracking update
- 2026-08-07 07:24:58
- Authors
- Odoo Community Association (OCA), GRAP
- Maintainers
- Odoo Community Association (OCA), GRAP
- Committers
- GitHub, Sylvain LE GAL, OCA-git-bot, oca-travis
Code Analysis ⓘ
Views touched (2)
| XML ID | Name | Model | Type | Status |
|---|---|---|---|---|
view_stock_picking_form |
stock.picking | form | Inherits stock.view_picking_form | |
view_stock_picking_type_form |
stock.picking.type | form | Inherits stock.view_picking_type_form |
HTTP endpoints (1)
| Route(s) | Handler | Auth | Type | Methods | Flags |
|---|---|---|---|---|---|
/mobile_app_picking |
Home.index |
none | http | ALL |
Models touched (3)
New fields (0)
No new fields.
Public methods (7)-
confirm_picking(self, params)@api.modelConfirm a given picking :param params: { 'picking': picking_vals, 'action': string, } action can : - 'immediate_transfer' if no quantity has been set - 'with_backorder', to create a backorder - 'without_backorder', to cancel the backorder -
get_custom_fields_list(self)@api.model -
get_moves(self, params)@api.modelReturn moves of a given picking. :param params: {'picking': picking_vals} :return: [move_1_vals, move_2_vals, ...] .. seealso:: _export_picking() for picking vals details _export_move() for move vals details -
get_picking_types(self)@api.modelReturn Picking Types available for the Mobile App :return: [picking_type_1_vals, picking_type_2_vals, ...] .. seealso:: _export_picking_type() for picking type vals details. -
get_pickings(self, params)@api.modelReturn pickings of a given picking type :param params: {'picking_type': picking_type_1_vals} :return: [picking_1_vals, picking_2_vals, ...] .. seealso:: _export_picking_type() for picking type vals details _export_picking() for picking vals details -
set_quantity(self, params)@api.modelSet done quantity for a given move. :param params: {'move': move_vals, 'quantity': integer} -
try_validate_picking(self, params)@api.modelsimulate the click on "Validate" button, to know if backorder is possible, etc. :param params: {'picking': picking_vals}
New fields (1)
-
mobile_availableBooleanreadonly=Truerelated='picking_type_id.mobile_available'store=False
-
open_mobile_app_url(self)@api.multi
New fields (3)
-
mobile_availableBooleanhelp='Check this box if you want to make this picking type visible on the Mobile App'string='Available on Mobile' -
mobile_backorder_createBooleandefault=Truehelp='Check this box if you want that confirming a picking on mobile app generate a backorder by default.'string='Create Backorder' -
mobile_product_field_idsMany2many → ir.model.fieldscomodel_name='ir.model.fields'domain=[('model', 'in', ['product.product'])]string='Product Fields'
No public methods.