Versions Compared

Key

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

Procedure

  1. Set up Configure online data collectiongathering. For more details see article: Configuring POS servers online data collection. Check on the reports that the Online Data Gathering article. Check if there is data on the open shift .in the reports.
  2. Go to Options > Customization > Extended properties and In the "Settings - Settings - Extended properties" directory create extended properties for the restaurant, :
    Image Added
    1. Click on three dots Image Addedin the
    "List
    1. end of
    Types: System -> Restaurant" property:

Figure 1. Extended properties

...

    1. the Types List line
    2. Click the Add reference to Item button
    3. Select the Restaurant on the Class Infos tab and click OK.
      Image Added

      Info

      The system name of all extended properties, except IPAddress, can be arbitrary

...

    1. . It is only necessary to know

...

    1. the extended properties

...

    1. ID

...

    1. .

...

    1. The specified extended properties

...

    1. of the restaurant:
      Image Added

  1. Amend the script (\custhtml\sql\script.

    sql

    sql from archive 1):

...

  1. Code Block
    languagesql
    firstline1
    SET @COUNTFIELD = 1000016; --RESTAURANT'S CHECK COUNT PLAN EXTRA FIELD;

...

  1.                          ;; Monhly plan of checks
    SET @AMOUNTFIELD = 1000013; --RESTAURANT'S AMOUNT PLAN EXTRA FIELD;                                  ;; Monthly plan

...

  1.  of revenue
     
    SET @FOODCLASS = 2 * 256;--CHOSEN FOOD CLASSIFICATION (POTATO/ICECREAM);                         ;;

...

  1.  Dishes classification id. In our example, it is 512. Specify only in the form 256 * Х, where Х =  dishes classification id / 256
    SET @FOODCAT1 = @FOODCLASS + 1;               ;; id of category # 1 in classification 
    SET @FOODCAT2 = @FOODCLASS + 2;               ;; id of category # 2 in calssification  
    SET @FOODCAT3 = @FOODCLASS + 3;               ;; id of category # 3 in classification  
    SET @FOODCAT4 = @FOODCLASS + 4;               ;; id of category # 4 in classification  
    SET @FOODCAT5 = @FOODCLASS + 5;               ;; id of category # 5 in classification  
    SET @FOODFIELD1 = 1000014;                    ;;  Plan for category № 1     
    SET @FOODFIELD2 = 1000015;                    ;;  Plan for category № 2
    SET @FOODFIELD3 = 1000018;                    ;;  Plan for category № 3
    SET @FOODFIELD4 = 1000019;                    ;;  Plan for category № 4
    SET @FOODFIELD5 = 1000020;                    ;;  Plan for category № 5


    Note
    titleImportant

    At

SET @FOODCAT1 = @FOODCLASS + 1;;; id of category # 1 in the classification

SET @FOODCAT2 = @FOODCLASS + 2;;; id of category # 2 in the classification

SET @FOODCAT3 = @FOODCLASS + 3;;; id of category # 3 in the classification

SET @FOODCAT4 = @FOODCLASS + 4;;; category id # 4 in the classification

SET @FOODCAT5 = @FOODCLASS + 5;;; id of category # 5 in the classification

SET @FOODFIELD1 = 1000014;;; Plan for category # 1

SET @FOODFIELD2 = 1000015;;; Plan for category # 2

SET @FOODFIELD3 = 1000018;;; Plan for category # 3

SET @FOODFIELD4 = 1000019;;; Plan for category # 4

SET @FOODFIELD5 = 1000020;;; Plan for category # 5

...

  1. the moment, the script is unique for each database, since it is necessary to specify the IDs of categories and extended properties from the

...

  1. r_keeper 7 manager station in the scripts.


  2. Execute

    the script

    script.sql

    on

    for the current SQL

    -database (using

    database. We recommend to use SQL Management Studio

    is recommended);

    .

    Note
    titleImportant

...

  1. After executing

...

  1. script.sql

...

  1. , be sure to execute the

...

  1. RK7SQLPROC_REP_CALC stored procedure. This procedure should be added to the scheduler and run every time after the

...

  1. common shift is closed.

...

  1. Image Added

  2. In the properties of the reference (reports) server, specify manager station, go to Options > OLAP reports > Reporting servers and specify the HTTP port and address (the "Settings - OLAP reports - Report servers" reference book in the "HTTP Server" section).

Note: it is recommended to read the article http://tracker.ucs.ru:8080/redmine/projects/-helpdesk-/wiki/R-keeper-7-xmlinterface-ru.

Figure 4. HTTP Port of the directory/report server

  1. in the reference or report server properties. Restart the server to apply the changes.
    Image Added
  2. Open the manager station and fill in the IPAddressextended propertyIn the manager station, fill in the extended property IPAddress, which contains the IP address of the report server (. In this way you can change the address of the server);.
  3. In the folder with the report server .exe file, a folder /custhtmlis created, into which files from archive 1are placed (create the /custhtml folder and place the files from archive 1 to it, except for the folder with scripts);
  4. In

    A script is created in

    the manager station,

    which is bound to a custom operation, which in turn is

    the script should be created. This script is linked to the user operation, bound to a button,

    the button

    which is

    posted

    added to the selector;
    The script is as follows:

...

  1. Code Block
    languagedelphi
    firstline1
    procedure ProcessOperation1000489(Parameter:

...

  1.  integer);

...

  1. 
    var

...

  1. 
    s:string;

...

begin

...

  1. 
    begin
       s:= TRK7Restaurant(RK7.CashGroup.MainParent).genIPAddress;

...

  1. 
       GUI.CmdExec('fsWeb2.exe "https://'+s+':8081/custhtml/overall1.html"');

...

  1. 
    end;

...


  1. Copy the fsWeb2.exe and *.dll files from archive 2;
  2. By When clicking on the created button at the checkoutcash station, fsweb2.exe is launched, which demonstrates the reports.

Figure 6. Example of how reports work

...

Attached Files

  1. custhtml.7z
  2. fsweb2.7z

...