/
Kiosk Images Customization (Up to V1533)

Kiosk Images Customization (Up to V1533)

This article is guide to setting up and customizing kiosk images and visuals for versions up to V1533. For a guide on version v1533 and up, please refer to Kiosk Images Customization - (1533 and Higher - Volante V6).

Instructions


To customize the images used in the kiosk, place the customized version of the image in the folder _C:\volantev4\chezTesoroGraphics\customFiles\customImages\kiosk_. 

To replace any of these images in the kiosk, simply place the file with the same name as the file you are replacing into the folder _C:\volantev4\chezTesoroGraphics\customFiles\customImages\kiosk_.

Do not replace the file of the original image. You will need to restart the POS for it to take effect.

  • The originals are found at c:\volanteV4\chezTesoro\posMain\posGUI\kiosk\images
     

Different Languages

If you want to customize the graphics for a different language, ie) Spanish with Local sp.

Create new files and put it in _C:\volantev4\chezTesoroGraphics\customFiles\customImages\kiosk\

ie)

  • idleBackground_es.gif or .png
  • mainBackground2_es.gif or png
  • orderComplete_es.gif or png

Menu Setup


  • Verify graphics are in c:\volanteV4\chezTesoroGraphics\customFiles\customImages\kiosk
  • Note: BYOB folder contains a copy for demo purposes and can be copied from this folder to the kiosk folder

The kiosk can use the existing Quick Menus to dictate what is displayed to the customer.

  • Tabs with no content are not shown in the kiosk.
  • If there is only one tab available, then only the Quick Menu Items of that particular tab will show at all times.

Example of a Quick Menu set and its corresponding Kiosk screens:




Applies to

Volanté: Prior to 1533

Hardware: Kiosk

  • To assign a picture to a Category, double click the Quick Menu Set that corresponds to the category to bring up the Edit Quick Menu Set dialog.
  • Activate the checkbox Stay on quick menu set upon adding item in Kiosk mode if you want user to return to the selected quick menu set after adding an item to an order (rather than going back to the screen showing all quick menu sets).

 

  • To assign a picture to a Menu Item, find the item in Menu Items under Menu Setup. Item Icon 1 is used for the Quick Menu Item screen.
  • The text in the Notes field as well as Item Icon 2 are used on the item panel when the user selects an item (see below).



  • To assign a picture to an Option Item, find the item in Options under Menu Setup. Set Item Icon 1.

Idle Screen


Components

Review Order Screen (Table-service Mode Only)


Components

Menu Screen


Components

Item Screen


Components

Options Screen


Components

Product Lookup Screen


Components

Edit Order Screen


Components

Confirmation Screen - Table-Service Mode


Components

Confirmation Screen - Cashier Mode


Components

Payment Screen (Cashier Mode Only)


Components

Transaction Complete Screen (Cashier Mode Only)


Components

Info Dialog & Confirm Dialog


Components

Error Dialog & Timeout Dialog


Components

How to Load Pictures into the Database


  • To get all image 1 pictures from MENU_ITEM_DETAILS
    • select menuItemName,image,storeId from menu_item_details MID, pictures P where MID.isDeleted = 0 and P.id_=image and image is not null and storeID = 150 and menuItemId in (select menuItemId from MENU_ITEMS_CATEGORIES_GROUPS2 where groupId = 1 and storeId = 150)
  • To get all image 2 pictures from MENU_ITEM_DETAILS
    • select menuItemName,image2,storeId from menu_item_details MID, pictures P where MID.isDeleted = 0 and P.id_=image2 and image2 is not null and storeID = 150 and menuItemId in (select menuItemId from MENU_ITEMS_CATEGORIES_GROUPS2 where groupId = 1 and storeId = 150)
  • To get Quick Menu Set Pictures
    • select quickMenuName,isKioskStayOnQMSet,image from quick_menu_sets, pictures where image=pictures.id_ and image is not null and quick_menu_sets.isDeleted = 0 and storeId = 150
  • To get list of Pictures used

    select * from pictures where
    id_ in (select image from menu_item_details M, pictures P where M.isDeleted = 0 and P.id_=image and image is not null and storeID = 150 and menuItemId in (select menuItemId from MENU_ITEMS_CATEGORIES_GROUPS2 where groupId = 1 and storeId = 150))
    or id_ in (select image2 from menu_item_details M, pictures P where M.isDeleted = 0 and P.id_=image2 and image2 is not null and storeID = 150 and menuItemId in (select menuItemId from MENU_ITEMS_CATEGORIES_GROUPS2 where groupId = 1 and storeId = 150))
    or id_ in (select image from quick_menu_sets, pictures where image=pictures.id_ and image is not null and quick_menu_sets.isDeleted = 0 and storeId = 150)
    

 


 

Related content