Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Problem

My warehouse workers can select the item to pick from the screen, but I want to force them to scan items not select them on the screen, to reduce the possibility of pick-errors 

Solution

Android


Add the highlighted to PickLines in application.cfg


<page id="PickLines" type="OrderLines" icon="mainmenupick">
<title defaultValue="@{PagePickOrderLinesTitle}"/>
<orderLinesConfiguration forceScanToSelect="true">
<service id="Pick"/>
<list listId="OrderLines"/>
<viewRegistrations title="@{OrderLinesRegistrationMenuItem}" navigateTo="ViewRegistrations" enabled="true"/>
<deleteOrderRegistrations title="@{OrderLinesDeleteAllOrderRegistrationsMenuItem}" enabled="true"/>
<totePicking allowManualSelection="true">
<currentTote show="true" useLabelPrefix="false"/>
</totePicking>
<scanToSelectBehaviour gs1SearchTerm="Item" behaviour="Auto"/>
</orderLinesConfiguration>
</page>



Windows Handheld Embedded


Add the highlighted line to UserRole.xml : 


<!-- Pick Order Lines -->
<tasklet name="PickOrderLines" text="Pick order lines" icon="pick.bmp" type="TaskletFactory.WMS.Tasklets.PickOrderLines, TaskletFactory.WMS.Tasklets.OrderLines">
<configuration>
<appSettings>
<add key="registrationsAction" value="orderLineMenuRegistrations"/>
<add key="header1LabelText" value="Header1:"/>
<add key="header1DataColumn" value="DisplayLine1"/>
<add key="header2LabelText" value="Header2:"/>
<add key="header2DataColumn" value="DisplayLine2"/>
<add key="performAutomatedTestScenario" value="false"/>
<add key="exitMenuIcon" value ="ExitMenu.bmp"/>
<add key="showAddLineMenu" value="false"/>
<add key="showSelectLineMenu" value="false"/>


  • No labels