Introduction

In general, an r_keeper document for printing consists of 2 components:

A set of cubes determines which sets of variables will be used used in the check layout. You may edit the layout to change the design of the future document.

The Documents and Layouts menu contains preset layouts. Preset check layouts cannot be edited, but their copies can be.
The layout used for printing is called the document view. The set of document views used in the work is called the Printing Scheme. Printing schemes can be created and edited.

Layout editor

Let's consider editing a layout using an example of a regular receipt.
To open the layout editor:

  1. In the manager station, go to Options > Printing > Documents and Layouts.
    In our example, we will edit the receipt layout, but you may edit any other layout.
  2. Go to the Client payment section. Right-click on the Receipt layout and select New (as copy) Printing Layout.
  3. Name the new layout and change the status to Active. Save the changes.
  4. In the Basic section, click on the Layout line, then on three dots image2021-12-24_13-8-34.png
  5. The layout editor will open.
    Let's take a closer look at what the check layout consists of:
    1. A Sheet is a page on which all the receipt elements are located. Elements are shown in different colours only in the editor, the receipt is printed in black and white.
    2. A Band is a section with a specific dataset. Inside the band, you can operate only with data from the dataset.
    3. A Memo is an active element where various data can be added. You can add a simple text or a variable from a dataset. Variables areenclosed in square brackets. A memo is placed inside a band.
      The sizes of bends and memos can be changed by dragging and dropping their borders. Also, you can move the band by holding it down with the left mouse button and dragging it to the desired location.
      We will describe the properties of each element in more detail below.

      There are two tabs on the right side of the layout editor:
      • Assistant — displays available datasets
      • Properties — displays the properties of the selected layout element.
  6. Now you can go directly to editing the layout:
  1. Let's try to display the table name in a separate line of the receipt. To create a band, right-click on a free area and select Create band
  2. When adding a band to a sheet, you can create an object of 5 types. What each of them serves for is clear from their names. The main band type, where data is displayed directly, is virtual.
    Select Virtual Band and click Ok.

    By holding down the left mouse button on the band's edge, you can move its borders.
  3. Now, add two memos.
    Right-click on the bend and select Create memo. Change its size as you wish. Repeat the same steps for the second memo.
     
  4. Now specify what data should be displayed in the memo.
    Switch to the Content editor by double-clicking the left mouse button on the memo window. Then enter the text you want, for example: Table number. Click Ok.

    The written phrase is a constant, it will be printed on every receipt, regardless of the table name.
  5. Add the variable to the second memo. Double-click on the memo window to open the editor. Select the image2021-12-27_10-39-37.png button on the top bar. A window will open with a list of available attributes.
    Go to Orders > Table > Main and click once on the Name field, then the Ok button.

    A variable with the table name will appear in the window. Click Ok again to exit the memo editor.

    We have created a variable, and now the name of the table for which the receipt is being made will be printed in these lines.
  6. Click Ok in the lower right corner to close the layout editor.
  7. Editing the layout is complete. Now you need to apply the layout, i.e. to tell the system what layout to print. Find the instruction in the article on editing and using a layout.

Element Properties

The layout editor is equipped with a built-in script editor, which has a syntax similar to Pascal with some limitations. Scripts can be applied to a memo (the lower part of the memo editor), sheet, band, depending on where the script is placed (it affects the code triggering time): the sheet is executed first, then the band, and then the memo of this band.

Properties Common for All Elements

Sheet (Document)

The report layout consists of one or more sheets. Sheets are processed and printed sequentially, independently of each other, the order of output is from left to right. Each sheet contains its own set of service bands: Report title, Header, Footer, and Report summary.

Sheet Properties

Field name — the name of the field by which the filter will be set. All datasets will be filtered by this field. If there is no field with this name in the dataset, then the dataset is not filtered.

Collection — a reference from which values ​​for the parameter will be selected.

Value — a fixed value for the parameter. The values ​​are selected from the reference specified by the Collection. The parameters with the specified value are not changed when the report is printed.

Name — the name of the resulting table.

Table 1 — the name of the first table.

Table 2 — the name of the second table.

Band

As mentioned above, each band has its own dataset. After creating a band, using a double click, you can bind the required dataset to it, with which you can later work within this band.

Bands are placed on sheets or nested in other bands. Bands are divided into bands with data sources and bands without data sources (service bands). Service bands include the following types:

Report TitleDisplayed once at the very beginning of the report
Report SummaryDisplayed once at the very end of the report
Page HeaderDisplayed at the beginning of every printed page
Page FooterDisplayed at the end of every printed page

The order of bands processing and printing: on each printed page, a Header is displayed at the top of the page, and a Footer at the bottom of the page. Once, on the first page, the Report Title is printed after the Header. On the final page, before the Footer, the Report summary is printed. The rest of the bands are displayed in top-down order, i.e. the topmost band will be printed first, then the second one, etc. If there are several sheets in the layout, then each of them is processed and printed as a separate layout and can contain the Title, Report Total, Headers, and Footers.

All bands, except for service bands, can contain up to 3 sections: Body, Header, and Footer. None of the sections are obligatory, but at least one of the sections must be present. The order of the band printing: first, the content of the Header is printed, then the Body is printed as many times as how much there are lines in the data source, after which the Footer content is printed.

A band can modify the content of its data source by sorting, filtering, and rearranging it. This is done by using the Filter, Group, and Sort properties. The order of properties processing: first, a filter is applied to the data source — a band filter and a filter based on the report parameters — and after that the resulting data source is grouped and then sorted.

Band Properties

Example: let's say we have a Payment data source:

Currency GroupCurrencyOrderGuestsSumNat. Sum
CashRubles1/22300300
CashEuro1/3320700
Credit cardsMaster card1/45100100
CashRubles1/52500500
CashRubles1/22200200

If we group it by the Currency Group field, the result will be as follows:

CashRubles, Euro1/2,1/3,1/5,1/2910201700
Credit cardsMaster card1/45100100

If we group by the Currency Group, Currency fields, the result will be as follows:

CashRubles1/2,1/5,1/2610001000
CashEuro1/3320700
Credit cardsMaster card1/45100100

As you can see from the example, the totals were calculated for the numeric fields, the row fields were joined. In this example, we have calculated national amounts by currency groups and by currencies. Note that the total for the Number of guests was calculated incorrectly because the source data contains several records for one order. For the rest of the fields, the total is meaningless.

You can also calculate the total using aggregate (sum) fields. There are three types of aggregate fields:

  1. SUM(Field) — Analogue of SUM(Field) in SQL. Allows calculating the total for the Field field. The total is calculated from the original dataset, which was before the grouping but using all filters. In our example, the [SUM (Nat sum)] aggregate will be calculated as 1700, the [SUM (Sum)] aggregate will be calculated as 1020.
  2. COUNT(Field) — Analogue of COUNT(DISTINCT Field) in SQL. Allows counting the number of unique values ​​for the6 field. For example, [COUNT(Currency)] will return 3 because there are three currencies in the Payment data source.
  3. SUM(Field1, Field2) — has no analogue in SQL. Combines grouping and counting totals. It works in the following way: the source dataset is grouped by the fields Field1, Field2, after which the total is calculated by Field2. For example, you need to calculate the number of guests for all orders, then [SUM (Order, Guests)] will return the correctly calculated total = 12, while a simple summation of the Guests column will give 14.

The same aggregates can be calculated with a given condition:

  1. SUMIF(Field; Condition) — Analogue of SUMIF in Excel. Allows calculating the total for the Field field for those lines where the Condition condition is met. A condition is an expression of the FieldName = Value form. Instead of the = (equal) operator, you can use any comparison operator: >, <, <=,> =, <>. In our example, the [SUMIF(Nat.Sum; Currency Group = Cash)] aggregate is calculated as 1600, the [SUMIF(Sum; Currency Group = Cash)] aggregate is calculated as 920.
  2. COUNTIF(Field; Condition) — the same as COUNT(Field1), but only for those dataset lines for which the Condition, which looks like FieldName = Value, is met. For example, [COUNTIF(Currency; Currency Group = Cash)] will return 2 because the Payment data source uses two cash currencies.
  3. SUMIF(Field1, Field2; Condition) — the same as SUM(Field1, Field2), but only for those dataset lines for which the Condition having the form FieldName = Value is met. For example, you need to calculate the number of guests for all orders with cash payment, then [SUMIF(Order, Guests; Currency Group = Cash)] will return 7.

Expression — an expression itself. At the moment, attributes can be used as expressions, for example, Employee.Code or MenuElement.Weight.

Field Name — the system name of the added field. Set in English, needed for using this field in scripts.

Title — a custom name of the added field.

Memo

In the memo, separate fields of the data source or any text can be displayed. Data source field names (variables) are enclosed in square brackets.
After the dataset is tied to the band, a memo can be placed inside this band. Variables from the dataset are inserted inside these memo, so the required dataset will be printed in the report.

It is important to understand that variables from a dataset can only be used within its own band.

Memo Properties

Filter Setting Example

Let's assume that you need to set up filtering of the Dish in the bill by category. It should look something like this:

[Classification]

                                  [Category1]
                                             
                                                             Dish1
                                                             Dish2
                                                             Dish3

       Total for category: [priceamount]

                                   [Категория2]

                                                            Dish4
                                                            Dish5
                                                            Dish6

        Total for category: [priceamount]

Total for classification

Solution:

  1. Add a calculated field with the required classification to the dish band (f.ex., the Category field)
  2. Set Category = Category for the band
  3. Group the band by the Category field
  4. Add another band of dishes to the band
  5. Add the same calculated field to the nested band and set the same grouping
  6. The field for displaying the dish name must be added to the nested band, the field for the category name — to the external one.