Procedure
Figure 1. Extended properties
Note: the system name of all extended properties, except IPAddress, can be arbitrary, the main thing is to know the ID of the extended properties.
Note: the system name of all extended properties, except IPAddress, can be arbitrary, the main thing is to know the ID of the extended properties.
Figure 2. Filled in extended properties at the restaurant
SET @COUNTFIELD = 1000016; --RESTAURANT'S CHECK COUNT PLAN EXTRA FIELD;;; Plan for a receipt month
SET @AMOUNT FIELD = 1000013; --RESTAURANT'S AMOUNT PLAN EXTRA FIELD;;; Monthly plan revenue
SET @FOODCLASS = 2 * 256;--CHOSEN FOOD CLASSIFICATION (POTATO/ICECREAM);;; id of the food classification. in our example, 512. we write strictly in the form of 256 * X, where X = id of the classification of dishes / 256
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
Important: at the moment, the script is unique for each database, since it is necessary to specify the IDs of categories and extended properties from the RK7 management station in the scripts.
Important: after executing the script. sql script, be sure to execute the stored procedure RK7SQLPROC_REP_CALC. This procedure should be added to the scheduler and run every time after the general shift is closed.
Figure 3. Executing a stored procedure
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
The script is:
procedure ProcessOperation1000489(Parameter: integer);
var
s:string;
begin
s:= TRK7Restaurant(RK7.CashGroup.MainParent).genIPAddress;
GUI.CmdExec('fsWeb2.exe "https://'+s+':8081/custhtml/overall1.html"');
end;
Figure 5. Startup script fsWeb2.exe
Figure 6. Example of how reports work
ATTACHMENT FILES:
custhtml.7z
fsweb2.7z
Adding VAT fields to the food consumption cube Creating a new fact in a cube