RUKKENZH
Задать вопрос AI
SectionsОбъекты конфигурации 1С
Report "Calculation Statement of Organizations (T-1)" — Technical Description
Язык статьи:🇷🇺 RU🇰🇿 KK🇬🇧 EN🇨🇳 ZH
Версия статьи:📘 Для бухгалтера⚙️ Для тех-специалиста

Report "Calculation Statement of Organizations (T-1)" — Technical Description

Applies to: 1С:Бухгалтерия для Казахстана, release 3.0.74.2 · by 1C-Sapa Group, 1C partner
СТ
Сапа Т.И. — Эксперт по 1С и бухгалтерскому учёту, преподаватель-практик

1. Identification

Parameter Value
Object Type Report
Name CalculationSheetOrganizationsT1
Full Name Report.CalculationSheetOrganizationsT1
Alias — (not specified in metadata; displayed in the interface as “Calculation Sheet (Form T-1)”)
Configuration Accounting for Kazakhstan, edition 3.0, version 3.0.74.2
Basis of Mechanism Data Composition System (DCS)

Purpose. The report generates a unified calculation sheet in the form of T-1 in accordance with the requirements of the legislation of the Republic of Kazakhstan. It is used by accountants and HR specialists to prepare a printed form of the payroll calculation sheet. It is typically generated monthly at the close of the payroll calculation period. The result is a tabular document ready for printing (A4, scale 81%, margins 10 mm), with signature areas for management.

Where to find. Navigation link in 1C:

e1cib/list/Report.CalculationSheetOrganizationsT1

It can also be opened from the accounting reports section / personnel calculation menu.


2. Attributes and Data Structure

The report is built on DCS, so its “attributes” are composition parameters (passed to the scheme), rather than attributes of the object in the classical sense. There are no tabular parts in the object.

2.1 Parameters (header attributes)

Name Type Mandatory Purpose
StartPeriod xs:dateTime (Date) DontCheck Start date of the period for generating the sheet
EndPeriod xs:dateTime (Date) DontCheck End date of the period; together with StartPeriod defines the selection range
OrganizationListRepresentation xs:string (String) DontCheck Text representation of selected organizations for the header and interface
DepartmentListRepresentation xs:string (String) DontCheck Text representation of selected departments for filtering
DetailingMode xs:boolean (Boolean) DontCheck Flag for detailing mode during interactive detailing

The mandatory status DontCheck means that platform validation for filling is not performed — control of the period and organization list is implemented programmatically/through DCS settings.

2.2 Tabular Parts

None. The tabular result is entirely generated by the data composition scheme (data sets, resources, groupings), not by stored tabular parts of the object.


3. Forms

Form Role Composition
ReportForm Main and only user working form • Parameter panel (period, organizations, departments)
• DCS settings area (filters, sorting, formatting)
• Tabular document field for outputting results
• Command panel: generate, print, send

No separate settings/variant forms are highlighted — filtering and formatting management is conducted through the standard DCS settings panel within ReportForm.


4. Key Module Procedures

Explicit BSL-evidence for the object modules is not attached, so below is a typical set of handlers for the report in DCS in BK 3.0. Specific names/lines should be verified with the ReportForm module in the configurator.

Object Module / Report Manager Module

  • OnResultComposition(TabulDocument, DetailingData, StandardProcessing) — overriding output: substituting representations of organizations/departments in the header, setting print parameters (A4, scale 81%, margins 10 mm), generating signature areas.
  • ReportSettings() / defining available options and settings — registering default settings.

Module of the form ReportForm

  • OnCreateOnServer(Error, StandardProcessing) — setting the default period (current month), initializing parameters StartPeriod/EndPeriod, values of organizations/departments.
  • OnPeriodChange / handler for the period field — synchronizing StartPeriod and EndPeriod, recalculating OrganizationListRepresentation.
  • Generate(Command) — starting composition and outputting to the tabular document.
  • Detailing handler (ResultDetailingProcessing) — reacting to the flag DetailingMode, opening detailing by employee/calculation.

“Requires verification”: exact signatures and presence of OnResultComposition are version-specific for 3.0.74.2 — when refining, check the object module.


5. Movements and Entries

The report does not generate movements and entries. The object of type “Report” serves as a means of reading and presenting data: it is not posted, does not create records in registers, and does not generate accounting entries.

The data for the T-1 sheet is read from movements already formed by payroll documents — registers of calculation/accumulation for labor payment and taxes from the labor payment fund (accruals, deductions, contributions, taxes). The report only aggregates and outputs them.

For reference, the amounts that the sheet reflects for each employee are calculated by accrual documents according to the RK standards for 2026:

Indicator Value (2026, RK)
MRP 4,325 ₸
Minimum Wage 85,000 ₸
Basic Tax Deduction for PIT 30 MRP/month, not more than 360 MRP/year
PIT 10% up to 8,500 MRP annual income, 15% above
OPV 10% (base ceiling 50 Minimum Wages)
OPVR 3.5%
VOSMS 2%
OSMS 3%
SO 5%
Social Tax 6%
VAT Rate (general for the configuration) 16%

Payroll mutual settlements in accounting are conducted by related documents (not this report) — on accounts for settlements with personnel; cash payments are reflected using account 1030 (cash in current accounts). Typical RK accounts from the configuration: 1210, 1030, 1330, 3310, 3130, 6010, 7010.


  • Data Source — documents for payroll accrual and payment, registers for labor payment, taxes, and contributions (PIT, OPV, OPVR, VOSMS, OSMS, SO, social tax).
  • DirectoriesOrganizations, DepartmentsOfOrganizations, Individuals/Employees (used in parameters and groupings).
  • Input Based On — not applicable: reports do not participate in the input based on mechanism and do not serve as a basis for other objects.
  • Related Reports — other calculation/payment sheets and summaries for payroll in the personnel calculation section.

7. Extension Points

  • Configuration Extension — adding attributes to the form ReportForm, new commands (e.g., export to file), intercepting OnCreateOnServer/Generate through &Instead/&After.
  • Report Variants (DCS) — creating user variants with different groupings, filters, and formatting without changing the object.
  • OnResultComposition — programmatic adjustment of the tabular document: custom signature areas, changing print parameters, localizing the header.
  • DCS Settings — filters by organization/department/employee, conditional formatting, additional resources.
  • Roles and Rights — managing access to the report through roles; to restrict by organizations, use RLS of related source registers.

When refining, do not hardcode norms and rates: they are stored in information registers for taxes/contributions and accounting parameters of the RK, relevant on the calculation date.

Частые вопросы

Does this report generate accounting entries or movements in registers?
No. This is an object of type "Report" in the SCDA — it does not generate entries and does not create movements. The entries and records in the payroll registers are generated by the documents for accrual and payment; the report only reads and displays this data in the form T-1.
Where to open the report in 1C?
By the navigation link e1cib/list/Report.CalculationStatementOrganizationsT1, as well as from the section of accounting reports or the menu for payroll calculations.
Why do the parameters have the mandatory status DontCheck?
Platform validation of filling is disabled: control of the period and list of organizations is implemented programmatically and through SCDA settings, not by the standard mechanism for checking attributes.
Does the report have tabular parts?
No. The entire tabular result is generated by the data composition scheme (sets, resources, groupings); the object does not have stored tabular parts.
What norms of the RK apply to the amounts in the statement in 2026?
MPR 4,325 ₸, MZP 85,000 ₸, basic deduction for individual income tax 30 MPR/month (not more than 360 MPR/year), individual income tax 10%/15%, OPE 10% (ceiling 50 MZP), OPEA 3.5%, VOSMS 2%, OSMS 3%, SO 5%, social tax 6%. The values are stored in registers and accounting parameters, not in the report itself.

Read also

Источники

Была ли статья полезна?
💼 Нужна помощь с 1С или учётом? Слава КВЦ — многолетняя практика в 1С в Казахстане. Изучите разложенный НК РК 2026 или спросите в чате BuhGPT — ответит за секунды.