Versions Compared

Key

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

...

Examples of Second Screen Animation Setup

Info

For To implement the purpose of scenario implementation, use either dish codes, or category codes from the "Menu – Dish classifications" directoryMenu > Menu Classifications reference.

Task No.1.: When adding a main dish course to the order, start displaying dishes from another category on the second screen.

For example, when a dish from the "Hot meals" category is sold, start displaying dishes from the "Desserts" category.Task No.1 solution

Solution:
First, make necessary settings in the SSConfig.xml file, specifically in the SceneList group ( a set of scenes to be displayed )should be specified in the SceneList group. In our case, we need to display the " Desserts " category when selling dishes from the " Hot meals " category.
For this purpose, create a new scene (written in one line), for example:

Code Block
<Scene Id="{4}" Type="Gallery" Name="DESSERTS"

...

 DishGroup="6" Description="" Price="" Currency="" Background="Advert/Background.png" PriceSubstrate="Advert/Price.png" Padding="40" NameFontSize="72" NameFontColor="0xfff9d4" DescriptionFontSize="20" DescriptionFontColor="0xf3d7b7" PricePadding="30" PriceFontSize="90" PriceFontColor="0xfff9d4" CurrencyFontSize="60" CurrencyFontColor="0xfff9d4" Effect="2" Animation="1" NameAlign="center" DescriptionAlign="center" PriceAlign="right" Slogan="" SloganAlign="center" SloganX="0" SloganY="0" SloganWidth="0" SloganHeight="0" SloganBackground="" SloganFontSize="0" SloganFontColor="0xFFFFFF" SloganPadding="0">

...


  <SloganCase>
    <CaseItem Category="6" Value="Taste the newest dessert!" />

...


    <CaseItem Category="14" Value="Taste the newest pie!" />

...


   </SloganCase>

...


</Scene>

The DishGroup parameter stands for the group that contains dishes to be demonstrated. It should match the category code from the "Dish classifications" directoryMenu Classifications reference.

Further, the group of parameters Mode_3_2 ModeId="3_2" is responsible for the algorithm of displaying scenes when adding dishes to and order, i.e.:

Code Block
<Mode_3_2 ModeId="3_2"

...

>
<Scenario Id="{2}" With="5" Name="Order a dessert..."

...

>
<ShowScene Id="{4}"/

...

>
</Scenario>
<Scenario Id="{1}" Name="Scenario 1"

...

>
<ShowScene Id="{1}"/

...

>
<ShowScene Id="{2}"/

...

>
<ShowScene Id="{3}"/

...

>
</Scenario>

The behavior algorithm is executed from top - to - bottom; if . If the With=category_code (i.e. dish code from a the required category) condition is fulfilled, then the scenario with Id=4 is executed, if not — the program executes everything below it.

Task No.2. : The following scenario has to should be implemented:
1) To display dishes from category 6 until a corresponding dish is added
2) if If a dish from category 6 has been added, to display dishes from category 9
3) if If dishes from categories 6 and 9 have been added, to display dishes from category 7
4) if If dishes from categories 6, 9, and 7 have been added, to display dishes from category 8, for example, etcand so on.
Task No.2 solution
Solution:
SSConfig.xml should contain the following scenario:

Code Block
<SecondScreen>

...



<SceneList>

...



...cut...

...



<Scene Id="{6}" Type="Gallery" Name="Desserts" DishGroup="6" AltDishName="Our desserts"...cut... />

...



<Scene Id="{7}" Type="Gallery" Name="Burgers" DishGroup="5" AltDishName="Our burgers" ...cut... />

...



<Scene Id="{8}" Type="Gallery" Name="Fish" DishGroup="7" AltDishName="Our fish" ...cut... />

...



<Scene Id="{9}" Type="Gallery" Name="Beverages" DishGroup="4" AltDishName="Our beverages" ...cut... />

...



</SceneList>

...



<ScenarioList>

...



<!--...cut...-->

...



<Mode_3_2 ModeId="3_2">

...



<Scenario Id="{1}" With="5,7,4" Without="6" Comment="there are Burgers(5) AND Fish(7) AND Beverages(4), but no Dessert(6), display cat. Dessert(6)">

...



<ShowScene Id="{6}"/>

...



</Scenario>

...



<Scenario Id="{2}" With="5,7" Comment="there are Burgers(5) AND Fish(7), but no Beverages(4), display cat. BEVERAGES(4)">

...



<ShowScene Id="{9}"/>

...



</Scenario>

...



<Scenario Id="{3}" With="5" Without="7" Comment="there is a dish from category Burgers(5), but no Fish(7), display category Fish(7)">

...



<ShowScene Id="{8}"/>

...



</Scenario>

...



<Scenario Id="{4}" Without="5" Comment="there are no dishes from category Burgers(5), display dishes from category Burgers(5)">

...



<ShowScene Id="{7}"/>

...



</Scenario>

...



</Mode_3_2>

...



<!--...cut...-->

...



</ScenarioList>

...



</SecondScreen>

System operation

Launch

  1. Start the RK7 r_keeper cash desk as usual. If secscr7.dll has been loaded to the cash desk, RK7 r_keeper 7 will call for SecondScreen.dll at startup. secscr7.dll is the 'Second Screen with XML interface' driver file at the cash station. It will be preloaded to the station.
  2. SecondScreen.dll triggers SecondScreen.exe.

Configuring

...

Second Screen Remotely on Another PC

If it is implied that the second screen is launched on a station (PC2), meanwhile the cash desk is located on another station (PC1), perform the following steps as described below.:

  1. Folders with images should be available on both PCs, and their paths should match (the . The paths to the win\media directory should also match completely).
  2. On PC2, remove "Second Screen with XML Interface" from the device list in the manager sectionstation.
  3. On PC2, specify the IP address of PC1 for the Settings element in the file Host attribute of the [RK7 path]\bin\win\media\Settings.xml ("Settings" element, "Host" attribute). file
  4. Restart PC2.
  5. After PC2 startup, launch manually the file [RK7 path]\bin\win\media\SecondScreen.exe (you file. You can also create a shortcut in the autoloading menu, so that you would not have to do it manually every time).
  6. On PC1, configure the Second Screen as usual, and then delete or rename the file the [RK7 path]\bin\win\media\SecondScreen.exe.exe file
  7. Restart PC1.

If you need to launch a second screen on a PC without the manager station (PC2), create the same path to the win\media directory, as on PC1, and then copy the "media" folder there from PC1. After that, perform the actions as described above.Note

Info

Geometric characteristics (height, width, upper left corner coordinates) of SecondScreen.exe on PC2 should be specified in SecondScreen.ini, located on PC1 in the cash station folder.

Reports

  1. You can review the Service Quality Index, if it is used in RK7 reports (available in the "Bills" r_keeper 7 reports. Available in the Receipts data set , ID=14).
  2. The quality index can take the following two values: good=1, bad=5.
  3. You can find the quality index in RK7 the r_keeper 7 database, table [PRINTCHECKS] table, field [SQI] field.

Quality

...

Index

  1. After the order is paid, you can

    provide a feedback (corresponding buttons are available)

    get feedback — there are special buttons for it.
    Configure the corresponding buttons in the \media\skin.xml file, in the following block:

    Code Block
    <QualityServise Enabled="1" Text="ASSESS OUR WORK" FontSize="32" FontColor="0xfff9d4" Image="qs_image.png" BtnNegativeA="qs_negative_a.png" BtnNegativeB="qs_negative_b.png" BtnPositiveA="qs_positive_a.png" BtnPositiveB="qs_positive_b.png"/>

    Image Added

  2. After the data order is assessedrated, it the data will be written into the database, and the user will receive the following message.:
    Image Added
  3. You can print SQI or its associated text in virtually almost any document (in . In this case, it is usually necessary to edit the relevant corresponding layout).