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.
Let's consider editing a layout using an example of a regular receipt.
To open the layout editor:
|
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.
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.
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.
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 Title | Displayed once at the very beginning of the report |
Report Summary | Displayed once at the very end of the report |
Page Header | Displayed at the beginning of every printed page |
Page Footer | Displayed 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.
Example: let's say we have a Payment data source:
Currency Group | Currency | Order | Guests | Sum | Nat. Sum |
Cash | Rubles | 1/2 | 2 | 300 | 300 |
Cash | Euro | 1/3 | 3 | 20 | 700 |
Credit cards | Master card | 1/4 | 5 | 100 | 100 |
Cash | Rubles | 1/5 | 2 | 500 | 500 |
Cash | Rubles | 1/2 | 2 | 200 | 200 |
If we group it by the Currency Group field, the result will be as follows:
Cash | Rubles, Euro | 1/2,1/3,1/5,1/2 | 9 | 1020 | 1700 |
Credit cards | Master card | 1/4 | 5 | 100 | 100 |
If we group by the Currency Group, Currency fields, the result will be as follows:
Cash | Rubles | 1/2,1/5,1/2 | 6 | 1000 | 1000 |
Cash | Euro | 1/3 | 3 | 20 | 700 |
Credit cards | Master card | 1/4 | 5 | 100 | 100 |
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:
The same aggregates can be calculated with a given condition:
Category
Any field of the data source can act as a category. The category is processed as follows: first, unique values are determined for the specified field, then a band is printed for each received value. Each time a band is printed, a filter of the type Category = Value is applied to the data source. For example, if you specify Currency Group as the category, then the Payment data source will be printed as follows:
Currency | Order | Guests | Sum | Nat. Sum |
Credit cards | ||||
Master card | 1/4 | 5 | 100 | 100 |
Cash | ||||
Rubles | 1/2 | 2 | 300 | 300 |
Euro | 1/3 | 3 | 20 | 700 |
Rubles | 1/5 | 2 | 500 | 500 |
Rubles | 1/2 | 2 | 200 | 200 |
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.
Header
A band header. Is printed first. It is characterized by the following properties:
Colored | Печать содержимого колонтитула с выделением цветом. Работает, если принтер поддерживает инверсионную печать |
Double Height | Двойная высота печати содержимого колонтитула |
Double Width | Двойная ширина печати содержимого колонтитула |
Show Empty Lines | Флаг определяет, печатать или нет пустые строки |
Size | Высота колонтитула в строчках. Если 0, секция не печатается |
Prints the contents of the header and footer with color highlighting. Works if the printer supports inversion printing!
Double Height
Double height
Double print height of header and footer content
Double Width
Double Width
Double the print width of the header and footer content
Hide Blank Lines
Show Empty Lines
The flag determines whether to print blank lines or not
The size
Size
Header / footer height in lines. If 0, no section is printed
Body
Bend body. Displayed after printing the Header. The content of the band body is printed as many times as there are records in the datasheet
those. Band body properties are the same as header properties.
Footer
Band footer. Displayed after the Header and Body of the band. The properties of the footer are the same as those of the header.
Behavior - Show Empty
A flag indicating whether to display a band if there are no records in the data source associated with the band. By default, such bands are not displayed, even if they have a Header or Footer set.
Before Start
A script that is executed before starting band processing.
After Finish
A script that is executed after the end of band processing.
Script
A script that is executed for each line of the data source, just before printing it
XML Section
Used to export a printed document to XML. When exporting, the lines generated by this band will go to the section with the specified name. By default, the section name is the same as the data source name.
With the help of a memo, individual fields of the data source or any text are 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. Variables from the dataset are inserted inside these memo, so the required dataset will be printed in the report.
image2021-5-8_10-56-19.png
It is important to understand that variables from a dataset can only be used within your own band.
Alignment
Specifies whether the text is aligned left, centered, or right.
Content
Contains text to be printed. To print fields from a data source, the field names must be enclosed in square brackets: [FieldName]. To print a field from another data source that is not related to the band in which the memo is attached, you need to use the [DataSourceName.FieldName] construction. To print escape sequences, you need to use the <EscapeCommand> construct. The list of escape commands will be given below. The number of fields that can be displayed using one memo is not limited.
Format
Specifies the format of the variable (number, date, time, other).
Hide zeros
Alternative language
Word wrap
Enable auto-wrap.
XML Attributes
XML class
XML tag
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: [price sum]
[Category2]
Dish4
Dish5
Dish6
Total for category: [price sum]
Total by classification
Solution:
Add a calculated field with the required classification to the dish bend (say, the Category field)
Set at the band Category = Category
Group a band by the Category field
Add another bend of dishes to the bend
Add the same calculated field to the nested band and set the same grouping
The field for displaying the dish name must be added to the nested band, for the category name to the external one.