Sends a pick event to the server.
Identifier: send_pick_event
pick_event
.
The event tag for this event is pick_event
.
connection_timeout
).Minimal
<pick_order_request id="send_pick_event" pick_event="CANCEL_PICK_GROUP" />
All options
<send_pick_event id="send_pick_event" pick_event="CANCEL_PICK_GROUP" connection_timeout="20" server_communication="SYNCHRONOUS"> <list name="properties" listType="NAMED"> <param name="reason" type="string">DAMAGE</param> </list> </send_pick_event>
Sets the selected pick group in the pick order to the next one.
Identifier: next_pick_group
The event tag for this event is next_pick_group
.
Minimal
<next_pick_group id="go_to_next_step"/>
All options
<next_pick_group id="go_to_next_step" type="next_pick_group"> <param name="mark_as_finished" type="bool">true</param> <param name="ignore_status" type="string">CANCELED</param> </next_pick_group>
Sets the selected pick group in the pick order to the previous one.
Identifier: previous_pick_group
The event tag for this event is previous_pick_group
.
<previous_pick_group id="go_to_previous_group"/>
Moves the selected pick group to a different position in the pick order. By default, it is moved to the end.
Identifier: move_pick_group
Note: This action only moves a pick group locally on the client device. Nothing is communicated to the server. Therefore, please use it in conjunction with the Send Pick Event action.
If you move a Pick Group to a position prior to the current one, it will remain active. Otherwise, the following Pick Group becomes active.
The event tag of this event is move_pick_group
.
Minimal
<move_pick_group id="move_step"/>
All options
<move_pick_group id="move_step"> <param name="position" type="long">10</param> //moves PickGroup to position 10 </move_pick_group>
Cancels the current pick group and moves the next group in the list to the active one. If there is none, the pick order is finished.
Identifier: cancel_pick_group
Note: This action only sets the pick group to be cancelled locally on the client device. Nothing is communicated to the server. To cancel it on the server side, please use it in conjunction with the Send Pick Event action.
The event tag of this event is cancel_pick_group
.
<cancel_pick_group id="cancel" />
Cancels the current pick order and removes it from the client's device.
Identifier: cancel_pick_order
Note: This action cancels the pick group locally on the client device. Nothing is communicated to the server. To cancel the pick order on the server, use it in conjunction with the Send Pick Event action.
The event tag of this event is cancel_pick_order
.
<cancel_pick_order id="cancel" />