Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Info

Backup your files before makes changes!

In production scenario: Changes to "Application.cfg" should always be sent to our Service desk to get included in our version control and pushed to all the customers mobile devices.

...

In <Images> section, add a new line for the new image "mainmenupositiveadjustment.png":

 <image id

Code Block
languagexml
<image id="mainmenupositiveadjustment"

...

 fileName="mainmenupositiveadjustment.png"/>


  In <menuConfiguration><menuItems> add a new menuitem for postive adjustments. We this example we reuse displayName from negative adjustments, but new menuitem must have a new (unique) id.

 <menuItem id


Code Block
languagexml
<menuItem id="PosAdjustQty"

...

 displayName="@{MainMenuAdjustQuantity}"

...

 icon="mainmenupositiveadjustment"/>



  Copy existing page id="AdjustQty" to new page PosAdJustQty, change "id", "icon" and (Registration)"type".

 

Code Block
languagexml
	<page id="PosAdjustQty" type="UnplannedItemRegistration" icon="mainmenupositiveadjustment">
      <title defaultValue="@{PageAdjustQuantityTitle}"/>
      <unplannedItemRegistrationConfiguration type="AdjustQuantity">
        <header configurationKey="AdjustQuantityHeader"/>
      </unplannedItemRegistrationConfiguration>
	</page>



Upload your modified application.cfg to the mobile device.

...